:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    --navy: #0f172a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(236, 72, 153, 0.3);
}

.suggestions {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10050 !important;
    margin-top: 4px;
    display: none;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ec4899 #f1f1f1;
    height: 200px;
}

/* Custom Scrollbar for Webkit browsers */
.suggestions::-webkit-scrollbar {
    width: 8px;
}

.suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-radius: 10px;
}

.suggestions::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #db2777, #7e22ce);
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:hover {
    background-color: rgba(236, 72, 153, 0.08);
    color: #ec4899;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item b {
    color: #ec4899;
    font-weight: 600;
}

.suggestion-item i {
    color: #ec4899;
    font-size: 16px;
    flex-shrink: 0;
}

.search-container {
    position: relative;
    z-index: 10050;
}

/* Hero section specific dropdown z-index */
.hero-section-search-overlay .suggestions {
    z-index: 10060 !important;
    position: absolute;
    border-radius: 12px;
    margin-top: 8px;
}

/* Suggestions positioning for new search section */
.new-search-section .suggestions {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: calc(100% + 8px);
    z-index: 10051;
}

/* ===== DARK HEADER STYLES ===== */
.header-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1rem 0;
}
.header-dark-inner {
    background: rgba(20, 16, 36, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 0.55rem 0.6rem 0.55rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-dark .header-logo-text {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.header-dark .header-logo-text span {
    font-weight: 300;
}
.header-dark .header-logo-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}
.header-dark .header-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.header-dark .btn-header-login {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.header-dark .btn-header-login:hover {
    color: #fff;
}
.header-dark .btn-header-post {
    background: #ec4899;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}
.header-dark .btn-header-post:hover {
    background: #db2777;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}
.header-dark #mobileMenuBtn {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 50px !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    display: none !important;
}
@media (max-width: 1023px) {
    .header-dark .showButton {
        display: none !important;
    }
    .header-dark #mobileMenuBtn {
        display: flex !important;
    }
}
@media (min-width: 1024px) {
    .header-dark .showButton {
        display: flex !important;
    }
    .header-dark #mobileMenuBtn {
        display: none !important;
    }
}

/* Mobile Menu Dropdown */
.header-mobile-menu {
    background: rgba(20, 16, 36, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.header-mobile-item {
    color: rgba(255,255,255,0.85);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s;
}
.header-mobile-item:hover {
    background: rgba(255,255,255,0.08);
}
.header-mobile-item-pink {
    background: #ec4899;
    color: #fff;
    font-weight: 600;
}
.header-mobile-item-pink:hover {
    background: #db2777;
}

/* ===== HERO SECTION - SPLIT LAYOUT ===== */
.hero-section-dark {
    position: relative;
    /* Base background from your design */
    background: linear-gradient(
        145deg,
        #0A0608 6.17%,
        #12081A 32.47%,
        #1A0A1E 54.38%,
        #0A0608 93.83%
    );
    overflow: visible;
    /* Full viewport: Popular Cities stays below the fold until scroll */
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    /* Space for absolutely positioned header so centered content clears the nav */
    padding-top: clamp(4.5rem, 12vmin, 6.5rem);
    box-sizing: border-box;
    padding-bottom: clamp(1.5rem, 4vmin, 2.5rem);
}
.hero-section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Glow blobs based on your three motion.div gradients */
    background:
        radial-gradient(70.71% 70.71% at 80% 60%, rgba(139, 92, 246, 0.10) 0%, rgba(0, 0, 0, 0) 70%),
        radial-gradient(70.71% 70.71% at 0% 70%, rgba(255, 45, 107, 0.06) 0%, rgba(0, 0, 0, 0) 70%),
        radial-gradient(70.71% 70.71% at 50% 0%, rgba(230, 25, 75, 0.14) 0%, rgba(168, 85, 247, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* Fills leftover height under the stats row so the section still hits min-height: 100vh
   without pushing the stats bar away from the main hero content */
.hero-section-dark::after {
    content: '';
    flex: 1 1 auto;
    min-height: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    padding: 1.25rem 0 1.5rem;
}

/* Active Listings Badge */
.hero-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
}
.hero-active-badge .badge-dot {
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.hero-active-badge span {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Main Headline */
.hero-section-main-headline {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-section-main-headline .text-gradient-pink {
    background: linear-gradient(135deg, #E6194B 0%, #FF2D6B 40%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-section-subheadline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

/* Search Bar */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 15px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    max-width: 520px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}
.hero-search-bar .search-icon {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.hero-search-bar .hero-section-search-input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    flex: 1;
    width: 100%;
}
.hero-search-bar .hero-section-search-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.hero-search-bar .hero-section-search-btn {
    background: #ec4899;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.hero-search-bar .hero-section-search-btn:hover {
    background: #db2777;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

/* Trending Cities */
.hero-trending {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 520px;
}
.hero-trending .trending-icon {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.hero-trending .trending-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-weight: 500;
}
.hero-trending .hero-section-city-btn {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.35rem 1rem;
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}
.hero-trending .hero-section-city-btn:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

/* Right Side Image Cards */
.hero-cards-area {
    position: relative;
    min-height: 480px;
}

.hero-image-card {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-1 {
    width: 260px;
    height: 326px;
    position: absolute;
    left: 0;
    top: 68px;
    z-index: 2;
}
.hero-card-1 .card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.hero-card-1 .card-overlay h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.hero-card-1 .card-overlay p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin: 0;
}

.hero-card-2 {
    width: 300px;
    height: 388px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}
.hero-card-2 .featured-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 5;
}
.hero-card-2 .featured-badge i {
    color: #fbbf24;
    font-size: 0.7rem;
}
.hero-card-2 .featured-badge span {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-card-2 .card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.hero-card-2 .card-overlay h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.hero-card-2 .card-overlay p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin: 0;
}

/* Floating Badge Cards */
.hero-float-badge {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.75rem;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}
.hero-float-badge i {
    font-size: 0.85rem;
}
.hero-float-badge span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}
.hero-verified-badge {
    top: 0;
    left: 30%;
    transform: translateX(-50%);
}
.hero-verified-badge i {
    color: #02bd4d;
}

.hero-stats-card {
    position: absolute;
    bottom: 15px;
    right: 16px;
    background: rgb(172 171 175 / 8%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    z-index: 5;
    min-width: 170px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 40%);
}
.hero-stats-card .stats-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}
.hero-stats-card .stats-icon {
    width: 36px; height: 36px;
    background: rgba(236, 72, 153, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-stats-card .stats-icon i {
    color: #ec4899;
    font-size: 1rem;
}
.hero-stats-card .stats-number {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}
.hero-stats-card .stats-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}
.hero-stats-card .stats-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}
.hero-stats-card .stats-bars .bar {
    width: 6px;
    border-radius: 2px;
    background: rgba(236, 72, 153, 0.3);
}
.hero-stats-card .stats-bars .bar.active {
    background: #ec4899;
}

/* Bottom Stats Strip */
.hero-bottom-stats {
    background: rgba(6, 4, 15, 0.55);
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
    padding: 1.25rem 0;
    flex-shrink: 0;
    margin-top: 0;
    transform: translateY(0);
}
.hero-bottom-stats .container-xxl {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.hero-bottom-stats .stats-list {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 18px;
}
.hero-bottom-stats .stat-item {
    padding: 0.7rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.hero-bottom-stats .stat-item.stat-bordered {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.65rem;
}
.hero-bottom-stats .stat-item .stat-val {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-bottom-stats .stat-item .stat-lbl {
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    line-height: 1.2;
}
.hero-bottom-stats .explore-link {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.hero-bottom-stats .explore-link:hover {
    color: #ec4899;
}

/* ===== FEATURED CITIES SECTION ===== */
.featured-cities-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #faf5f8 0%, #fff 100%);
}
.featured-cities-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(236, 72, 153, 0.08);
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.featured-cities-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.featured-cities-section .section-intro {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 2.5rem;
}
.featured-city-card {
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.12);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.featured-city-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.12);
}
.featured-city-card .city-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.featured-city-card .city-name i {
    color: var(--pink);
    font-size: 1.1rem;
}
.featured-city-card .city-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}
.featured-city-card .city-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.featured-city-card .city-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
}

/* ===== PLATFORM POSITIONING SECTION ===== */
.platform-positioning-section {
    padding: 2rem 0;
    background: linear-gradient(330deg, #fff 0%, #fdf2f8 35%, #fce7f3 70%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}
.platform-positioning-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.platform-positioning-section .section-inner {
    position: relative;
    z-index: 1;
}
.platform-positioning-section .positioning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.platform-positioning-section .positioning-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}
.platform-positioning-section .positioning-lead {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.platform-positioning-section .positioning-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.platform-positioning-section .we-focus-title {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.platform-positioning-section .focus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.platform-positioning-section .focus-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
}
.platform-positioning-section .focus-list li:last-child {
    border-bottom: none;
}
.platform-positioning-section .focus-list li i {
    color: var(--pink);
    font-size: 1.1rem;
    flex-shrink: 0;
    /* margin-top: 0.15rem; */
}
.platform-positioning-section .positioning-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 0.75rem;
}
.platform-positioning-section .positioning-row {
    align-items: stretch;
}
.platform-positioning-section .positioning-image-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.15);
    min-height: 480px;
    height: 100%;
}
.platform-positioning-section .positioning-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    object-fit: cover;
}
@media (max-width: 991px) {
    .platform-positioning-section .positioning-image-wrap {
        max-width: 400px;
        margin: 2rem auto 0;
        min-height: 360px;
    }
    .platform-positioning-section .positioning-image-wrap img {
        min-height: 360px;
    }
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #fef7fb 0%, #fce7f3 40%, #f5e6ff 80%, #fef7fb 100%);
    position: relative;
    overflow: hidden;
}
.categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, rgba(236, 72, 153, 0.06) 12%, transparent 12.5%),
        linear-gradient(150deg, rgba(147, 51, 234, 0.05) 12%, transparent 12.5%);
    background-size: 60px 60px;
    pointer-events: none;
}
.categories-section .section-inner {
    position: relative;
    z-index: 1;
}
.categories-section .cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.categories-section .cat-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.categories-section .cat-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 2.5rem;
}
.categories-section .cat-card {
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.categories-section .cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--pink), var(--purple));
}
.categories-section .cat-card:hover {
    background: #fff;
    border-color: rgba(236, 72, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}
.categories-section .cat-card .cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.categories-section .cat-card.cat-pink .cat-icon { background: rgba(236, 72, 153, 0.2); color: #ec4899; }
.categories-section .cat-card.cat-purple .cat-icon { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.categories-section .cat-card.cat-green .cat-icon { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.categories-section .cat-card.cat-blue .cat-icon { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.categories-section .cat-card .cat-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.categories-section .cat-card .cat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}
.categories-section .cat-card .cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.categories-section .cat-card .cat-btn:hover {
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}
.categories-section .cat-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 2rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #fdf8fb 0%, #fce7f3 50%, #fdf8fb 100%);
    position: relative;
}
.how-it-works-section .hiw-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pink);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
.how-it-works-section .hiw-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}
.how-it-works-section .hiw-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}
.how-it-works-section .hiw-step {
    flex: 1;
    min-width: 240px;
    max-width: 340px;
    position: relative;
    padding-left: 4.5rem;
}
.how-it-works-section .hiw-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works-section .hiw-connector {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works-section .hiw-connector i {
    color: rgba(236, 72, 153, 0.4);
    font-size: 1.5rem;
}
.how-it-works-section .hiw-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.how-it-works-section .hiw-step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.how-it-works-section .hiw-tagline {
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(147, 51, 234, 0.06));
    border-radius: 50px;
    display: inline-flex;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.how-it-works-section .hiw-tagline .hiw-word {
    color: var(--pink);
}
@media (max-width: 991px) {
    .how-it-works-section .hiw-connector {
        display: none;
    }
    .how-it-works-section .hiw-steps {
        flex-direction: column;
        align-items: stretch;
    }
    .how-it-works-section .hiw-step {
        max-width: 100%;
    }
}

/* ===== SAFETY SECTION ===== */
.safety-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 30%, #f5e6ff 70%, #fdf2f8 100%);
    position: relative;
}
.safety-section .section-inner {
    position: relative;
    z-index: 1;
}
.safety-section .safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--pink);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.safety-section .safety-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.safety-section .safety-lead {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.safety-section .safety-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.safety-section .safety-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-left: 4px solid var(--pink);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 2px 12px rgba(236, 72, 153, 0.08);
}
.safety-section .safety-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.15);
}
.safety-section .safety-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}
@media (max-width: 991px) {
    .safety-section .safety-image-wrap {
        margin-bottom: 2rem;
    }
    .safety-section .safety-image-wrap img {
        min-height: 280px;
    }
}

