/* COMMON SEARCH HEADER FOR LANDING & SEARCH RESULT */
.hero-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(233, 30, 140, 0.15) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}
.hero-bar h1, .hero-bar h2 { 
    color: #ffffff !important; 
    font-size: 36px; 
    font-weight: 800; 
    margin-bottom: 24px; 
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero-bar h1 span, .hero-bar h2 span { 
    color: #f43f5e !important; 
    text-shadow: 0 2px 12px rgba(244, 63, 94, 0.4);
}
.hero-bar p {
    color: #94a3b8;
    font-size: 16px;
    margin-top: -16px;
    margin-bottom: 30px;
}

/* PORTAL SEARCH BOX */
.portal-search-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}
.portal-search-input {
    width: 100%;
    padding: 16px 24px;
    padding-right: 60px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.portal-search-input:focus {
    outline: none;
    border-color: #e91e8c;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(233, 30, 140, 0.25);
}
.portal-search-input::placeholder {
    color: #94a3b8;
}
.portal-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e91e8c;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portal-search-btn:hover {
    background: #c41578;
}

/* HOT MEETINGS IN YOUR CITY */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
}
.section-title h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.section-title p {
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
}

.hot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.hot-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.hot-img {
    height: 180px;
    position: relative;
}
.hot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 15px 12px;
}
.hot-img-overlay h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hot-img-overlay h4 i {
    color: #e91e8c;
}

.hot-links {
    padding: 16px;
}
.hot-links a {
    display: block;
    color: #475569;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s, padding-left 0.2s;
}
.hot-links a:last-child {
    border-bottom: none;
}
.hot-links a:hover {
    color: #e91e8c;
    padding-left: 4px;
}

/* INTRO TEXT */
.intro-text-box {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* DETAILED SELECTOR PILLS */
.category-pills-box {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.category-pills-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 20px;
}
.category-pills-header i {
    color: #e91e8c;
}
.pills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.pill-link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #e91e8c;
    border-radius: 20px;
    color: #e91e8c;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.pill-link:hover {
    background: #e91e8c;
    color: #fff;
}

