: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;
}

/* 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 Hero Section Styles */
.hero-section-dark {
    position: relative;
    min-height: 60vh;
    overflow: visible;
}

/* Background Image with Blur */
.hero-section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/home/assets/images/hero-bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: blur(8px) brightness(0.3); */
    z-index: 1;
}

/* Content Overlay */
.hero-section-content-overlay {
    position: relative;
    z-index: 2;
    min-height: 60vh;
    /* display: flex; */
    align-items: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Main Headline */
.hero-section-main-headline {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section-main-headline .text-pink {
    color: linear-gradient(135deg, #FF519C, #FF0773) !important;
}

.hero-section-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Search Overlay Container */
.hero-section-search-overlay {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 93%;
}

@media (max-width: 374px) {
    .hero-section-search-overlay {
        width: 100%;
    }
}

.hero-section-search-section {
    background: rgb(255 255 255 / 7%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}

.hero-section-search-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-section-search-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 11;
}

.hero-section-search-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.hero-section-search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    color: white;
    background: transparent;
    width: 100%;
}

.hero-section-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-section-search-btn {
    background: #ec4899;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-section-search-btn:hover {
    background: #db2777;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.hero-section-popular-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-section-popular-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-section-popular-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-right: 0.25rem;
}

.hero-section-city-btn {
    background: rgba(31, 41, 55, 0.6);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-section-city-btn:hover {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-section-live-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    animation: liveButtonBlink 2s infinite;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.hero-section-live-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.6);
}

@keyframes liveButtonBlink {
    0%, 100% {
        opacity: 1;
        background: #10b981;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.8),
                    0 0 30px rgba(16, 185, 129, 0.5),
                    0 0 50px rgba(16, 185, 129, 0.3);
    }
    25% {
        opacity: 0.9;
        background: #34d399;
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(16, 185, 129, 1),
                    0 0 40px rgba(16, 185, 129, 0.7),
                    0 0 65px rgba(16, 185, 129, 0.4);
    }
    50% {
        opacity: 0.6;
        background: #059669;
        transform: scale(0.98);
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.6),
                    0 0 20px rgba(16, 185, 129, 0.4),
                    0 0 35px rgba(16, 185, 129, 0.2);
    }
    75% {
        opacity: 0.9;
        background: #34d399;
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(16, 185, 129, 1),
                    0 0 40px rgba(16, 185, 129, 0.7),
                    0 0 65px rgba(16, 185, 129, 0.4);
    }
}

.hero-section-live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: liveDotPulse 2s infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 1);
}

@keyframes liveDotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 6px rgba(255, 255, 255, 1),
                    0 0 12px rgba(255, 255, 255, 0.6);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(255, 255, 255, 1),
                    0 0 16px rgba(255, 255, 255, 0.8);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.9);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.6),
                    0 0 8px rgba(255, 255, 255, 0.3);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(255, 255, 255, 1),
                    0 0 16px rgba(255, 255, 255, 0.8);
    }
}

