/* ==========================================================================
   R7 PROJECTS - PREMIUM LUXURY REAL ESTATE STYLESHEET (VANILLA)
   ========================================================================== */

/* --- Custom Variables --- */
:root {
    --gold: #D4A017;
    --gold-light: #F5C758;
    --gold-deep: #B68E1A;
    
    /* Premium Dark Cinematic Palette */
    --bg-black: #0A0A0A; /* Moody Pitch Black */
    --bg-panel: #141414; /* Rich Dark Charcoal */
    --bg-light-panel: #1C1C1C; /* Slightly lighter dark panel for cards and inner elements */
    
    /* Contrast light typography */
    --text-white: #FFFFFF; /* Pristine white for contrast */
    --text-gray: #CCCCCC; /* Elegant warm gray for readability */
    --text-muted: #8E8E8A; /* Soft muted gray */
    
    --border-color: rgba(212, 160, 23, 0.25); /* Subtle luxury gold borders */
    --border-light: rgba(255, 255, 255, 0.08); /* Clean subtle border separator */
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BA5A;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Base Reset & Core Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    font-weight: 400;
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

strong {
    font-weight: 600;
    color: var(--text-white);
}

.gold-text {
    color: var(--gold);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-deep);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --- Shared Components & Utilities --- */
section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .container {
        padding: 0 20px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0; /* Premium strict edges */
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    border: 1px solid var(--whatsapp-green);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    border-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
}

/* --- Scroll-triggered Fade-in Style --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- STICKY NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    padding: 24px 0;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 24px;
    }
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 110px; /* Dominant, brightest element with clearly legible tagline (increased further by ~30%) */
    width: auto;
    max-width: 380px; /* slightly increased max-width for perfect proportions */
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: none !important; /* Pure transparency, no colored container, box, or filters! */
}

.nav-logo-img:hover {
    transform: scale(1.02);
}

.navbar.scrolled .nav-logo-img {
    height: 72px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-item a {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: rgba(255, 255, 255, 0.75); /* Elegant light text for dark backgrounds */
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 8px 0;
    position: relative;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--gold-light);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-light);
    transition: var(--transition-smooth);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-enquire-btn {
    padding: 11px 26px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 50px;
    background-color: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-enquire-btn:hover {
    background-color: var(--gold) !important;
    color: #0D0D0D !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.nav-enquire-btn::after {
    display: none !important;
    content: none !important;
}

/* Hamburger Menu Icon */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-item a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav-item a:hover,
.mobile-nav-item.active a {
    color: var(--gold);
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
}


/* ==========================================================================
   PAGE 1 — INDEX.HTML (HOME)
   ========================================================================== */

/* --- Hero Section --- */
.hero-home {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: var(--bg-black);
    position: relative;
    padding: 0;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9; /* Beautiful, high-end visibility */
    filter: brightness(0.72) contrast(1.05) saturate(0.95); /* Lightened for rich details, buildings, and lights */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker on the left (text contrast side) and light/vibrant on the right (landscape side) */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.22) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft, ultra-tasteful gold glow vignette highlight on the edges for premium richness */
    background: radial-gradient(circle, rgba(0,0,0,0) 55%, rgba(212, 160, 23, 0.08) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-content {
    max-width: 820px;
}

.hero-eyebrow {
    color: #D4A017 !important; /* Premium Gold */
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 3px !important;
    font-size: 13px !important;
    margin-bottom: 24px !important;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.hero-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1.5px;
    background-color: #D4A017; /* Rich subtle gold accent underline */
}

.hero-headline {
    margin-bottom: 24px;
    line-height: 1.15;
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 700;
}

.hero-headline span {
    font-weight: 700 !important;
}

.hero-white-text {
    color: #FFFFFF !important; /* Force pristine contrast white */
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.hero-subtext {
    font-size: clamp(15px, 1.8vw, 18px) !important;
    line-height: 1.8;
    color: #E2DFD8 !important; /* Warm champagne off-white (not pure gray) for superb legibility */
    margin-bottom: 40px;
    max-width: 680px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* --- Feature Strip --- */
.feature-strip {
    background-color: var(--bg-panel);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--bg-light-panel);
    padding: 40px 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15); /* Subtle gold hover shadow */
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    color: var(--gold);
    margin-bottom: 24px;
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold) !important;
    fill: none !important;
    display: block;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- Featured Projects Carousel --- */
.featured-projects {
    background-color: var(--bg-black);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 50px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.project-card {
    flex: 0 0 calc((100% - 60px) / 3); /* default 3 cards on desktop */
    background-color: var(--bg-light-panel); /* slightly lighter dark background */
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .project-card {
        flex: 0 0 calc((100% - 30px) / 2); /* 2 cards */
    }
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 100%; /* 1 card */
    }
}

.project-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.15); /* subtle gold hover shadow */
}

