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

:root {
    --bg-dark: #2a0a0a;
    --bg-darker: #1a0505;
    --bg-card: #3a1515;
    --bg-card-hover: #4a1e1e;
    --primary: #c5a028;
    --primary-light: #e6c15c;
    --accent-red: #e53935;
    --accent-green: #25D366;
    --text-main: #f5e6d3;
    --text-muted: #c4a88a;
    --text-white: #ffffff;
    --border-color: rgba(197, 160, 40, 0.15);
    --border-card: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .premium-font {
    font-family: 'Playfair Display', serif;
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

nav.scrolled {
    background: rgba(26, 5, 5, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-call-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 120px 0 60px;
    background: var(--bg-darker);
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-call-now {
    background: var(--accent-green);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-whatsapp-hero {
    background: transparent;
    color: var(--accent-green);
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    border: 2px solid var(--accent-green);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary);
}

.hero-content > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* ========== SECTIONS ========== */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg-darker);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
}

/* ========== PROFILE GRID CARDS ========== */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.profile-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-card);
}

.profile-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.profile-info {
    padding: 1rem 1.2rem;
    text-align: center;
}

.profile-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.profile-info .profile-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.profile-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.8rem;
}

.profile-stars i {
    color: var(--primary);
    font-size: 0.85rem;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding-bottom: 0.3rem;
}

.profile-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: white;
}

.profile-action-btn.call-btn {
    background: var(--accent-red);
}

.profile-action-btn.whatsapp-btn {
    background: var(--accent-green);
}

/* ========== LONG PROFILE CARDS ========== */
.long-profile-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
}

.long-profile-img {
    width: 220px;
    min-width: 220px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.long-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.long-profile-content {
    flex: 1;
}

.long-profile-content .profile-name {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
}

.long-profile-content .profile-name a {
    color: var(--primary);
    text-decoration: none;
}

.long-profile-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.long-profile-content .highlight-link {
    color: var(--accent-red);
    font-weight: 600;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    border: 2px solid var(--accent-red);
    border-radius: 25px;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: transparent;
}

.book-now-btn:hover {
    background: var(--accent-red);
    color: white;
}

/* ========== ONLINE NOW SECTION ========== */
.online-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.online-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-card);
}

.online-img-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.online-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 10;
}

.online-status-dot {
    width: 8px;
    height: 8px;
    background: #05461d;
    border-radius: 50%;
}

.online-card-content {
    padding: 1.5rem;
    text-align: center;
}

.online-card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.online-card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.online-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.online-card-actions .btn {
    padding: 0.7rem 0.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-light);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-whatsapp {
    background: var(--accent-green);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-call {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ========== ALTERNATING SECTIONS ========== */
.alt-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.alt-section.reverse {
    flex-direction: row-reverse;
}

.alt-img {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-card);
}

.alt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-content {
    flex: 1;
}

.alt-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.alt-content h2 span {
    color: var(--primary);
}

.alt-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ========== LIFESTYLE SECTION ========== */
.lifestyle-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 2rem 0;
}

.lifestyle-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(42, 10, 10, 0.97) 40%, rgba(42, 10, 10, 0.7)), url('img/lifestyle1.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.lifestyle-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.luxury-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.lifestyle-section h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.lifestyle-section h2 span {
    color: var(--primary);
}

.lifestyle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border-card);
}

.feature-pill i {
    color: var(--primary);
    font-size: 1.3rem;
}

.feature-pill span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* ========== GALLERY / MASONRY ========== */
.gallery-section {
    padding: 4rem 0;
}

.container2 {
    max-width: 100%;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.masonry-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.masonry-item:hover img {
    filter: brightness(1);
}

.masonry-item.wide { grid-column: span 2; }
.masonry-item.tall { grid-row: span 2; }
.masonry-item.big { grid-column: span 2; grid-row: span 2; }

.masonry-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    opacity: 0;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.masonry-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== DETAIL TAGS ========== */
.long-profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.detail-tag {
    background: rgba(197, 160, 40, 0.12);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.long-profile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========== FOOTER ========== */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: var(--bg-darker);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    max-width: 1200px;
}

.tag-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
}