/* Statistics Section */
.hero-section-statistics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.hero-section-stat-item {
    text-align: center;
    /* background: rgb(255 255 255 / 7%); */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(4px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    flex: 1;
    max-width: 200px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hero-section-stat-item:hover {
    transform: translateY(-2px);
    background: rgb(255 255 255 / 10%);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-section-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
    word-break: break-word;
}

.hero-section-stat-label {
    font-size: 0.875rem;
    color: white;
    font-weight: 400;
    display: block;
    word-break: break-word;
}

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

/* Hero section row */
.hero-section-row {
    min-height: calc(85vh - 200px);
}

/* Ensure parent containers don't clip and have proper stacking */
.hero-section-content-overlay .container-xxl {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.hero-section-content-overlay .row {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.hero-section-content-overlay .col-lg-10 {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

/* Search box container needs higher z-index */
.hero-section-search-input-wrapper {
    position: relative;
    z-index: 10000;
    overflow: visible !important;
}

/* Ensure the form and search container are properly positioned */
.hero-section-search-overlay form,
.hero-section-search-overlay #search_form2 {
    position: relative;
    z-index: 10001;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section-content-overlay {
        padding: 1rem 0;
    }

    .hero-section-content-overlay .row,
    .hero-section-row {
        min-height: auto !important;
    }

    .hero-section-main-headline {
        font-size: 2.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-section-main-headline br {
        display: block;
    }

    .hero-section-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-section-search-overlay {
        margin-bottom: 1.5rem;
    }

    .hero-section-search-section {
        padding: 1.25rem;
        border-radius: 1.25rem;
    }

    .hero-section-search-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-section-search-input-wrapper {
        padding: 0.875rem 1.25rem;
        border-radius: 1rem;
    }

    .hero-section-search-icon {
        font-size: 1.1rem;
        margin-right: 0.625rem;
    }

    .hero-section-search-input {
        font-size: 0.95rem;
    }

    .hero-section-search-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        border-radius: 1rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .hero-section-popular-cities {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-section-popular-row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-section-popular-label {
        margin-right: 0.25rem;
    }

    .hero-section-city-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 1rem;
    }

    .hero-section-live-btn {
        margin-left: 0;
        width: auto;
        padding: 0.75rem 1.5rem;
        border-radius: 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
        align-self: center;
    }

    .hero-section-statistics {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 2rem;
        flex-wrap: wrap;
        padding: 0 0.5rem;
    }

    .hero-section-stat-item {
        flex: 0 0 calc(33.333% - 0.5rem);
        min-width: calc(33.333% - 0.5rem);
        max-width: calc(33.333% - 0.5rem);
        /* background: rgb(255 255 255 / 7%); */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(4px);
        /* border: 1px solid rgba(255, 255, 255, 0.3); */
        border-radius: 1rem;
        padding: 1rem 0.75rem;
        box-sizing: border-box;
    }

    .hero-section-stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
        color: #ec4899;
        line-height: 1;
        word-break: break-word;
    }

    .hero-section-stat-label {
        font-size: 0.75rem;
        color: white;
        line-height: 1.2;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .hero-section-content-overlay {
        padding: 1rem 0;
        min-height: auto;
    }

    .hero-section-main-headline {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        margin-top: 32px;
    }
    .search-section-title{
        margin-bottom: 2rem !important;
    }
    .hero-section-main-headline br {
        display: block;
    }

    .hero-section-subheadline {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-section-search-overlay {
        margin-bottom: 1rem;
    }

    .hero-section-search-section {
        padding: 1rem;
        border-radius: 1rem;
    }

    .hero-section-search-input-wrapper {
        padding: 0.75rem 1rem;
        border-radius: 0.875rem;
    }

    .hero-section-search-input {
        font-size: 0.9rem;
    }

    .hero-section-search-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 0.875rem;
    }

    .hero-section-city-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-section-live-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-section-statistics {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-section-stat-item {
        flex: 0 0 calc(33.333% - 0.35rem);
        min-width: calc(33.333% - 0.35rem);
        max-width: calc(33.333% - 0.35rem);
        padding: 1rem 0.5rem;
        /* background: rgb(255 255 255 / 7%); */
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(4px);
        /* border: 1px solid rgba(255, 255, 255, 0.3); */
        box-sizing: border-box;
    }

    .hero-section-stat-number {
        font-size: 1.5rem;
        color: #ec4899;
        line-height: 1;
        margin-bottom: 0.375rem;
        word-break: break-word;
    }

    .hero-section-stat-label {
        font-size: 0.7rem;
        color: white;
        line-height: 1.2;
        word-break: break-word;
    }
}

/* Extra small devices (iPhone SE and similar - 320px to 375px) */
@media (max-width: 375px) {
    .hero-section-statistics {
        gap: 0.4rem;
        padding: 0 0.25rem;
    }

    .hero-section-stat-item {
        flex: 0 0 calc(33.333% - 0.3rem);
        min-width: calc(33.333% - 0.3rem);
        max-width: calc(33.333% - 0.3rem);
        padding: 0.875rem 0.375rem;
    }

    .hero-section-stat-number {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
    }

    .hero-section-stat-label {
        font-size: 0.65rem;
    }
}

/* Very small devices (320px and below) */
@media (max-width: 320px) {
    .hero-section-statistics {
        gap: 0.3rem;
        padding: 0 0.15rem;
    }

    .hero-section-stat-item {
        flex: 0 0 calc(33.333% - 0.25rem);
        min-width: calc(33.333% - 0.25rem);
        max-width: calc(33.333% - 0.25rem);
        padding: 0.75rem 0.25rem;
    }

    .hero-section-stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .hero-section-stat-label {
        font-size: 0.6rem;
    }
}

/* Short height devices (iPhone SE and similar) */
@media (max-height: 700px) {
    .hero-section-dark {
        min-height: auto;
    }

    .hero-section-content-overlay {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero-section-row {
        min-height: auto !important;
    }

    .hero-section-main-headline {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-section-subheadline {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-section-search-overlay {
        margin-bottom: 0.75rem;
    }

    .hero-section-search-section {
        padding: 0.75rem;
    }

    .hero-section-statistics {
        margin-top: 1rem;
        gap: 0.4rem;
    }

    .hero-section-stat-item {
        padding: 0.75rem 0.5rem;
    }

    .hero-section-stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .hero-section-stat-label {
        font-size: 0.65rem;
    }
}

/* Short height + mobile width combination */
@media (max-width: 576px) and (max-height: 700px) {
    .hero-section-content-overlay {
        padding: 0.75rem 0;
    }

    .hero-section-row {
        min-height: auto !important;
    }

    .hero-section-main-headline {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-section-subheadline {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-section-search-overlay {
        margin-bottom: 0.75rem;
    }

    .hero-section-search-section {
        padding: 0.75rem;
    }

    .hero-section-statistics {
        margin-top: 0.75rem;
        gap: 0.35rem;
    }

    .hero-section-stat-item {
        padding: 0.625rem 0.375rem;
    }

    .hero-section-stat-number {
        font-size: 1.15rem;
        margin-bottom: 0.2rem;
    }

    .hero-section-stat-label {
        font-size: 0.6rem;
    }
}

/* Mobile Hamburger Button Design */
#mobileMenuBtn {
    background: white !important;
    border: 2px solid #ec4899 !important;
    color: #ec4899 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2) !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

#mobileMenuBtn:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea) !important;
    color: white !important;
    border-color: #9333ea !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4) !important;
}

#mobileMenuBtn i {
    font-size: 1.5rem !important;
    transition: transform 0.3s ease !important;
}

/* Hide button on desktop (>= 768px) */
@media (min-width: 1024px) {
    #mobileMenuBtn {
        display: none !important;
    }

    #mobileMenu {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .showButton {
        display: none !important;
    }
}

/* Starter Boost Banner Styles */
.starter-boost-banner {
    transition: all 0.3s ease;
}

.starter-boost-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4) !important;
}

.starter-boost-banner-container {
    max-width: 450px;
    min-width: 0;
}

.starter-boost-banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.starter-boost-banner-container-mobile {
    max-width: 438px;
    min-width: 0;
    display: none !important;
}

.starter-boost-banner-container-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 0px 9px 9px;
}

/* Hide banner on mobile */
@media (max-width: 649px) {
    .starter-boost-banner-container {
        display: none !important;
    }

    .starter-boost-banner-container-mobile {
        display: block !important;
    }

    .setShowMobile {
        display: flex !important;
    }
}

.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 — fixed-size cards; mobile = centered horizontal slider, desktop = grid */
:root {
    --new-ad-card-width: 280px;
}

#newAdsGrid .escort-card-link.new-ad-card-item {
    height: auto !important;
}

#newAdsGrid .escort-card-image.vip-carousel-image-container {
    width: 100%;
    height: auto !important;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f9fafb;
}

#newAdsGrid .escort-card-image.vip-carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

#newAdsGrid .escort-card-content {
    height: auto !important;
    min-height: 0;
    padding: 0.75rem 1rem 1rem;
}

/* Mobile / tablet: horizontal slider — 1 fixed-width post centered, hidden scrollbar */
@media (max-width: 947.98px) {
    .new-ads-slider-wrap {
        overflow: hidden;
    }

    #newAdsGrid.new-ads-mobile-slider {
        --new-ad-slide-pad: max(15px, calc((100% - var(--new-ad-card-width)) / 2));
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px !important;
        padding: 0 var(--new-ad-slide-pad) 1rem !important;
        margin: 0 !important;
        scroll-padding-inline: var(--new-ad-slide-pad);
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    #newAdsGrid.new-ads-mobile-slider::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    #newAdsGrid .escort-card-link.new-ad-card-item {
        flex: 0 0 var(--new-ad-card-width) !important;
        width: var(--new-ad-card-width) !important;
        min-width: var(--new-ad-card-width) !important;
        max-width: var(--new-ad-card-width) !important;
        height: auto !important;
        margin: 0 !important;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }

    #newAdsGrid .new-ad-card-item .vip-carousel-card-wrapper,
    #newAdsGrid .escort-card-link.new-ad-card-item .vip-carousel-card-wrapper {
        width: var(--new-ad-card-width) !important;
        min-width: var(--new-ad-card-width) !important;
        max-width: var(--new-ad-card-width) !important;
        height: auto !important;
    }
}