/* ===== BLOG PREVIEW SECTION (From Our Guides) ===== */
.blog-preview-section {
    padding: 2rem 0;
    background: linear-gradient(85deg, #fdf2f8 0%, #fce7f3 35%, #f5e6ff 70%, #fdf2f8 100%);
    position: relative;
}
.blog-preview-section .section-inner {
    position: relative;
    z-index: 1;
}
.blog-preview-section .guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(147, 51, 234, 0.12);
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.blog-preview-section .guide-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.blog-preview-section .guide-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 2.5rem;
}
.blog-preview-section .guide-card {
    background: #fff;
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.blog-preview-section .guide-card:hover {
    border-color: rgba(147, 51, 234, 0.35);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.12);
}
.blog-preview-section .guide-card .guide-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(147, 51, 234, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--purple);
}
.blog-preview-section .guide-card .guide-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.blog-preview-section .guide-card .guide-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 2rem 0;
    background: linear-gradient(145deg, #831843 0%, #701a75 25%, #581c87 60%, #4c1d95 100%);
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
    pointer-events: none;
}
.final-cta-section .cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.final-cta-section .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.final-cta-section .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.final-cta-section .cta-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}
.final-cta-section .cta-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.final-cta-section .cta-city-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}
.final-cta-section .cta-city-btn:hover {
    background: #fff;
    color: var(--pink);
    border-color: #fff;
    transform: translateY(-2px);
}
.final-cta-section .cta-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--pink);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid #fff;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
}
.final-cta-section .cta-view-all-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Ensure hero section doesn't clip dropdown */
.hero-section-dark {
    overflow: visible !important;
}

