/*
 * Design 36 - Lollipop Escorts
 * Theme: Bold Red, White & Black
 * Fonts: Playfair Display & Inter
 * Colors: #CC0000 (Red), #FFFFFF (White), #111111 (Black) — NO FOURTH COLOR
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,700&display=swap');

/* ============================================================
   CSS VARIABLES — RED · WHITE · BLACK ONLY
============================================================ */
:root {
    /* Primary Colors */
    --red:         #CC0000;
    --red-dark:    #990000;
    --red-deep:    #7A0000;
    --red-soft:    #FF1A1A;
    --white:       #FFFFFF;
    --black:       #111111;
    --black-soft:  #1A1A1A;
    --black-mid:   #2A2A2A;
    --black-light: #3A3A3A;

    /* Functional aliases */
    --bg-body:      var(--white);
    --bg-dark:      var(--black);
    --bg-card:      var(--white);
    --bg-dark-card: var(--black-soft);
    --accent:       var(--red);
    --accent-hover: var(--red-dark);
    --text-on-dark: var(--white);
    --text-on-light: var(--black);
    --border-light: rgba(0,0,0,0.10);
    --border-dark:  rgba(255,255,255,0.10);
    --border-red:   var(--red);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', sans-serif;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
    --shadow-md:  0 6px 20px rgba(0,0,0,0.16);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.22);
    --shadow-red: 0 4px 18px rgba(204,0,0,0.30);

    /* Transitions */
    --transition: 0.28s cubic-bezier(0.25,0.8,0.25,1);

    /* Border Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   18px;
    --radius-full: 9999px;
}

/* ============================================================
   1. RESET & BASE
============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-on-light);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Section containers */
.section-container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   2. TYPOGRAPHY HELPERS
============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.section-header-row {
    text-align: center;
    margin-bottom: 36px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.title-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--black-light);
    margin-top: 10px;
    font-weight: 400;
}

/* ============================================================
   3. BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* Primary — Red fill */
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(204,0,0,0.40);
}

/* Secondary — White outline on dark, or Black outline on light */
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-2px);
}

/* Card Book — small red */
.btn-card-book {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    padding: 7px 16px;
    font-size: 0.78rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}
.btn-card-book:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Profile Book — full-width red */
.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    padding: 10px 16px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-top: 12px;
    letter-spacing: 0.5px;
}
.btn-book:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

/* ============================================================
   4. NAVBAR
============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 3px solid var(--red);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 62px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}

.logo-lollipop {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--red);
    font-style: italic;
    letter-spacing: 0.5px;
}

.logo-escorts {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.80);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--white);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
}

/* Phone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: var(--white);
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-phone svg {
    width: 14px;
    height: 14px;
}

.nav-phone:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    order: 3;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   5. HERO SECTION
============================================================ */
.hero-section {
    position: relative;
    background: var(--black);
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.92) 0%,
        rgba(100,0,0,0.72) 50%,
        rgba(0,0,0,0.92) 100%
    );
    z-index: 1;
}

/* Decorative model images on left and right */
.hero-models {
    position: absolute;
    inset: 0;
    /* display: flex; */
    justify-content: space-between;
    align-items: flex-end;
    z-index: 0;
    pointer-events: none;
}

.hero-model {
    width: 100%; 
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: top center; */
    opacity: 0.55;
    filter: grayscale(20%);
} 

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 60px 24px;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.6); }
    50%       { box-shadow: 0 0 0 8px rgba(204,0,0,0); }
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.hero-site-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    font-style: italic;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   6. TOP 10 SECTION
============================================================ */
.top10-section {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.top10-section .section-title {
    color: var(--white);
}

/* Carousel */
.carousel-outer {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.carousel-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Arrow Buttons */
.carousel-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    z-index: 5;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--red-dark);
    transform: scale(1.08);
}

.carousel-arrow:disabled {
    background: var(--black-mid);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
}

/* Top Card */
.top-card {
    flex: 0 0 220px;
    min-width: 220px;
    background: var(--black-soft);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.top-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.top-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: var(--red);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.top-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.top-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--black-soft));
}

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

.top-card:hover .top-card-img img {
    transform: scale(1.07);
}

.top-card-body {
    padding: 12px 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.top-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.top-card-type {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.50);
    margin-top: 2px;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot:hover {
    background: rgba(255,255,255,0.50);
}

.dot.active {
    background: var(--red);
    transform: scale(1.25);
}

/* ============================================================
   7. ALL ESCORTS SECTION
============================================================ */
.escorts-section {
    padding: 30px 0;
    background: var(--white);
}

.escorts-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.escorts-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--red);
    border-radius: var(--radius-full);
}

.escorts-main-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
}

.escorts-intro {
    font-size: 0.98rem;
    color: var(--black-light);
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

/* Escorts Grid */
.escorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 18px;
    row-gap: 52px; /* extra row gap for drip effect below each card */
}

/* ============================================================
   PROFILE CARD — REDESIGNED MELTING CORNER DRIP STYLE
============================================================ */
.profile-card {
    position: relative;
    border-radius: 30px;
    border: 3.5px solid var(--red);
    background: var(--black);
    overflow: visible;              /* Let the drip hang outside the card */
    box-shadow: var(--shadow-md);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.35s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.profile-card:hover {
    border-color: var(--red-soft);
    box-shadow: 0 12px 32px rgba(204, 0, 0, 0.35), var(--shadow-lg);
    transform: translateY(-6px);
}

/* Image Wrapper: Clips the image and overlays inside the card's rounded border */
.card-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 26px; /* Fits perfectly inside the 30px border */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

/* Top corner rating badge or ranking */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Overlay Info Bar: Always visible, matching the pinkish-red gradient in reference */
.card-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(204, 0, 0, 0.95) 0%,
        rgba(204, 0, 0, 0.75) 45%,
        rgba(204, 0, 0, 0.65) 75%,
        transparent 100%
    );
    padding: 60px 18px 20px;
    z-index: 5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 27px;
}