@media (min-width: 948px) {
    .new-ads-slider-wrap {
        overflow: visible;
    }

    #newAdsGrid.new-ads-mobile-slider {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1.5rem !important;
        overflow: visible !important;
        padding: 0 !important;
        scroll-snap-type: none !important;
    }

    #newAdsGrid .escort-card-link.new-ad-card-item {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: none !important;
        scroll-snap-align: unset;
    }

    #newAdsGrid .new-ad-card-item .vip-carousel-card-wrapper,
    #newAdsGrid .escort-card-link.new-ad-card-item .vip-carousel-card-wrapper {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
}

/* VIP carousel — same thumbnail treatment as New Ads */
#vipCarousel .escort-card-image.vip-carousel-image-container {
    height: auto !important;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.08);
}

#vipCarousel .escort-card-image.vip-carousel-image-container img {
    object-fit: contain;
    object-position: center center;
}

#vipCarousel .vip-carousel-card-wrapper {
    height: auto;
}

#vipCarousel .escort-card-content {
    height: auto !important;
    min-height: 0;
}

.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;
}

.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;
}

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

.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%;
}

/* (removed duplicate mobile rules for #newAdsGrid — handled above) */


.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;
}

/* New Ads — full-card link + hover contact overlay (nested actions use own links) */
.escort-card-stretched-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    cursor: pointer;
}

