/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #0A3A2A;
    /* Deep Emerald Green */
    --color-primary-light: #165b44;
    --color-accent: #D4AF37;
    /* Rich Gold */
    --color-accent-hover: #F3E5AB;
    /* Light Gold */
    --color-dark: #1A1A1A;
    /* Charcoal Black */
    --color-dark-muted: #2C2C2C;
    --color-light: #F9F9F9;
    /* Off White */
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    /* Dark Gray text */
    --color-text-light: #888888;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --font-brand: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

.section-light {
    background-color: var(--color-light);
}

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

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-slow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #1a5c43);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(10, 58, 42, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a5c43, var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 58, 42, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

.rounded-shadow {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Header & Navigation
   ==========================================================================*/
/* --- Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 0;
}

.header.scrolled {
    padding: 0.6rem 0;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.7rem 2rem;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1400px;
    margin: 0 auto;
    width: 94%;
}

.header.scrolled .nav-container {
    background: rgba(10, 58, 42, 0.85);
    backdrop-filter: blur(25px) saturate(140%);
    -webkit-backdrop-filter: blur(25px) saturate(140%);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(5px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition-slow);
}

.logo-emblem {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #F3E5AB 0%, var(--color-gold) 100%);
    color: var(--color-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.logo:hover .logo-emblem {
    transform: rotate(10deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-classic {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.brand-modern {
    font-family: var(--font-brand);
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: -2px;
}

.header.scrolled .brand-classic {
    color: var(--color-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--color-dark);
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.header.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

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

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: var(--color-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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


.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav-links .btn-primary {
    padding: 0.6rem 1.5rem;
    color: var(--color-white) !important;
    font-size: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: rgba(10, 58, 42, 0.05);
    border: 1px solid rgba(10, 58, 42, 0.1);
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    align-items: center;
    justify-content: center;
}

.header.scrolled .mobile-menu-btn {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 58, 42, 0.6), rgba(26, 26, 26, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--color-white);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-white);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Plots Section
   ========================================================================== */
.plots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plot-card {
    background-color: var(--color-dark-muted);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-slow);
    border-bottom: 4px solid transparent;
}

.plot-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--color-accent);
    background-color: rgba(26, 26, 26, 1);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.plot-card:hover .card-icon {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

/* ==========================================================================
   Amenities Section (Swiper)
   ========================================================================== */
.amenities-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .amenities-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.amenities-swiper {
    width: 100%;
    padding-bottom: 50px;
    /* Space for pagination bullets */
}

.swiper-slide {
    height: auto;
}

.amenity-item {
    background-color: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    transition: var(--transition-fast);
    height: 100%;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--color-accent);
}

.amenity-item i {
    font-size: 2rem;
    color: var(--color-accent);
    background-color: var(--color-primary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition-slow);
}

.amenity-item:hover i {
    transform: rotateY(360deg);
}

.amenity-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.amenity-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
}

/* ==========================================================================
   Investment Section
   ========================================================================== */
.investment {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(10, 58, 42, 0.9)), url('../assets/hero-bg.jpg') center/cover fixed;
}

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

