:root {
    --pink: #ff2b7a;
    --purple: #e01e68;
    --text-dark: #1a1a1a;
    --text-muted: #1a1a1a;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
}

.btn-gradient-pink-purple {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    color: #fff;
    font-weight: 600;
}

.btn-outline-pink {
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    background: #fff;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
}

.mobile-nav-toggle {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}

.nav-bar {
    background: linear-gradient(135deg, rgba(255, 43, 122, 0.95), rgba(224, 30, 104, 0.95));
    padding: 0.75rem 0;
    position: sticky;
    top: 80px;
    z-index: 1055;
}

.nav-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.92rem;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 240px;
    border-radius: 1rem;
    border: 2px solid var(--pink);
    box-shadow: 0 20px 45px rgba(255, 43, 122, 0.2);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    max-height: 420px;
    overflow-y: auto;
    z-index: 1060;
}

.nav-menu > li:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.button-style {
    height: 42px !important;
    border-radius: 50px !important;
    padding: 0 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0 8px 16px !important;
    background: linear-gradient(135deg, #ff2b7a, #e01e68) !important;
}

.search-bar-section {
    position: sticky;
    top: 80px;
    z-index: 1049;
    background: #fff;
    border-bottom: 2px solid rgba(255, 43, 122, 0.2);
}

.search-container .form-control {
    height: 50px;
    border-radius: 50px;
    border: 2px solid rgba(255, 43, 122, 0.3);
    padding-left: 3rem;
    padding-right: 10rem;
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 20px 30px rgba(26, 26, 26, 0.1);
    margin-top: 0.75rem;
    z-index: 1000;
    display: none;
    max-height: 280px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 0.85rem 1.25rem;
    cursor: pointer;
}

.suggestion-item:hover {
    background: rgba(255, 43, 122, 0.08);
}

.landing-main {
    padding-top: 1rem;
    padding-bottom: 0 !important;
}

.hero-section {
    padding: 0;
}

.section-card {
    background: #fff;
    border: 2px solid rgba(255, 43, 122, 0.6);
    border-radius: 1.2rem;
    box-shadow: 0 14px 30px rgba(255, 43, 122, 0.09);
    padding: 1.75rem;
}

.breadcrumb-wrap {
    padding: 0;
    margin-bottom: 1rem !important;
}

.breadcrumb-wrap .breadcrumb {
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
}

.breadcrumb-wrap .link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-wrap .link:hover {
    color: var(--pink);
}

.breadcrumb-wrap .bi-arrow-right {
    color: var(--pink);
}

/* ===== PREMIUM HERO SECTION ===== */
.landing-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
    background: linear-gradient(140deg, #000000 0%, #1a1a1a 30%, #1a1a1a 65%, #000000 100%);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 0 0 1px rgba(255, 43, 122, 0.18),
        0 30px 70px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animated background orbs */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    will-change: transform;
}

.hero-bg-orb.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 43, 122, 0.32) 0%, transparent 70%);
    top: -160px;
    left: -120px;
    animation: heroOrb1 9s ease-in-out infinite alternate;
}

.hero-bg-orb.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(224, 30, 104, 0.38) 0%, transparent 70%);
    bottom: -130px;
    right: -100px;
    animation: heroOrb2 11s ease-in-out infinite alternate;
}

.hero-bg-orb.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 43, 122, 0.28) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: heroOrb3 13s ease-in-out infinite alternate;
}

@keyframes heroOrb1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(35px, 45px) scale(1.12); }
}

@keyframes heroOrb2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-28px, -32px) scale(1.1); }
}