/* Ensure parent containers don't clip and have proper stacking */
.hero-content-wrapper .container-xxl {
    position: relative;
    z-index: 1;
    overflow: visible !important;
    width: 100%;
}
.hero-content-wrapper .row {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}
.hero-search-bar {
    position: relative;
    z-index: 10000;
    overflow: visible !important;
}
.hero-search-bar form {
    position: relative;
    z-index: 10001;
    flex: 1;
}
.hero-section-search-overlay .suggestions {
    z-index: 10060 !important;
    position: absolute;
}

/* ===== RESPONSIVE: Hero Section ===== */
@media (max-width: 991px) {
    .hero-section-dark {
        padding-top: clamp(4rem, 11vmin, 5.5rem);
    }
    .hero-content-wrapper {
        padding: 1rem 0 1.25rem;
        align-items: flex-start;
    }
    .hero-section-main-headline {
        font-size: 3rem;
    }
    .hero-cards-area {
        min-height: 380px;
        margin-top: 2.5rem;
    }
    .hero-card-1 {
        width: 200px;
        height: 270px;
        top: 40px;
    }
    .hero-card-2 {
        width: 240px;
        height: 300px;
    }
    .hero-stats-card {
        right: 0;
        bottom: 10px;
    }
}

@media (max-width: 767px) {
    .hero-section-dark {
        padding-top: clamp(3.75rem, 10vmin, 5rem);
    }
    .hero-content-wrapper {
        /* padding: 0.75rem 0 1rem; */
        padding: 4.75rem 0 4rem;
        align-items: flex-start;
    }
    .hero-section-main-headline {
        font-size: 2.5rem;
    }
    .hero-section-subheadline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-search-bar {
        max-width: 100%;
    }
    .hero-trending {
        max-width: 100%;
    }
    .hero-active-badge {
        margin-left: auto;
        margin-right: auto;
        display: inline-flex;
    }
    .hero-cards-area {
        min-height: 320px;
        max-width: 420px;
        margin: 2rem auto 0;
    }
    .hero-card-1 {
        width: 170px;
        height: 230px;
        top: 40px;
        left: 0;
    }
    .hero-card-2 {
        width: 210px;
        height: 260px;
        right: 0;
    }
    .hero-stats-card {
        right: 0;
        bottom: 0;
        min-width: 150px;
        padding: 0.75rem 1rem;
    }
    .hero-verified-badge {
        left: 40%;
    }
    .hero-bottom-stats .container-xxl {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-bottom-stats .stats-list {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-bottom-stats .stat-item {
        padding: 0.6rem 1rem;
    }
    .hero-bottom-stats .explore-link {
        margin-top: 0.25rem;
    }
    .hero-bottom-stats {
        transform: translateY(0);
        margin-top: 0.4rem;
    }
}

@media (max-width: 576px) {
    .hero-content-wrapper {
        padding: 0.75rem 0 0.65rem;
    }
    .hero-section-main-headline {
        font-size: 2rem;
    }
    .hero-section-subheadline {
        font-size: 0.9rem;
    }
    .hero-search-bar {
        padding: 0.3rem 0.3rem 0.3rem 1rem;
    }
    .hero-search-bar .hero-section-search-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.82rem;
    }
    .hero-cards-area {
        min-height: 260px;
        max-width: 340px;
    }
    .hero-card-1 {
        width: 145px;
        height: 195px;
        top: 30px;
    }
    .hero-card-2 {
        width: 175px;
        height: 220px;
    }
    .hero-stats-card {
        min-width: 130px;
        padding: 0.6rem 0.8rem;
    }
    .hero-stats-card .stats-number {
        font-size: 1rem;
    }
    .hero-bottom-stats .stats-list {
        gap: 0.4rem;
    }
    .hero-bottom-stats .stat-item {
        padding: 0.5rem 0.75rem;
    }
    .hero-bottom-stats .stat-item .stat-val {
        font-size: 0.9rem;
    }
    .hero-bottom-stats .stat-item .stat-lbl {
        font-size: 0.65rem;
    }
}

.escort-card {
    height: 97%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vip-carousel-card-wrapper {
    height: 475px;
    display: flex;
    flex-direction: column;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
}

/* New Ads Section - Mobile horizontal scroll */
@media (max-width: 948px) {
    #newAdsGrid {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    /* #newAdsGrid .vip-carousel-card-wrapper {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    } */
}

/* New Ads Section - Desktop grid layout */
@media (min-width: 948px) {
    #newAdsGrid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        overflow: visible;
    }

    /* #newAdsGrid .vip-carousel-card-wrapper {
        width: 100%;
        min-width: auto;
        max-width: none;
        height: auto;
    } */

    #newAdsGrid .escort-card-image.vip-carousel-image-container {
        height: 375px !important;
    }
}