.invest-point {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.point-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-info {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 3rem;
}

.contact-info .section-title {
    color: var(--color-white);
    text-align: left;
    font-size: 2.5rem;
}

.info-items {
    margin-top: 3rem;
}

.info-items .item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.info-items i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.contact-form-container {
    padding: 4rem 3rem;
    background-color: var(--color-white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(10, 58, 42, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #111;
    color: #888;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-micromarket-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-micromarket-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-micromarket-links a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.disclaimer {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   Animations & Reveal Classes
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {

    .about-grid,
    .amenities-wrapper,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .amenities-image {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        background-color: transparent;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -110%;
        width: 90%;
        margin: 0 5%;
        border-radius: 24px;
        height: auto;
        padding: 3rem 1.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.5);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-slow);
        z-index: 1001;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .plots-grid,
    .investment-grid {
        grid-template-columns: 1fr;
    }

    .amenities-features {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-emblem {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
        border-radius: 0;
        /* Crest uses clip-path now */
    }

    .brand-classic {
        font-size: 1.4rem;
    }

    .brand-modern {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .nav-container {
        padding: 0.6rem 1.5rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
}

/* ==========================================================================
   Virtual Tour Floating CTA
   ========================================================================== */
.vr-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vr-float i {
    font-size: 1.2rem;
}

.vr-float span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vr-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.6);
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
}

@media (max-width: 768px) {
    .vr-float span {
        display: none;
    }

    .vr-float {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
        bottom: 110px;
    }
}

/* ==========================================================================
   Luxury Brand Button
   ========================================================================== */
.btn-luxury {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.5);
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light));
    color: var(--color-white);
}

.brochure-dl i {
    animation: bounce-vertical 2s infinite;
}

@keyframes bounce-vertical {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* ==========================================================================
   WhatsApp Floating CTA
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Contact Map */
.contact-map {
    background-color: #f0f0f0;
    min-height: 400px;
}

.contact-map iframe {
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ==========================================================================
   Trust Badges Strip
   ========================================================================== */
.trust-badges-section {
    background-color: var(--color-dark);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-badges-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
}

.trust-badge-item i {
    font-size: 1.8rem;
    color: var(--color-accent);
}

.trust-badge-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.trust-badge-item span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    background: linear-gradient(135deg, var(--color-dark) 0%, #0d2d1e 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.stars {
    color: #f5c518;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.8;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
}

.author-avatar i {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.8;
}

.testimonial-author strong {
    display: block;
    color: var(--color-white);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Bank Partner Strip
   ========================================================================== */
.bank-partners-strip {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bank-strip-headline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.bank-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bank-logo-item {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.bank-logo-item:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.calc-box {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.calc-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.calc-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 1.5rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calc-header i {
    font-size: 1.5rem;
}

.calc-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.calc-body {
    padding: 2rem;
}

.calc-body .form-group {
    margin-bottom: 1.5rem;
}

.calc-body label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.calc-body input[type="number"],
.calc-body input[type="range"] {
    width: 100%;
}

.calc-body input[type="number"] {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.calc-body input[type="range"] {
    margin-top: 0.5rem;
    cursor: pointer;
}

.range-value {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0.3rem;
}

.calc-result {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #ddd;
    text-align: center;
}

.calc-result .label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.calc-result .value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.calc-result.highlight {
    background-color: rgba(46, 125, 50, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

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

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-brand);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 2px 8px;
    border-radius: 4px;
}

.header.scrolled .lang-btn {
    color: rgba(255, 255, 255, 0.6);
}

.lang-btn.active {
    color: var(--color-primary);
    background: rgba(10, 58, 42, 0.05);
}

.header.scrolled .lang-btn.active {
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.1);
}

.lang-btn:hover:not(.active) {
    color: var(--color-accent);
}

.divider {
    color: rgba(0, 0, 0, 0.1);
}

.header.scrolled .divider {
    color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Inventory Plot Map
   ========================================================================== */
.inventory-container {
    max-width: 900px;
    margin: 0 auto;
}

.svg-map-wrapper {
    position: relative;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.plot-svg {
    width: 100%;
    height: auto;
}

.plot {
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease;
    stroke: #fff;
    stroke-width: 2;
}

.plot.available {
    fill: #81c784;
}

.plot.sold {
    fill: #e57373;
    cursor: not-allowed;
}

.plot.fast-selling {
    fill: #ffd54f;
}

.plot:hover {
    filter: brightness(1.1);
}

.plot-label {
    font-size: 14px;
    font-weight: 700;
    fill: #fff;
    pointer-events: none;
    text-anchor: middle;
}

.plot-tooltip {
    position: absolute;
    background: var(--color-dark);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.inventory-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.legend-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.legend-box.available {
    background: #81c784;
}

.legend-box.sold {
    background: #e57373;
}

.legend-box.fast-selling {
    background: #ffd54f;
}

/* ==========================================================================
/* ==========================================================================
   Mobile Call Button & FOMO Ticker
   ========================================================================== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4);
    text-decoration: none;
    transition: var(--transition-medium);
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
    }
}



/* ==========================================================================
   Neighborhood & Connectivity Section
   ========================================================================== */
.neighborhood-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.connectivity-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.connectivity-card .card-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 1.5rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connectivity-card .card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.connectivity-table {
    padding: 1.5rem 2rem;
}

.conn-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.conn-item:last-child {
    border-bottom: none;
}

.conn-item .location {
    font-weight: 600;
    color: var(--color-dark);
}

.conn-item .time {
    color: var(--color-primary);
    font-weight: 700;
}

.highlight-group h4 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-group ul {
    list-style: none;
    padding: 0;
}

.highlight-group ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.highlight-group ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.seo-location-text {
    background: rgba(46, 125, 50, 0.04);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px dashed rgba(46, 125, 50, 0.2);
}

.seo-location-text p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .neighborhood-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   Investment ROI Dashboard
   ========================================================================== */
.roi-dashboard {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.roi-chart-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-chart-box h3 {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.chart-container {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chart-bar-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    gap: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: var(--transition-medium);
    max-width: 60px;
}

.chart-bar.highlight {
    background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.4);
}

.chart-bar span {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.chart-labels .highlight {
    color: var(--color-white);
}

.roi-stats-grid {
    display: grid;
    gap: 1.5rem;
}

.roi-stat-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-dark);
}

.roi-stat-card.highlight {
    background: linear-gradient(135deg, #f1f8e9, #ffffff);
    border-left: 5px solid var(--color-primary);
}

/* ==========================================================================
   Sticky Mobile CTA (Phase 5)
   ========================================================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 12px 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid rgba(13, 58, 42, 0.1);
}

@media (min-width: 769px) {
    .sticky-mobile-cta {
        display: none;
    }
}

.sticky-cta-btn {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-brand);
}

.sticky-cta-call {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.sticky-cta-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.sticky-cta-btn i {
    font-size: 16px;
}

.roi-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.roi-stat-card h4 {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    font-family: var(--font-heading);
}

.roi-stat-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   Lead Magnet Box
   ========================================================================== */
.lead-magnet-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 3rem;
    border-radius: 25px;
    color: var(--color-white);
}

.magnet-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.magnet-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.magnet-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-family: var(--font-heading);
}

.magnet-content p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .roi-dashboard {
        grid-template-columns: 1fr;
    }

    .magnet-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* ==========================================================================
   PHASE 17: CONVERSION PSYCHOLOGY & SCARCITY TRIGGERS
   ========================================================================== */



/* 2. Development Progress Timeline */
.progress-section {
    background-color: #f8fafc;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.progress-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-emerald);
}

.progress-info .pct {
    color: var(--color-gold);
}

.progress-bar-bg {
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

/* 3. Social Proof Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 3000;
}

.toast {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 10px;
    border-left: 4px solid var(--color-gold);
    animation: slideInLeft 0.5s ease forwards;
    max-width: 320px;
}

.toast.fade-out {
    animation: slideOutLeft 0.5s ease forwards;
}

/* ==========================================================================
   Connectivity Table Styles (Phase 5)
   ========================================================================== */
.connectivity-table-wrapper {
    margin-top: 30px;
    overflow-x: auto;
    background: var(--color-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.connectivity-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.connectivity-table th,
.connectivity-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.connectivity-table th {
    color: var(--color-primary);
    font-family: var(--font-brand);
    font-weight: 600;
}

.connectivity-table tr:last-child td {
    border-bottom: none;
}

.connectivity-table i {
    color: var(--color-accent);
    margin-right: 10px;
}

.distance-highlight {
    font-weight: 600;
    color: var(--color-primary);
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    color: var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #475569;
}

.toast-content strong {
    color: var(--color-emerald);
    display: block;
}

/* 4. Exit Intent Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    transform: translateY(50px);
    transition: all 0.4s cubic-bezier(0.1, 0.5, 0.5, 1);
    border-top: 8px solid var(--color-emerald);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.modal-icon.success {
    color: var(--color-emerald);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(16, 122, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

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

    .sticky-banner {
        font-size: 0.85rem;
    }

    .banner-flex {
        gap: 0.75rem;
    }
}

/* ==========================================================================
   Admin Mode Styles
   ========================================================================== */
body.admin-mode::before {
    content: 'ADMIN MODE ACTIVE - STATUS TOGGLE ENABLED';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #d43f3a;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    z-index: 10000;
    letter-spacing: 2px;
}

body.admin-mode .plot {
    cursor: crosshair;
    stroke: #ff0000;
    stroke-width: 2px;
    stroke-dasharray: 4;
    animation: dash 5s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 100;
    }
}