@keyframes heroOrb3 {
    from { transform: translate(-50%, -50%) scale(0.85); opacity: 0.35; }
    to   { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

/* Grain texture overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: 0;
}

/* Content wrapper */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

/* No inner box — content sits directly in the hero card */
.landing-hero .hero-content {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    max-width: 820px;
    margin: 0 auto;
}

/* h1–h6 — large gradient heading (font size varies by level) */
.landing-hero .dynamic-content h1,
.landing-hero .dynamic-content h2,
.landing-hero .dynamic-content h3,
.landing-hero .dynamic-content h4,
.landing-hero .dynamic-content h5,
.landing-hero .dynamic-content h6 {
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    padding-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff9cc2 50%, #ff9cc2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
    letter-spacing: -0.02em;
    position: relative;
}

.landing-hero .dynamic-content h1 { font-size: clamp(2.4rem, 4vw, 3.6rem) !important; }
.landing-hero .dynamic-content h2 { font-size: clamp(2rem, 3.2vw, 3rem) !important; }
.landing-hero .dynamic-content h3 { font-size: clamp(1.75rem, 2.8vw, 2.5rem) !important; }
.landing-hero .dynamic-content h4 { font-size: clamp(1.5rem, 2.4vw, 2.1rem) !important; }
.landing-hero .dynamic-content h5 { font-size: clamp(1.3rem, 2vw, 1.75rem) !important; }
.landing-hero .dynamic-content h6 { font-size: clamp(1.15rem, 1.7vw, 1.5rem) !important; }

/* Glowing accent line below the heading */
.landing-hero .dynamic-content h1::after,
.landing-hero .dynamic-content h2::after,
.landing-hero .dynamic-content h3::after,
.landing-hero .dynamic-content h4::after,
.landing-hero .dynamic-content h5::after,
.landing-hero .dynamic-content h6::after {
    content: '';
    position: absolute;
    bottom: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(255, 43, 122, 0.65), 0 0 28px rgba(224, 30, 104, 0.35);
}

/* p — readable body text */
.landing-hero .dynamic-content p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.05rem !important;
    line-height: 1.88 !important;
    max-width: 680px;
    margin: 1.5rem auto 0 auto !important;
    text-shadow: none !important;
}

.landing-hero .dynamic-content p + p {
    margin-top: 0.75rem !important;
}

.dynamic-section {
    background: linear-gradient(180deg, #ffffff 0%, #fdf2f8 100%);
}

.dynamic-content h2 {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.32;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.dynamic-section-header {
    position: relative;
    padding-bottom: 0.9rem;
    margin-bottom: 0.8rem;
}

.dynamic-section-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 43, 122, 0.12) 0%, rgba(224, 30, 104, 0.6) 50%, rgba(255, 43, 122, 0.12) 100%);
}

.dynamic-section-header > h1,
.dynamic-section-header > h2,
.dynamic-section-header > h3,
.dynamic-section-header > h4,
.dynamic-section-header > h5,
.dynamic-section-header > h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(42deg, #7a0a33 0%, #e01e68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.dynamic-section-header > h1 { font-size: clamp(2.2rem, 3vw, 2.5rem); }
.dynamic-section-header > h2 { font-size: 2rem; }
.dynamic-section-header > h3 { font-size: 1.75rem; }
.dynamic-section-header > h4 { font-size: 1.5rem; }
.dynamic-section-header > h5 { font-size: 1.25rem; }
.dynamic-section-header > h6 { font-size: 1.1rem; }

.dynamic-content p {
    font-size: 0.97rem;
    line-height: 1.86;
    color: #1a1a1a;
    margin-bottom: 0.9rem;
}

.dynamic-content h3,
.dynamic-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.posts-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(42deg, #7a0a33 0%, #e01e68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.escort-card {
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 43, 122, 0.2);
    background: #fff;
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.08);
    height: 100%;
}

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

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

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

.escort-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.escort-card-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.new-search-section {
    background: #fff;
    border: 1px solid rgba(255, 43, 122, 0.2);
    border-radius: 1.2rem;
    padding: 2rem 1.4rem;
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.06);
}

.new-search-input-wrapper {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    border: 2px solid rgba(255, 43, 122, 0.4);
    border-radius: 999px;
    padding: 0.35rem;
}

.new-search-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    margin-left: 0.3rem;
}

.new-search-input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 1rem;
    padding: 0.4rem 0.2rem;
}

.new-search-btn {
    border: none;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.new-city-tag {
    border: 1px solid rgba(255, 43, 122, 0.45);
    border-radius: 999px;
    padding: 0.38rem 0.9rem;
    text-decoration: none;
    color: var(--pink);
    font-weight: 600;
    font-size: 0.88rem;
}

.explore-cities-wrap {
    padding-top: 0.45rem;
}

.explore-cities-wrap .section-intro {
    margin-bottom: 1.2rem;
}

.city-grid .city-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 43, 122, 0.2);
    background: #fff;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.05);
}

.city-grid h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.city-grid p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.55;
}

.faq-section .faq-section-header {
    position: relative;
    padding-bottom: 0.9rem;
}

.faq-section .faq-section-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 43, 122, 0.12) 0%, rgba(224, 30, 104, 0.6) 50%, rgba(255, 43, 122, 0.12) 100%);
}