.tag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== FLOATING CONTACT ========== */
.floating-container {
    position: fixed;
    bottom: 2rem;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.floating-btn {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.float-whatsapp {
    background: var(--accent-green);
    color: white;
}

.float-call {
    background: var(--accent-red);
    color: white;
}

/* ========== CTA GROUP ========== */
.cta-group {
    display: flex;
    gap: 1.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .long-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .long-profile-img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    .long-profile-content p {
        text-align: left;
    }
    .book-now-btn {
        margin: 0 auto;
    }
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .alt-section, .alt-section.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    .alt-img {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1rem;
    }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 1.8rem; }
    .section-title h2 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .lifestyle-section h2 { font-size: 2rem; }
    .lifestyle-features { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; }
    .alt-content h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .profile-info h4 { font-size: 0.9rem; }
    .profile-info .profile-category { font-size: 0.75rem; }
    .profile-action-btn { width: 38px; height: 38px; font-size: 0.9rem; }
}

@media (max-width: 500px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .masonry-item.wide, .masonry-item.big, .masonry-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ========== NAV CTA BUTTONS ========== */
.nav-cta-btns {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.nav-btn-call, .nav-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.nav-btn-call {
    background: var(--accent-red);
    color: #fff;
}
.nav-btn-call:hover { background: #c0392b; }
.nav-btn-wa {
    background: var(--accent-green);
    color: #fff;
}
.nav-btn-wa:hover { background: #128C7E; }

/* ========== HERO CITY SELECT ========== */
.hero-city-select {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.city-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(197, 160, 40, 0.08);
    border: 1.5px solid rgba(197, 160, 40, 0.55);
    border-radius: 50px;
    padding: 0.85rem 1.6rem;
    max-width: 400px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(197,160,40,0.1);
}
.city-select-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 28px rgba(0,0,0,0.4), 0 0 0 3px rgba(197,160,40,0.15);
}
.city-select-wrapper > .fa-map-marker-alt {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.city-select-wrapper select {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    padding-right: 0.5rem;
}
.city-select-wrapper select::-ms-expand { display: none; }
.city-select-wrapper select option {
    background: #1a0505;
    color: #f5e6d3;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    font-family: 'Inter', sans-serif;
}
.city-select-wrapper select option:disabled {
    color: #8a7060;
}
.select-arrow {
    color: var(--primary);
    font-size: 0.8rem;
    pointer-events: none;
    flex-shrink: 0;
}

/* ========== LONG PROFILE: WHITE TEXT + 3D SHADOW ========== */
.long-profile-card {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08),
                0 8px 24px rgba(255,255,255,0.06),
                0 20px 50px rgba(0,0,0,0.6),
                0 -2px 10px rgba(255,255,255,0.04);
}
.lp-para {
    color: #ffffff !important;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

/* ========== IMPROVED BOOK NOW BUTTON ========== */
.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.5px;
}
.book-now-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}
.book-now-btn i {
    font-size: 1.1rem;
}

/* ========== IMPROVED ONLINE CARDS ========== */
.online-card {
    border: 1px solid rgba(197, 160, 40, 0.15);
    position: relative;
    overflow: hidden;
}
.online-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
}
.online-card-content h4 {
    color: var(--primary);
}
.online-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
}
.online-availability .dot {
    width: 7px; height: 7px;
    background: var(--accent-green);
    border-radius: 50%;
}

/* ========== SOLID FILL TAG BUTTONS ========== */
.tag-btn {
    padding: 0.6rem 1.2rem;
    background: #7b0303;
    color: var(--text-muted);
    border: 1px solid rgba(197, 160, 40, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
}
.tag-btn:nth-child(4n+1) { background: #870505; border-color: #c0392b55; }
.tag-btn:nth-child(4n+2) { background: #352a0a; border-color: #c5a02855; }
.tag-btn:nth-child(4n+3) { background: #0a1a35; border-color: #1a6adb55; }
.tag-btn:nth-child(4n+4) { background: #0a2a15; border-color: #25D36655; }
.tag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #4a2010;
}

/* ========== DELHI AREAS SECTION ========== */
.delhi-areas-section {
    background: var(--bg-darker);
}
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.area-card {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}
.area-card i {
    color: var(--primary);
    font-size: 0.85rem;
}
.area-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(197, 160, 40, 0.08);
}

/* ========== 18+ AGE VERIFICATION POPUP ========== */
.age-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 2, 2, 0.96);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.age-popup-box {
    background: linear-gradient(145deg, #2a0a0a, #1a0505);
    border: 1px solid rgba(197, 160, 40, 0.3);
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
}
.age-popup-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a028, #e6c15c);
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(197, 160, 40, 0.5);
}
.age-popup-box h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}
.age-popup-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.age-popup-box strong { color: var(--primary); }
.age-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.age-btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}
.age-enter {
    background: linear-gradient(135deg, #c5a028, #e6c15c);
    color: #000;
    box-shadow: 0 6px 20px rgba(197, 160, 40, 0.4);
}
.age-enter:hover {
    box-shadow: 0 8px 28px rgba(197, 160, 40, 0.65);
}
.age-exit {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid rgba(255,255,255,0.15);
}
.age-exit:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}
.age-popup-note {
    font-size: 0.78rem !important;
    color: rgba(196, 168, 138, 0.5) !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--bg-dark);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
}
.faq-item.active {
    border-color: rgba(197, 160, 40, 0.4);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.3rem 1.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.5;
    flex: 1;
}
.faq-item.active .faq-question span {
    color: var(--primary);
}
.faq-icon {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 160, 40, 0.35);
    display: grid!important;
    align-items: center;
    justify-content: center;
}
.faq-item.active .faq-icon {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
/* Swap + to × when active */
.faq-item.active .faq-icon::before {
    content: '\f068'; /* fa-minus */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}
.faq-answer p {
    padding: 0 1.6rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}
@media (max-width: 600px) {
    .faq-question { padding: 1rem 1.2rem; gap: 1rem; }
    .faq-question span { font-size: 0.9rem; }
    .faq-answer p { padding: 0 1.2rem 1.2rem; padding-top: 0.8rem; }
}