#newAdsGrid .new-ad-card-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* Let clicks pass through visuals to the stretched post link */
#newAdsGrid .new-ad-card-item .escort-card,
#newAdsGrid .new-ad-card-item .escort-card-image,
#newAdsGrid .new-ad-card-item .escort-card-image img,
#newAdsGrid .new-ad-card-item .escort-card-overlay,
#newAdsGrid .new-ad-card-item .escort-card-badges,
#newAdsGrid .new-ad-card-item .escort-card-content,
#newAdsGrid .new-ad-card-item .escort-card-name,
#newAdsGrid .new-ad-card-item .escort-card-location {
    pointer-events: none;
}

#newAdsGrid .escort-card-contact-hover {
    position: absolute;
    inset: 0;
    min-height: 100%;
    padding: 0.85rem 0.5rem 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    z-index: 4;
    background: rgba(0, 0, 0, 0.82);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

#newAdsGrid .escort-card-contact-hover,
#newAdsGrid .escort-card-contact-hover * {
    pointer-events: none;
}

#newAdsGrid .new-ad-card-item:hover .escort-card-contact-hover {
    opacity: 1;
    pointer-events: auto;
}

#newAdsGrid .new-ad-card-item:hover .escort-card-contact-hover .contact-btn {
    pointer-events: auto;
}

/* Status label (not a button) — live indicator + typography */
#newAdsGrid .escort-card-available-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    pointer-events: none;
}

#newAdsGrid .escort-card-available-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #86efac 0%, #22c55e 55%, #15803d 100%);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.45),
        0 0 12px rgba(34, 197, 94, 0.55);
}

#newAdsGrid .escort-card-available-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #fff;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 0 16px rgba(0, 0, 0, 0.4);
}

#newAdsGrid .new-ad-card-contact.contact-buttons {
    gap: 0.45rem;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

#newAdsGrid .new-ad-card-contact .contact-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 5;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

#newAdsGrid .new-ad-card-contact .contact-btn i {
    pointer-events: none;
}

#newAdsGrid .btn-whatsapp {
    background: #25D366;
    color: white;
}

#newAdsGrid .btn-whatsapp:hover {
    background: #20BA5A;
    color: white;
}

#newAdsGrid .btn-phone {
    background: #ec4899;
    color: white;
}

#newAdsGrid .btn-phone:hover {
    background: #db2777;
    color: white;
}

#newAdsGrid .btn-message {
    background: #9333ea;
    color: white;
}

#newAdsGrid .btn-message:hover {
    background: #7e22ce;
    color: white;
}

#newAdsGrid .new-ad-card-item:hover .escort-card-overlay {
    opacity: 0;
}

#newAdsGrid .new-ad-card-item:hover .escort-card-image img {
    transform: none;
}