.project-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    width: 100%;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(13, 13, 13, 0.8) 100%);
}

.status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--gold);
    color: var(--bg-black);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

.project-info {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-location {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-title {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.project-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.project-btn {
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 11px;
}

/* Carousel Nav Controls */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.carousel-arrow {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-arrow:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-black);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* --- Stats Strip --- */
.stats-strip {
    background-color: var(--bg-panel);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    padding: 10px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin: 0;
}


/* ==========================================================================
   PAGE 2 — PROJECTS.HTML
   ========================================================================== */

.page-hero {
    background-color: var(--bg-panel);
    padding: 180px 0 100px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Breadcrumbs */
.breadcrumb-container {
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--gold);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 10px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--gold);
    color: var(--bg-black);
    background-color: var(--gold);
}

/* Projects Listing Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Refined Upcoming Status Badge style */
.status-badge.status-upcoming {
    background-color: rgba(10, 10, 10, 0.85) !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: absolute;
    top: 16px !important;
    left: 16px !important; /* Positioned top-left of the card */
    right: auto !important;
    z-index: 2;
}


/* ==========================================================================
   PAGE 3 — VISHNU-VIHAR.HTML (PROJECT DETAIL)
   ========================================================================== */

.project-detail-hero {
    padding: 180px 0 100px 0;
    background-color: var(--bg-black);
    border-bottom: 1px solid var(--border-light);
}

.project-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.project-title-area h1 {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 8px;
}

.project-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
}

.project-pricing-area {
    text-align: right;
}

@media (max-width: 768px) {
    .project-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .project-pricing-area {
        text-align: left;
    }
}

.price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold-light);
    font-weight: 500;
}

.project-detail-hero-media {
    width: 100%;
    aspect-ratio: 21/9;
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    max-height: 520px;
}

@media (max-width: 768px) {
    .project-detail-hero-media {
        aspect-ratio: 16/10;
    }
}

.project-detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Tabs Navigation */
.detail-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 40px;
    overflow-x: auto;
    gap: 24px;
}

.detail-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 8px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: var(--transition-fast);
}

.detail-tab-btn:hover {
    color: var(--text-white);
}

.detail-tab-btn.active {
    color: var(--gold);
}

.detail-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

/* Tabs Content */
.detail-tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.detail-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Overview Tab */
.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.overview-text h3 {
    margin-bottom: 24px;
    font-size: 26px;
}

.overview-highlights h3 {
    margin-bottom: 24px;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
}

@media (max-width: 480px) {
    .highlights-list {
        grid-template-columns: 1fr;
    }
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-gray);
}

.highlights-list li svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Amenities Tab */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

.amenity-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--gold);
    display: inline-block;
}

.amenity-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Layout Plan Tab */
.layout-plan-wrapper {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 0;
    text-align: center;
}

.layout-info-header {
    margin-bottom: 32px;
}

.layout-info-header h4 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 12px;
}

.layout-subtext {
    font-size: 15px;
    color: var(--text-white);
    max-width: 600px;
    margin: 0 auto 8px auto;
    line-height: 1.6;
}

.layout-format {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.layout-preview-box {
    width: 100%;
    max-width: 550px;
    margin: 0 auto 32px auto;
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.layout-preview-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 160, 23, 0.25);
    border-color: rgba(212, 160, 23, 0.4);
}

.layout-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.layout-preview-box:hover .layout-img {
    transform: scale(1.02);
}

.layout-zoom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.85);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.layout-preview-box:hover .layout-zoom-overlay {
    background: rgba(13, 13, 13, 0.95);
    opacity: 1;
}

@media (max-width: 768px) {
    .layout-plan-wrapper {
        padding: 24px 16px;
    }
    .layout-preview-box {
        max-width: 100%;
    }
    .layout-zoom-overlay {
        font-size: 11px;
        padding: 12px;
    }
}

/* Location Tab */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.map-wrapper {
    position: relative;
    border: 1px solid var(--border-light);
    height: 420px;
    width: 100%;
    background-color: var(--bg-panel);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 24px;
}

.nearby-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
}

@media (max-width: 480px) {
    .nearby-list {
        grid-template-columns: 1fr;
    }
}

.nearby-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    padding: 10px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
}

.nearby-list-item:hover {
    border-color: var(--gold);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item::after {
    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.7);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Real Plot Photos Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 36px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 28, 28, 0.6);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 1024px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { right: 10px; top: 10px; }
}


/* ==========================================================================
   PAGE 4 — SERVICES.HTML
   ========================================================================== */

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .services-intro-grid {
        grid-template-columns: 1fr;
    }
}