.escort-card-image {
    position: relative;
    height: 375px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
}

.escort-card-image.vip-carousel-image-container {
    height: 350px !important;
}

.escort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.escort-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: unset;
    height: 200px;
    overflow: hidden;
}

.escort-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.escort-card-name a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    pointer-events: none;
}

a.escort-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 487px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

a.escort-card-link:hover {
    transform: translateY(-2px);
}

a.escort-card-link:hover .escort-card-name {
    color: #ec4899;
}

/* New Ads default (desktop/tablet) */
#newAdsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* #newAdsGrid .escort-card-link {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
} */

#newAdsGrid .escort-card {
    height: 100%;
}

/* New Ads horizontal scroll only on <768px */
@media (max-width: 948px) {
    #newAdsGrid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0.75rem;
        padding-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        scroll-padding-left: 0.5rem;
        scroll-padding-right: 0.5rem;
        justify-content: flex-start;
    }

    #newAdsGrid::-webkit-scrollbar {
        height: 6px;
    }

    #newAdsGrid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    #newAdsGrid::-webkit-scrollbar-thumb {
        background: #ec4899;
        border-radius: 10px;
    }

    #newAdsGrid::-webkit-scrollbar-thumb:hover {
        background: #db2777;
    }

    #newAdsGrid .post-item {
        flex: 0 0 calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
        margin-bottom: 0;
    }

    #newAdsGrid .escort-card-link {
        width: calc(100% - 1rem) !important;
        min-width: calc(100% - 1rem) !important;
        max-width: calc(100% - 1rem) !important;
        height: auto;
        margin: 0 auto;
    }

    #newAdsGrid .escort-card {
        scroll-snap-align: center;
    }
}

