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

:root {
    --primary: #2D5A3D;
    --primary-light: #E8F0EA;
    --primary-dark: #1E3D2A;
    --accent: #2D5A3D;
    --accent-light: #E8F0EA;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EFEFEF;
    --gray-300: #D9D9D9;
    --gray-500: #6B6B6B;
    --gray-700: #404040;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-fill-mode: forwards;
}

.fade-up.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-left.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-right.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.fade-scale.animated {
    animation: fadeInScale 0.8s ease forwards;
}

.slide-up.animated {
    animation: slideInBottom 0.9s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ========== BUTTONS ========== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    position: relative;
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

.btn-whatsapp:active {
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-img.active {
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    padding: 4rem 2.5rem;
    max-width: 1000px;
    width: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px) saturate(150%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease forwards, pulse 3s ease-in-out infinite 2s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.8rem 1.3rem;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.8rem 1.3rem;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-feature:hover::before {
    width: 300px;
    height: 300px;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-6px) rotateX(5deg) scale(1.08);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(45, 90, 61, 0.95);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-urgency:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(45, 90, 61, 0.6);
    background: rgba(30, 61, 42, 0.95);
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* ========== URGENCY SECTION ========== */
.urgency {
    padding: 5rem 5%;
    background: var(--gray-50);
}

.urgency-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.urgency-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
}

.urgency-content > p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.checklist-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.checklist-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.urgency-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.urgency-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.urgency-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-light);
    border-radius: 50%;
    z-index: -1;
}

/* ========== CAROUSEL SECTION ========== */
.gallery {
    padding: 5rem 5%;
    background: var(--white);
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

.gallery-carousel {
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 300px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

.lightbox-nav svg {
    width: 30px;
    height: 30px;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

#lightboxImg {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 5rem 5%;
    background: var(--gray-50);
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.features-content > p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-highlight {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.features-highlight h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-highlight h3 svg {
    width: 20px;
    height: 20px;
}

.features-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.features-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.features-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

.features-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.features-badge small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========== FLOOR PLANS SECTION ========== */
.floor-plans {
    padding: 6rem 5%;
    background: var(--gray-50);
    position: relative;
}

.floor-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-300);
}

.floor-plans-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.floor-plans-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.floor-plans-header p:not(.section-label) {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.floor-plans-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.floor-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.floor-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.floor-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

.tab-icon {
    font-size: 2rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.floor-tab.active .tab-icon,
.floor-tab:hover .tab-icon {
    filter: grayscale(0);
}

.tab-title {
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tab-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.floor-plans-container {
    position: relative;
    min-height: 600px;
}

.floor-plan-card {
    display: none;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    animation: fadeInScale 0.6s ease forwards;
}

.floor-plan-card.active {
    display: grid;
}

.plan-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.plan-image-wrapper:hover .plan-image {
    transform: scale(1.05);
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-image-wrapper:hover .plan-overlay {
    opacity: 1;
}

.expand-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.expand-btn svg {
    width: 18px;
    height: 18px;
}

.expand-btn:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.4);
}

.plan-details {
    padding: 1rem 0;
}

.plan-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.plan-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.plan-features {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.plan-features li:hover {
    background: var(--white);
    border-left-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.plan-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.plan-features strong {
    color: var(--primary);
    font-weight: 600;
}

.floor-plans-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--primary-light);
    border-radius: 24px;
    border: 2px solid var(--primary);
}

.floor-plans-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

/* ========== NEIGHBORHOOD SECTION ========== */
.neighborhood {
    padding: 5rem 5%;
    background: var(--white);
}

.neighborhood-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.neighborhood-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.neighborhood-header h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--black);
}

.neighborhood-header p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

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

.amenity-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.amenity-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--primary);
}

.amenity-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.amenity-card:hover .amenity-icon svg {
    color: var(--white);
}

.amenity-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.amenity-card ul {
    list-style: none;
}

.amenity-card li {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.amenity-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* ========== IDEAL SECTION ========== */
.ideal {
    padding: 5rem 5%;
    background: var(--primary);
    color: var(--white);
}

.ideal-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ideal h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.ideal-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.ideal-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.ideal-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ideal-check svg {
    width: 16px;
    height: 16px;
    color: var(--black);
}

.ideal-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.ideal .btn-whatsapp {
    background: var(--white);
    color: var(--primary);
}

.ideal .btn-whatsapp:hover {
    background: var(--accent);
    color: var(--black);
}

/* ========== MAP SECTION ========== */
.map-section {
    width: 100%;
    background: var(--gray-100);
}

.map-container {
    width: 100%;
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========== FOOTER ========== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    animation: none;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .urgency-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-image {
        order: -1;
    }

    .floor-plan-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section - Mobile */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
    }

    .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-urgency {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .btn-whatsapp {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Urgency Section - Mobile */
    .urgency,
    .features,
    .floor-plans,
    .neighborhood,
    .ideal {
        padding: 3rem 5%;
    }

    .section-label {
        font-size: 0.8rem;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .urgency-content h2,
    .features-content h2 {
        margin-bottom: 1.5rem;
    }

    .urgency-content p,
    .features-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .checklist {
        gap: 1rem;
    }

    .checklist li {
        font-size: 0.95rem;
    }

    .urgency-cta,
    .features-cta {
        margin-top: 2rem;
    }

    /* Gallery Section - Mobile */
    .gallery-item {
        flex: 0 0 85%;
    }

    .gallery-controls {
        margin-top: 2rem;
        gap: 1rem;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
    }

    /* Floor Plans - Mobile */
    .floor-plans-tabs {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .floor-tab {
        width: 100%;
        padding: 1.25rem 1.5rem;
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .tab-title {
        font-size: 1rem;
    }

    .tab-desc {
        font-size: 0.8rem;
    }

    .floor-plans-container {
        min-height: auto;
    }

    .floor-plan-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .plan-image-wrapper {
        aspect-ratio: 3/2;
        min-height: 250px;
    }

    .plan-details {
        padding: 0;
    }

    .plan-details h3 {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }

    .plan-features li svg {
        width: 18px;
        height: 18px;
    }

    .floor-plans-cta {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .floor-plans-cta h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .floor-plans-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Amenities - Mobile */
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .amenity-card {
        padding: 1.5rem;
    }

    .amenity-card h3 {
        font-size: 1.1rem;
    }

    /* Ideal Section - Mobile */
    .ideal-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ideal-item {
        padding: 1.25rem;
    }

    /* Lightbox - Mobile */
    .lightbox-content {
        padding: 1rem;
        max-width: 95%;
        max-height: 90vh;
    }

    .lightbox-img {
        max-height: 70vh;
        object-fit: contain;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-counter {
        bottom: 0.5rem;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    /* Map - Mobile */
    .map-container {
        height: 350px;
    }

    /* Footer - Mobile */
    footer {
        padding: 2rem 5%;
    }

    footer p {
        font-size: 0.85rem;
    }

    /* Floating WhatsApp - Mobile */
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .features-badge {
        bottom: auto;
        top: -15px;
        left: auto;
        right: -15px;
    }

    .urgency-image::before {
        display: none;
    }
}

/* Extra small devices - Mobile Portrait */
@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
        border-radius: 24px;
    }

    .hero h1 {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-features {
        gap: 0.65rem;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .floor-tab {
        padding: 1rem;
        gap: 0.5rem;
    }

    .tab-icon {
        font-size: 1.35rem;
    }

    .floor-plan-card {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    .plan-image-wrapper {
        min-height: 220px;
    }

    .expand-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .gallery-item {
        flex: 0 0 90%;
    }
}