.faq-section .faq-section-header > h1,
.faq-section .faq-section-header > h2,
.faq-section .faq-section-header > h3,
.faq-section .faq-section-header > h4,
.faq-section .faq-section-header > h5,
.faq-section .faq-section-header > h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(42deg, #7a0a33 0%, #e01e68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq-section .faq-section-header > h1 { font-size: clamp(2.2rem, 3vw, 2.5rem); }
.faq-section .faq-section-header > h2 { font-size: 2rem; }
.faq-section .faq-section-header > h3 { font-size: 1.75rem; }
.faq-section .faq-section-header > h4 { font-size: 1.5rem; }
.faq-section .faq-section-header > h5 { font-size: 1.25rem; }
.faq-section .faq-section-header > h6 { font-size: 1.1rem; }

.faq-section .faq-content {
    margin-top: 0.85rem;
    padding-top: 0.2rem;
}

.faq-content h2,
.faq-content h3,
.faq-content h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 1rem 0 0.4rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.faq-content p {
    font-size: 0.98rem;
    color: #1a1a1a;
    margin-bottom: 0.85rem;
    line-height: 1.75;
}

.cta-band {
    background: radial-gradient(circle at 15% 50%, rgba(255, 43, 122, 0.25) 0%, transparent 40%),
        linear-gradient(120deg, #1a1a1a 0%, #b81457 55%, #e01e68 100%);
    border-radius: 1rem;
    text-align: center;
    color: #fff;
    padding: 2.15rem 1.4rem;
    border: 1px solid rgba(255, 43, 122, 0.35);
}

.cta-band-full {
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 2.15rem 1.4rem;
    margin-bottom: 0 !important;
    box-sizing: border-box;
}

.cta-band h2 {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

footer {
    background: #212529;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--pink), var(--purple));
        color: #fff;
        border: none;
        border-radius: 0.55rem;
        width: 40px;
        height: 40px;
    }

    .mobile-nav-overlay.active {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 996;
        top: 80px;
    }

    .nav-bar {
        position: fixed;
        top: 164px;
        left: 0;
        right: 0;
        width: 100vw;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        z-index: 2001 !important;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .nav-bar.active {
        max-height: calc(100vh - 142px) !important;
        height: auto;
        padding: 0.75rem 0 1rem;
        overflow-y: auto !important;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        overflow: visible !important;
    }

    .nav-dropdown {
        position: static;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.12);
    }

    .nav-menu > li.has-dropdown.active .nav-dropdown {
        max-height: 320px;
        padding: 0.6rem 0;
        margin-top: 0.4rem;
        overflow-y: auto;
    }

    .landing-hero {
        padding: 2rem 1rem 1.8rem;
        border-radius: 1.1rem;
    }

    .landing-main {
        padding-top: 0.75rem;
        padding-bottom: 2rem;
    }

    .hero-inner {
        max-width: 100%;
    }

    .landing-hero .dynamic-content h1,
    .landing-hero .dynamic-content h2,
    .landing-hero .dynamic-content h3,
    .landing-hero .dynamic-content h4,
    .landing-hero .dynamic-content h5,
    .landing-hero .dynamic-content h6 {
        padding-bottom: 1.2rem;
    }

    .landing-hero .dynamic-content h1 { font-size: clamp(1.85rem, 6.5vw, 2.4rem) !important; }
    .landing-hero .dynamic-content h2 { font-size: clamp(1.55rem, 6vw, 2rem) !important; }
    .landing-hero .dynamic-content h3 { font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important; }
    .landing-hero .dynamic-content h4 { font-size: clamp(1.2rem, 5vw, 1.55rem) !important; }
    .landing-hero .dynamic-content h5 { font-size: clamp(1.05rem, 4.5vw, 1.35rem) !important; }
    .landing-hero .dynamic-content h6 { font-size: clamp(0.95rem, 4vw, 1.2rem) !important; }

    .landing-hero .dynamic-content h1::after,
    .landing-hero .dynamic-content h2::after,
    .landing-hero .dynamic-content h3::after,
    .landing-hero .dynamic-content h4::after,
    .landing-hero .dynamic-content h5::after,
    .landing-hero .dynamic-content h6::after {
        width: 40px;
    }

    .landing-hero .dynamic-content p {
        font-size: 0.95rem !important;
        margin-top: 1.2rem !important;
    }

    .section-card {
        padding: 1.2rem;
    }

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

    .new-search-input-wrapper {
        flex-wrap: wrap;
        border-radius: 1rem;
        padding: 0.7rem;
    }

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

    .landing-posts-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.9rem;
        padding-bottom: 0.45rem;
        margin-left: 0;
        margin-right: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .landing-posts-row::-webkit-scrollbar {
        height: 6px;
    }

    .landing-posts-row::-webkit-scrollbar-thumb {
        background: rgba(224, 30, 104, 0.35);
        border-radius: 999px;
    }

    .landing-post-slide {
        flex: 0 0 82%;
        max-width: 82%;
        padding-left: 0;
        padding-right: 0;
        scroll-snap-align: start;
    }
}