/* Mobile full width cards (very small screens) */
@media (max-width: 425px) {
    #newAdsGrid .escort-card-link {
        width: calc(100% - 1rem) !important;
        min-width: calc(100% - 1rem) !important;
        max-width: calc(100% - 1rem) !important;
    }

    .escort-card {
        width: 100% !important;
    }

    .escort-card-image {
        height: 375px;
    }

    .escort-card-content {
        height: auto;
        padding: 1rem;
    }
}

@media (max-width: 395px) {
    #newAdsGrid .escort-card-link {
        width: calc(100% - 1rem) !important;
        min-width: calc(100% - 1rem) !important;
        max-width: calc(100% - 1rem) !important;
    }
}

@media (max-width: 375px) {
    #newAdsGrid .escort-card-link {
        width: calc(100% - 1rem) !important;
        min-width: calc(100% - 1rem) !important;
        max-width: calc(100% - 1rem) !important;
    }
}

@media (max-width: 335px) {
    #newAdsGrid .escort-card-link {
        width: calc(100% - 0.9rem) !important;
        min-width: calc(100% - 0.9rem) !important;
        max-width: calc(100% - 0.9rem) !important;
    }
}

.escort-card-location {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.escort-card-location i {
    color: #ec4899;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.escort-card-location span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Welcome Modal Styles */
.welcome-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 2rem;
    border: 2px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
    overflow: hidden;
}

.welcome-modal-body {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(147, 51, 234, 0.05));
}