/* SEARCH LISTINGS RESULTS STYLES */
.listings-layout { display: grid; grid-template-columns: 1fr 280px; gap: 24px; margin-top: 0; margin-bottom: 50px; }
.city-tabs { background: #fff; border-bottom: 1px solid #e5e7eb; overflow-x: auto; white-space: nowrap; margin-bottom: 24px; }
.city-tabs-inner { display: inline-flex; gap: 0; }
.city-tab {
    display: inline-block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.city-tab:hover, .city-tab.active { color: #e91e8c; border-bottom-color: #e91e8c; }

/* FILTERS FORM IN LISTING HEADER */
.results-search-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}
.results-search-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.results-search-form select, .results-search-form input {
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    flex: 1;
    min-width: 150px;
}
.results-search-form select:focus, .results-search-form input:focus {
    outline: none;
    border-color: #e91e8c;
}
.btn-results-search {
    background: #e91e8c;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.btn-results-search:hover {
    background: #c41578;
}

/* PROFILE CARDS ROW STYLE */
.profile-row {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}
.profile-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.08);
    border-color: #fbcfe8;
}
.profile-row-img {
    width: 140px;
    min-height: 150px;
    flex-shrink: 0;
    position: relative;
}
.profile-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-row-img .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fce4f3, #fbcfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #e91e8c;
}
.badges {
    position: absolute;
    top: 8px; left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.badge-verified {
    background: #10b981;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}
.badge-now {
    background: #e91e8c;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}
.badge-featured-tag {
    background: #f59e0b;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.profile-row-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.profile-row-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.profile-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}
.profile-meta {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-weight: 500;
}
.profile-meta .dot { color: #cbd5e1; }
.profile-meta i { color: #e91e8c; }
.profile-desc {
    font-size: 13px;
    color: #475569;
    margin: 8px 0;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.profile-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.service-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}
.profile-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}
.profile-price {
    font-size: 15px;
    font-weight: 700;
    color: #e91e8c;
}
.profile-price span {
    font-weight: 500;
    color: #94a3b8;
    font-size: 11px;
}
.view-btn {
    background: #e91e8c;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.view-btn:hover {
    background: #c41578;
}
.contact-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s;
    border: none;
}
.contact-action-btn:hover {
    transform: scale(1.1);
}
.phone-action-btn {
    background: #e91e8c;
}
.phone-action-btn:hover {
    background: #c41578;
}
.wa-action-btn {
    background: #25d366;
}
.wa-action-btn:hover {
    background: #16a34a;
}
.tg-action-btn {
    background: #0088cc;
}
.tg-action-btn:hover {
    background: #0077b3;
}

/* SIDEBAR WIDGETS */
.sidebar-widget {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.sidebar-widget h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
    border-bottom: 2px solid #e91e8c;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
}
.sidebar-widget ul li a:hover { color: #e91e8c; }
.count-badge {
    background: #fce4f3;
    color: #e91e8c;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}

/* PROMO WIDGET */
.promo-widget {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    color: #fff;
    text-align: center;
}
.promo-widget h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.promo-widget p { font-size: 12px; color: #94a3b8; margin-bottom: 14px; }
.promo-widget a {
    background: #e91e8c;
    color: #fff;
    display: block;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

/* EMPTY STATE */
.empty-state { text-align: center; padding: 60px 20px; color: #64748b; }
.empty-state i { font-size: 48px; color: #cbd5e1; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #0f172a; }

/* PAGINATION */
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pager a, .pager span { padding: 7px 13px; border-radius: 7px; font-size: 13px; border: 1px solid #cbd5e1; text-decoration: none; color: #475569; background: #fff; }
.pager .active { background: #e91e8c; color: #fff; border-color: #e91e8c; }

@media (max-width: 992px) {
    .hot-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .listings-layout { grid-template-columns: 1fr; }
    .hot-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-row-img { width: 110px; }
    .hero-bar h2 { font-size: 28px; }
}
@media (max-width: 576px) {
    .hot-grid { grid-template-columns: 1fr; }
}

/* TOP PROFILES PRODUCT CARDS GRID (4 COLUMNS PER ROW) */
.top-profiles-section {
    margin: 40px 0 60px;
}
.top-profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.top-profile-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}
.top-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(233, 30, 140, 0.12);
    border-color: #fbcfe8;
}

.top-profile-thumb {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #1e293b;
}
.top-profile-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.top-profile-card:hover .top-profile-thumb img {
    transform: scale(1.05);
}
.top-profile-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 40px;
    background: #f1f5f9;
}

.top-profile-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.badge-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.badge-verified { background: rgba(16, 185, 129, 0.9); }
.badge-now { background: rgba(239, 68, 68, 0.9); }

.top-profile-views {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-profile-views i { color: #f43f5e; }

.top-profile-content {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.top-profile-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.top-profile-title:hover {
    color: #e91e8c;
}

.top-profile-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-profile-meta i { color: #e91e8c; }
.top-profile-meta .dot { color: #cbd5e1; }

.top-profile-price {
    font-size: 16px;
    font-weight: 800;
    color: #e91e8c;
    margin-bottom: 16px;
    margin-top: auto;
}

.top-profile-actions {
    display: flex;
    gap: 8px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}
.btn-top-action {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}
.btn-call {
    background: #e91e8c;
    color: #fff;
}
.btn-call:hover {
    background: #c41578;
    color: #fff;
}
.btn-wa {
    background: #25d366;
    color: #fff;
}
.btn-wa:hover {
    background: #1fba59;
    color: #fff;
}
.btn-tg {
    background: #0088cc;
    color: #fff;
}
.btn-tg:hover {
    background: #0077b3;
    color: #fff;
}

.btn-view-all-profiles {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #e91e8c 0%, #be185d 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.3);
    transition: all 0.3s ease;
}
.btn-view-all-profiles:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(233, 30, 140, 0.4);
    color: #ffffff;
}

@media (max-width: 1200px) {
    .top-profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .top-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .top-profiles-grid {
        grid-template-columns: 1fr;
    }
}