.services-intro-img-box {
    aspect-ratio: 16/10;
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}

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

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 48px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.service-detail-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-detail-card .service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-black);
    border: 1px solid var(--border-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-detail-card:hover .service-icon-wrapper {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}

.service-detail-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-detail-card p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-know-more {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: var(--transition-fast);
}

.service-know-more:hover {
    color: var(--gold-light);
}


/* ==========================================================================
   PAGE 5 — ABOUT.HTML
   ========================================================================== */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-intro-text h2 {
    margin-bottom: 24px;
}

.about-intro-text p {
    margin-bottom: 20px;
}

.about-intro-media {
    position: relative;
    border: 1px solid var(--border-light);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* Vision & Mission Block */
.vision-mission-section {
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

.vision-mission-card {
    background-color: var(--bg-black);
    border: 1px solid var(--border-light);
    padding: 48px;
    position: relative;
}

.vision-mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.vision-mission-card h3 {
    font-size: 26px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.vision-mission-card p {
    margin-bottom: 0;
    line-height: 1.8;
}

/* Focus Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.pillar-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: var(--bg-black);
    border: 1px solid var(--border-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.pillar-card:hover .pillar-icon-wrapper {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}

.pillar-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}


/* ==========================================================================
   PAGE 6 — CONTACT.HTML
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info Cards Area */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-premium {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 30px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition-fast);
}

.contact-card-premium:hover {
    border-color: var(--gold);
}

.contact-card-premium .contact-icon {
    width: 52px;
    height: 52px;
    background-color: var(--bg-black);
    border: 1px solid var(--border-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-text {
    flex-grow: 1;
}

.contact-card-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-card-text .contact-link {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    margin-bottom: 8px;
}

.contact-card-text .contact-link:hover {
    color: var(--gold);
}

.contact-card-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Form Panel */
.contact-form-panel {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    padding: 48px;
}

@media (max-width: 576px) {
    .contact-form-panel {
        padding: 32px 20px;
    }
}

.form-group-premium {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group-premium label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    background-color: var(--bg-black);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.15);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.contact-form-submit {
    width: 100%;
    margin-top: 10px;
}

/* Submission Indicator */
.form-redirect-indicator {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--whatsapp-green);
    margin-top: 20px;
    animation: fadeIn 0.4s ease forwards;
}

.form-redirect-indicator.active {
    display: block;
}

.redirect-spinner {
    width: 24px;
    height: 24px;
    border: 2.5px solid rgba(255, 255, 255, 0.2);
    border-top: 2.5px solid var(--whatsapp-green);
    border-radius: 50%;
    margin: 0 auto 12px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ==========================================================================
   FOOTER (ALL PAGES)
   ========================================================================== */
.footer {
    background-color: var(--bg-black);
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    padding: 80px 0 30px 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.footer-about-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--gold-deep);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 13.5px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-info {
    font-size: 13.5px;
    color: var(--text-gray);
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact-info svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--gold-deep);
    margin: 0;
}

@media (max-width: 576px) {
    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ==========================================================================
   FLOATING WHATSAPP BUTTON WITH POPUP
   ========================================================================== */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-trigger-btn {
    width: 56px;
    height: 56px;
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    border: none;
    position: relative;
}

.whatsapp-trigger-btn:hover {
    transform: scale(1.05);
    background-color: var(--whatsapp-green-hover);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-trigger-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Badge Indicator for Attention */
.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background-color: #FF3B30;
    border-radius: 50%;
    border: 2px solid var(--whatsapp-green);
}

/* Styled Floating Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 1000;
}

.whatsapp-popup.active {
    display: flex;
}

.whatsapp-popup-header {
    background-color: #0E2E19; /* premium luxury green blend */
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-logo {
    width: 40px;
    height: 40px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.whatsapp-popup-header-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-white);
}

.whatsapp-popup-header-info p {
    font-size: 11px;
    color: var(--whatsapp-green);
    margin: 0;
    font-weight: 500;
}

.whatsapp-popup-body {
    padding: 20px;
    background-color: var(--bg-black);
}

.whatsapp-popup-body p {
    font-size: 12.5px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.whatsapp-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.whatsapp-option-item a {
    display: block;
    padding: 12px 14px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 0;
    color: var(--text-white);
    text-decoration: none;
    font-size: 12.5px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.whatsapp-option-item a:hover {
    border-color: var(--gold);
    background-color: rgba(212, 160, 23, 0.05);
}

.whatsapp-popup-footer {
    padding: 12px 20px;
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .whatsapp-widget-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-popup {
        width: calc(100vw - 40px);
        right: 0;
    }
}