.welcome-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    width: 277px;
    height: 74px;
}

.welcome-logo-text {
    width: 100%;
    height: 100%;
    border-radius: 16%;
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.welcome-logo-text::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 14%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.welcome-logo-text span {
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .welcome-logo-container {
        width: 257px;
        height: 67px;
    }

    .welcome-logo-text {
        font-size: 1.25rem;
        letter-spacing: 1px;
        padding: 1.25rem;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6);
    }
}

.welcome-title {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
}

.welcome-text {
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.7;
}

.welcome-age-check {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #ec4899;
}

.welcome-checkboxes {
    width: 100%;
    max-width: 500px;
}

.welcome-checkbox-item {
    padding: 0.30rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.welcome-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: #ec4899;
    flex-shrink: 0;
}

.welcome-checkbox-item label {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.welcome-checkbox-item input[type="checkbox"]:checked + label {
    color: #1f2937;
    font-weight: 500;
}

.welcome-age-check a {
    color: #ec4899;
    text-decoration: none;
    font-weight: 600;
}

.welcome-age-check a:hover {
    color: #9333ea;
    text-decoration: underline;
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #fff 100%);
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ec4899;
}

.faq-accordion {
    border: 2px solid #e0e7ff;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border: none;
    border-bottom: 1px solid #f3f4f6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-button {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #1f2937;
    background: white;
    border: none;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    color: #ec4899;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(147, 51, 234, 0.05));
    box-shadow: none;
}

.faq-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ec4899'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-button:hover {
    color: #ec4899;
}