/* 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: 30px;
    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;
    }
}

/* Popular Links (full-width, before FAQ — city-grid style, premium variant) */
.popular-links-section {
    width: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #faf5ff 38%, #fff5f8 100%);
    border-top: 1px solid rgba(147, 51, 234, 0.08);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.popular-links-grid-wrap {
    position: relative;
}

.popular-link-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 10px;
    padding: 0.95rem 1rem;
    min-height: 3.25rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

a:hover .popular-link-card {
    border-color: rgba(236, 72, 153, 0.45);
    background: linear-gradient(145deg, #ffffff 0%, #fdf2f8 100%);
    box-shadow: 0 10px 28px -12px rgba(147, 51, 234, 0.25);
    transform: translateY(-3px);
}

.popular-link-card--featured {
    border-left: 3px solid #ec4899;
    background: linear-gradient(145deg, #fffdfb 0%, #fdf2f8 55%, #faf5ff 100%);
    border-color: rgba(236, 72, 153, 0.35);
}

a:hover .popular-link-card--featured {
    border-left-color: #db2777;
}

.popular-link-card .popular-link-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.25;
}

.popular-link-card .popular-link-chevron {
    color: #a78bfa;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

a:hover .popular-link-card .popular-link-chevron {
    color: #ec4899;
    transform: translateX(3px);
}

@media (max-width: 575.98px) {
    .popular-link-card .popular-link-name {
        font-size: 0.88rem;
    }

    .popular-link-card {
        padding: 0.8rem 0.85rem;
        min-height: 3rem;
    }
}

/* 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;
}

{{-- OLD Perfect Match Modal Styles (commented - kept for reference) --}}
{{--
.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;
    background: url('/home/assets/images/modal-bg.png') center/cover;
}

.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 {
    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;
}
--}}

/* NEW Perfect Match Modal Styles - Website Theme (Pink/Purple Gradient) */
.perfect-match-modal-dialog {
    max-width: 460px;
}

.perfect-match-modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(147, 51, 234, 0.25);
}

.perfect-match-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ec4899 0%, #9333ea 100%);
    z-index: 2;
}

.perfect-match-decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.perfect-match-decor-blob.blob-pink {
    width: 180px;
    height: 180px;
    background: #ec4899;
    top: -60px;
    right: -60px;
}

.perfect-match-decor-blob.blob-purple {
    width: 160px;
    height: 160px;
    background: #9333ea;
    bottom: -60px;
    left: -60px;
}

.btn-close-perfect-match {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(243, 244, 246, 0.95);
    border: 1px solid rgba(229, 231, 235, 0.9);
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0;
}

.btn-close-perfect-match:hover {
    background: #ec4899;
    color: #ffffff;
    border-color: #ec4899;
    transform: rotate(90deg);
}

.perfect-match-modal-body {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

.perfect-match-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.perfect-match-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
    position: relative;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.perfect-match-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.perfect-match-badge-dot {
    width: 6px;
    height: 6px;
    background: #ec4899;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

.perfect-match-heading {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.15rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.perfect-match-subheading {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.9rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.perfect-match-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.75rem;
    line-height: 1.55;
    padding: 0 0.5rem;
}

.perfect-match-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

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

.perfect-match-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.5px;
}

.perfect-match-input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #1f2937;
    outline: none;
    transition: all 0.3s ease;
}

.perfect-match-input:focus {
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

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

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

.perfect-match-radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.75rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

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

.perfect-match-radio-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.perfect-match-radio-check::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    color: transparent;
    opacity: 1;
    font-size: 0;
}

.perfect-match-radio-text {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.perfect-match-radio-selected {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(147, 51, 234, 0.08)) !important;
    border-color: #ec4899 !important;
}

.perfect-match-radio-selected .perfect-match-radio-check {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-color: transparent;
}

.perfect-match-radio-selected .perfect-match-radio-check::after {
    content: '';
    background: #ffffff;
    color: transparent;
    font-size: 0;
    opacity: 1;
}

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

.perfect-match-radio-option:hover {
    border-color: #ec4899;
    transform: translateY(-1px);
    background: #fdf4ff;
}

.perfect-match-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    letter-spacing: 0.3px;
}

.perfect-match-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
    color: #ffffff;
}

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

.perfect-match-footnote {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.perfect-match-footnote i {
    color: #ec4899;
    margin-right: 0.25rem;
}

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

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

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

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

    .perfect-match-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

@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 {
    padding: 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f0f9ff 100%);
    border-radius: 2rem;
    margin-top: 0;
}

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

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

.new-search-wrapper p {
    font-size: 15px;
    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;
    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: 1;
        justify-content: center;
    }

    .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;
    }
}

/* Scrolling Ticker Styles */
.scrolling-ticker {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1030;
}

.scrolling-ticker-content {
    display: inline-block;
    animation: scroll-right-to-left 30s linear infinite;
    font-weight: 500;
    font-size: 1.1rem;
    padding-left: 100%;
}