.profile-card:hover .card-info-bar { 
    transform: translateY(8px);
}

/* Olivia / Rose styling: bold sans-serif, italic, white text */
.card-name {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-transform: capitalize;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

/* Yellow rating stars */
.card-stars {
    color: #FFCC00;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Location text: bold white */
.card-loc {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Hover overlay: fades in on hover inside the rounded border */
.card-hover {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 8;
    pointer-events: none;
}

.profile-card:hover .card-hover {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hover-name {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2px;
}

.hover-stats {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    margin-bottom: 4px;
}

.hover-stats strong {
    color: var(--white);
}

.btn-hov-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90%;
    padding: 12px 16px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hov-call:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.45);
}

.btn-hov-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90%;
    padding: 11px 16px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.btn-hov-wa:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Melting Drip effect on the bottom-right corner using melt.png */
.profile-card::after {
    content: '';
    position: absolute;
    /* bottom: -32px; */
    /* right: 14px;
    width: 90px;
    height: 40px; */
    bottom: -50px;
    right: 14px;
    width: 125px;
    height: 70px;
    background-image: url('melt.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -4;
    transition: var(--transition);
}

.profile-card:hover::after {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(204, 0, 0, 0.5));
}


/* ============================================================
   8. LOCATIONS SECTION
============================================================ */
.locations-section {
    padding: 60px 0;
    background: var(--black);
}

.locations-section .section-title {
    color: var(--white);
}

.locations-section .section-subtitle {
    color: rgba(255,255,255,0.55);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.location-pill {
    display: inline-block;
    padding: 9px 20px;
    background: var(--black-soft);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.80);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.location-pill:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* ============================================================
   9. ABOUT SECTION
============================================================ */
.about-section {
    padding: 70px 0;
    background: var(--white);
    border-top: 4px solid var(--red);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-para {
    font-size: 0.96rem;
    color: var(--black-light);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--black);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--red);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.feature-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

/* CTA Box */
.about-cta-box {
    position: sticky;
    top: 80px;
}

.cta-box-inner {
    background: var(--black);
    border: 2px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-red);
}

.cta-box-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.cta-box-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-box-phone {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.cta-box-hours {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}

.cta-box-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: var(--radius-full);
}

/* ============================================================
   10. FOOTER
============================================================ */
.site-footer {
    background: var(--black);
    border-top: 3px solid var(--red);
}

.footer-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 50px 20px 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 24px;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 14px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.60);
    transition: var(--transition);
}

.footer-links-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.footer-wa {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.60);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-wa:hover {
    color: var(--white);
}

.footer-hours {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.40);
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.40);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25) !important;
}

/* ============================================================
   11. RESPONSIVE — Tablet (≤1024px)
============================================================ */
@media (max-width: 1024px) {
    .escorts-grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 14px;
        row-gap: 52px;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-box {
        position: static;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .hero-tagline {
        font-size: 2.6rem;
    }

    .top-card {
        flex: 0 0 180px;
        min-width: 180px;
    }
}

/* ============================================================
   12. RESPONSIVE — Small Tablet (≤768px)
============================================================ */
@media (max-width: 768px) {
    /* Navbar */
    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: var(--black);
        border-top: 2px solid var(--red);
        flex-direction: column;
        padding: 16px 0;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
.card-name {
    font-size: 1.1rem;
}

    .card-info-bar {
        padding: 44px 11px 0px ;
    }



    .profile-card::after{
        right: 2px ;
        width: 68px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .nav-links li a::after {
        display: none;
    }

    /* Hero */
    .hero-section {
        min-height: 460px;
    }

    .hero-model-left,
    .hero-model-right {
        display: none;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.7rem;
    }

    /* Top 10 */
    .top-card {
        flex: 0 0 160px;
        min-width: 160px;
    }

    .top-card-img {
        height: 190px;
    }

    /* Escorts */
    .escorts-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 52px;
    }

    .escorts-main-title {
        font-size: 2rem;
    }

    /* About */
    .about-features {
        gap: 12px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================================
   13. RESPONSIVE — Mobile (≤480px)
============================================================ */
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1.65rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .escorts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .profile-name {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 8px;
    }

    .top-card {
        flex: 0 0 145px;
        min-width: 145px;
    }

    .top-card-img {
        height: 170px;
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
}

/* ============================================================
   14. SCROLL ANIMATIONS
============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.profile-card,
.top-card,
.feature-item,
.location-pill {
    animation: fadeInUp 0.4s ease both;
}

/* ============================================================
   15. 18+ AGE VERIFICATION POPUP
============================================================ */
.age-verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.age-verification-card {
    background: #1a1a1a;
    border: 3px solid var(--red);
    border-radius: 28px;
    padding: 40px 30px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(204, 0, 0, 0.3);
    position: relative;
}
.age-verification-card::after {
    content: '';
    position: absolute;
    bottom: -62px;
    right: 14px;
    width: 110px;
    height: 60px;
    background-image: url('melt.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 4;
}
.age-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.age-warning {
    color: var(--red);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.age-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.age-btn {
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.age-btn-accept {
    width: 200px;
    padding: 14px 28px;
    font-size: 1.05rem;
    background: var(--red);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}
.age-btn-accept:hover {
    background: var(--red-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204, 0, 0, 0.5);
}
.age-btn-exit {
    width: 100px;
    padding: 8px 16px;
    font-size: 0.85rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.age-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}