.faq-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item:first-child .faq-button {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.faq-item:last-child .faq-button.collapsed {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.5rem;
    }

    .faq-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-body {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* About Us Section Styles */
.about-images-wrapper {
    display: flex;
    justify-content: center;
}

.about-image-bottom {
    right: 0;
    top: 0;
    z-index: 1;
}

.about-image-bottom img {
    width: 320px;
    height: 450px;
    object-fit: cover;
    border: 4px solid white;
}

.about-image-top {
    left: 50px;
    top: 100px;
    z-index: 2;
}

.about-image-top img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border: 4px solid white;
}

.about-btn-pink {
    background: #ec4899;
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.about-btn-pink:hover {
    background: #db2777;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

@media (max-width: 991px) {
    .about-images-wrapper {
        min-height: 400px !important;
    }

    .about-image-bottom {
        right: 10%;
    }

    .about-image-bottom img {
        width: 250px;
        height: 350px;
    }

    .about-image-top {
        left: 10%;
        top: 80px;
    }

    .about-image-top img {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 575px) {
    .about-images-wrapper {
        min-height: 350px !important;
    }

    .about-image-bottom {
        right: 5%;
    }

    .about-image-bottom img {
        width: 180px;
        height: 260px;
    }

    .about-image-top {
        left: 5%;
        top: 60px;
    }

    .about-image-top img {
        width: 160px;
        height: 220px;
    }
}

/* Blog Section Styles */
.blog-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f0f9ff 100%);
}

.blog-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-scroll-container::-webkit-scrollbar {
    display: none;
}

.blog-card-home {
    flex: 0 0 350px;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.blog-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.blog-card-home .card-image {
    height: 200px;
    background: linear-gradient(135deg, #fce7f3, #f3e8ff);
    position: relative;
    overflow: hidden;
}

.blog-card-home .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-home:hover .card-image img {
    transform: scale(1.1);
}

.blog-card-home .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #ec4899, #9333ea);
}

.blog-card-home .no-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-card-home .card-body {
    padding: 1.25rem;
}

.blog-card-home .card-date {
    color: #ec4899;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-home .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-home .card-excerpt {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-card-home .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.blog-card-home .read-more {
    color: #9333ea;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.blog-card-home:hover .read-more {
    color: #ec4899;
    gap: 0.6rem;
}

.blog-card-home .view-count {
    color: #6b7280;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Blog Button Styling */
.btn-pink {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-pink:hover {
    background: linear-gradient(135deg, #db2777, #7c3aed);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline-pink-home {
    border: 2px solid #ec4899;
    color: #ec4899;
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pink-home:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* Scroll Navigation Buttons */
.blog-scroll-nav {
    display: flex;
    gap: 0.75rem;
}

.blog-scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ec4899;
    background: white;
    color: #ec4899;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-scroll-btn:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .blog-card-home {
        flex: 0 0 300px;
    }
    
    .blog-scroll-nav {
        display: none;
    }
}

@media (max-width: 991px) {
    .blog-image-card {
        position: relative !important;
        width: 100% !important;
        margin-bottom: 1.5rem;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }

    .blog-image-card img {
        height: 250px !important;
    }
}

.btn-welcome-enter {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-welcome-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
    color: white;
}

.btn-welcome-exit {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #6b7280;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.btn-welcome-exit:hover {
    background: #6b7280;
    color: white;
    transform: translateY(-2px);
}

.modal-backdrop {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
}

/* Enhanced blur for email collection modal backdrop */
body.email-modal-open .modal-backdrop {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Blur the entire page content when email modal is open */
body.email-modal-open {
    overflow: hidden;
}

body.email-modal-open > *:not(.modal):not(.modal-backdrop) {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

/* Ensure modal and backdrop are not blurred */
body.email-modal-open .modal,
body.email-modal-open .modal-backdrop {
    filter: none !important;
}

#welcomeModal .modal-dialog {
    max-width: 600px;
}

/* Perfect Match Modal Styles */
.perfect-match-modal-dialog {
    max-width: 500px;
}

.perfect-match-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.perfect-match-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Path is relative to this file: css/ → ../images/ */
    background: url('../images/modal-bg.png?v=2') center / cover;
    /* background-blend-mode: overlay;
    filter: blur(10px);
    opacity: 0.7;
    z-index: 0;
    transform: scale(1.1); */
}

/* Fallback if image doesn't exist */
.perfect-match-bg-image:before {
    display: none;
}

.perfect-match-bg-image::after {
    display: none;
}

.btn-close-perfect-match {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255 255 255 / 7%);
    backdrop-filter: blur(15px);
    border: 1px solid #ffffff57;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    padding: 0;
}

.btn-close-perfect-match:hover {
    /* background: rgba(75, 85, 99, 0.9); */
    transform: rotate(90deg);
}

.perfect-match-modal-body {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
    color: white;
}

.perfect-match-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.perfect-match-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
}

.perfect-match-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.perfect-match-subheading {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.perfect-match-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.perfect-match-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perfect-match-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perfect-match-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.perfect-match-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    color: #1f2937;
    outline: none;
    transition: all 0.3s ease;
}

.perfect-match-input:focus {
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.3);
}

.perfect-match-input::placeholder {
    color: #9ca3af;
}

.perfect-match-radio-group {
    display: flex;
    gap: 1rem;
}

.perfect-match-radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid rgba(156, 163, 175, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.perfect-match-radio-option input[type="radio"] {
    display: none;
}

.perfect-match-radio-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(156, 163, 175, 0.8);
    background: rgba(156, 163, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.perfect-match-radio-check::after {
    content: "✓";
    color: rgba(107, 114, 128, 0.8);
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0.6;
}

.perfect-match-radio-text {
    color: rgba(156, 163, 175, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.perfect-match-radio-selected {
    background: #FDF2F8 !important;
    border-color: #ec4899 !important;
}

.perfect-match-radio-selected .perfect-match-radio-check {
    background: #ec4899;
    border-color: #ec4899;
}

.perfect-match-radio-selected .perfect-match-radio-check::after {
    content: "✓";
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 1;
}

.perfect-match-radio-selected .perfect-match-radio-text {
    color: #ec4899;
}

.perfect-match-radio-option:hover {
    border-color: rgba(236, 72, 153, 0.6);
    background: rgba(236, 72, 153, 0.1);
}

.perfect-match-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #475569;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.perfect-match-submit-btn:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.4);
}

.perfect-match-submit-btn i {
    font-size: 1.1rem;
}

@media (max-width: 575px) {
    .perfect-match-modal-body {
        padding: 2rem 1.5rem;
    }

    .perfect-match-heading,
    .perfect-match-subheading {
        font-size: 1.75rem;
    }

    .perfect-match-radio-group {
        flex-direction: column;
    }

    .btn-close-perfect-match {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .welcome-logo {
        width: 100px;
        height: 100px;
        padding: 12px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .welcome-modal-body {
        padding: 2rem 1.5rem !important;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .btn-welcome-enter,
    .btn-welcome-exit {
        width: 100%;
    }
}

@media (min-width: 350px) and (max-width: 575px) {
    .set-width-mobile {
        width: 75% !important;
    }
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.btn-gradient-pink-purple {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
}

.btn-gradient-pink-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
    color: white;
}

.live-escorts-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .live-escorts-btn {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

/* New Search Section Design */
.new-search-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f0f9ff 100%);
    border-radius: 2rem;
    margin-top: 3rem;
}

.new-search-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.new-search-wrapper h3 {
    font-size: 2rem;
    color: #1f2937;
}

.new-search-wrapper p {
    font-size: 1rem;
    color: #6b7280;
}

.new-search-form {
    margin-bottom: 2rem;
}

.new-search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #ec4899;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.new-search-input-wrapper:focus-within {
    border-color: #ec4899;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.25);
}

.new-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-radius: 0.75rem;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.new-search-input {
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
    background: transparent;
    color: #1f2937;
}

.new-search-input::placeholder {
    color: #9ca3af;
}

.new-search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.new-search-btn:hover {
    background: linear-gradient(135deg, #db2777, #7e22ce);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.new-search-btn i {
    font-size: 1.1rem;
}

.new-search-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(236, 72, 153, 0.1);
}

.new-popular-cities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.new-popular-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.new-popular-label i {
    color: #ec4899;
    font-size: 1.1rem;
}

.new-city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.new-city-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    color: #ec4899;
    border: 2px solid #ec4899;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.new-city-tag:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.new-city-tag i {
    font-size: 0.9rem;
}

.new-live-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #ec4899;
    border: 2px solid #ec4899;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-live-btn:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.new-live-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    left: 1rem;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.new-live-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-search-section {
        padding: 2rem 0;
        border-radius: 1.5rem;
        margin-top: 2rem;
    }

    .new-search-wrapper {
        padding: 0 1rem;
    }

    .new-search-wrapper h3 {
        font-size: 1.5rem;
    }

    .new-search-input-wrapper {
        flex-direction: row;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .new-search-icon {
        width: 45px;
        min-width: 45px;
        height: 45px;
        border-radius: 0.5rem;
        font-size: 1rem;
    }

    .new-search-input {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .new-search-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        gap: 0.25rem;
    }

    .new-search-btn span {
        display: none;
    }

    .new-search-btn i {
        font-size: 1rem;
    }

    .new-search-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-popular-cities {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .new-city-tags {
        width: 100%;
    }

    .new-city-tag {
        flex: 0 0 auto;
        min-width: max-content;
        justify-content: center;
        white-space: nowrap;
    }

    .new-live-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .new-search-wrapper h3 {
        font-size: 1.25rem;
    }

    .new-search-wrapper p {
        font-size: 0.9rem;
    }

    .new-search-input-wrapper {
        padding: 0.4rem;
        gap: 0.4rem;
    }

    .new-search-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .new-search-input {
        font-size: 0.85rem;
        padding: 0.4rem 0.5rem;
    }

    .new-search-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .new-city-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .new-live-btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}

/* How to Book Section Styles */
.how-to-book-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f0f9ff 100%);
    padding: 2rem 0;
}

.how-to-book-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.how-to-book-intro {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.how-to-book-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.how-to-book-card {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.how-to-book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #ec4899;
}

.how-to-book-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

.how-to-book-icon.browse {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.how-to-book-icon.review {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.how-to-book-icon.contact {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.how-to-book-icon.confirm {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.how-to-book-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.how-to-book-card-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.how-to-book-button {
    background: #ec4899;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.how-to-book-button:hover {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .how-to-book-heading {
        font-size: 2rem;
    }

    .how-to-book-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .how-to-book-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-to-book-card {
        padding: 1.5rem;
    }
}

/* Reviews Carousel Section Styles - Modern Design */
.reviews-carousel-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f0f9ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section-heading {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reviews-section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 1;
}

.reviews-carousel-wrapper {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.75rem);
    min-width: calc(33.333% - 1.75rem);
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #9333ea);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
    border-color: #ec4899;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
}

.review-star {
    color: #fbbf24;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.review-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    position: relative;
}

.review-avatar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    opacity: 0.2;
    z-index: -1;
    filter: blur(8px);
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-author-location {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-author-location i {
    color: #ec4899;
    font-size: 0.875rem;
}

.reviews-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #ec4899;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.review-nav-btn:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.review-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.review-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.review-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-dot:hover::before {
    opacity: 1;
}

.review-dot.active {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 1.25rem);
        min-width: calc(50% - 1.25rem);
    }

    .reviews-carousel-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .reviews-carousel-section {
        padding: 3rem 0;
    }

    .reviews-section-heading {
        font-size: 2.25rem;
    }

    .reviews-section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .reviews-carousel-container {
        padding: 0 1rem;
    }

    .reviews-carousel-wrapper {
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .review-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: calc(100% - 0.5rem);
        padding: 2rem;
    }

    .review-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}