.scrolling-ticker-content span {
    display: inline-block;
    padding-right: 2rem;
}

@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .scrolling-ticker-content {
        font-size: 0.8rem;
    }
}

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

.how-to-book-heading {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    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%);
    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: 30px;
    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: 15px;
    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-section-heading {
        font-size: 2.25rem;
    }

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

    .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;
    }
}

.showButton a {
    color: white;
}

.home-ad-section {
    background: radial-gradient(circle at top left, rgba(236,72,153,0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(37,99,235,0.12), transparent 55%),
                #020617;
}

.home-ad-card {
    background: #020617;
    border-radius: 1.5rem;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-ad-card img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-ad-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 60px rgba(15,23,42,0.9), 0 0 0 1px rgba(248,250,252,0.05);
}

.home-ad-card-left {
    border-color: rgba(236,72,153,0.65);
    box-shadow: 0 0 0 1px rgba(236,72,153,0.25);
}

.home-ad-card-right {
    border-color: rgba(59,130,246,0.65);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.25);
}

.home-ad-card-left:hover img,
.home-ad-card-right:hover img {
    transform: scale(1.05);
}
.display-5 {
    font-size: 30px;
}
.lead {
    font-size: 15px;
}

/* Home page — unified section & header spacing (30px mobile, 40px desktop) */
:root {
    --home-section-spacing: 1.875rem;
    --home-section-spacing-md: 2.5rem;
    --home-header-spacing: 1.875rem;
    --home-title-subtitle-gap: 0.75rem;
}

.home-page-section {
    padding-top: var(--home-section-spacing) !important;
    padding-bottom: var(--home-section-spacing) !important;
}

@media (min-width: 768px) {
    .home-page-section {
        padding-top: var(--home-section-spacing-md) !important;
        padding-bottom: var(--home-section-spacing-md) !important;
    }
}

.home-section-header {
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--home-header-spacing);
}

.home-section-header .display-5,
.home-section-header h2,
.home-section-header h3,
.home-section-header .how-to-book-heading,
.home-section-header .reviews-section-heading,
.home-section-header .faq-title {
    margin-top: 0 !important;
    margin-bottom: var(--home-title-subtitle-gap) !important;
}

.home-section-header .lead,
.home-section-header .reviews-section-subtitle,
.home-section-header .how-to-book-intro,
.home-section-header p.text-muted,
.home-section-header .text-purple-200 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.home-section-action {
    margin-top: var(--home-header-spacing);
    margin-bottom: 0;
    text-align: center;
}

.how-to-book-section.home-page-section,
.reviews-carousel-section.home-page-section {
    padding-top: var(--home-section-spacing) !important;
    padding-bottom: var(--home-section-spacing) !important;
}

@media (min-width: 768px) {
    .how-to-book-section.home-page-section,
    .reviews-carousel-section.home-page-section {
        padding-top: var(--home-section-spacing-md) !important;
        padding-bottom: var(--home-section-spacing-md) !important;
    }
}

.how-to-book-section {
    padding: 0;
}

.reviews-carousel-section {
    padding: 0;
}

.reviews-section-heading,
.how-to-book-heading {
    margin-bottom: var(--home-title-subtitle-gap);
}

.reviews-section-subtitle {
    margin: 0 auto var(--home-header-spacing) !important;
}

.how-to-book-intro {
    margin: 0 auto var(--home-header-spacing) !important;
}

.how-to-book-cards {
    margin-bottom: var(--home-header-spacing);
}

.faq-section .home-section-header .faq-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0 !important;
}

#search-section.home-page-section {
    padding-left: 0;
    padding-right: 0;
}

#search-section .new-search-section {
    margin-top: 0 !important;
    padding: var(--home-section-spacing) 1rem !important;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    #search-section .new-search-section {
        padding: var(--home-section-spacing-md) 1.5rem !important;
        border-radius: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .home-section-header {
        margin-bottom: 1.25rem;
    }

    .home-section-header .display-5,
    .home-section-header h2,
    .home-section-header h3 {
        font-size: 1.5rem;
    }

    .home-section-header .lead {
        font-size: 0.875rem;
    }

    .reviews-section-subtitle,
    .how-to-book-intro {
        font-size: 0.875rem;
        margin-bottom: 1.25rem !important;
    }

    .how-to-book-cards {
        margin-bottom: 1.25rem;
    }

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

    .reviews-carousel-section.home-page-section {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
}