/* ===== CSS Custom Properties ===== */
:root {
    --green-50:  #ecfdf5;
    --green-100: #d1fae5;
    --green-200: #a7f3d0;
    --green-300: #6ee7b7;
    --green-400: #34d399;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --green-800: #065f46;
    --green-900: #064e3b;
    --green-950: #022c22;

    --cream:     #fefce8;
    --cream-light:#fef9c3;
    --cream-dark:#fef08a;
    --cream-text:#78716c;

    --accent:    #f59e0b;
    --accent-light:#fcd34d;

    --white: #ffffff;
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;

    --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* ===== Background Blobs ===== */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.bg-blob-1 {
    width: 600px; height: 600px;
    background: var(--green-400);
    top: -200px; right: -200px;
}
.bg-blob-2 {
    width: 400px; height: 400px;
    background: var(--accent);
    bottom: 20%; left: -100px;
}
.bg-blob-3 {
    width: 300px; height: 300px;
    background: var(--green-300);
    bottom: -100px; right: 10%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(254, 252, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 10px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green-800);
    line-height: 1.2;
}
.logo-light { color: var(--cream); }
.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.logo-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green-800);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover {
    background: var(--green-100);
    color: var(--green-700);
}
.nav-link-cta {
    background: var(--green-700);
    color: var(--white) !important;
    margin-left: 8px;
}
.nav-link-cta:hover {
    background: var(--green-600);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(254, 252, 232, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-800);
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-link:hover {
    color: var(--green-600);
    background: var(--green-100);
}
.mobile-link-cta {
    margin-top: 16px;
    background: var(--green-700);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-md);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 35%, var(--green-500) 65%, var(--green-400) 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.hero-shape-1 {
    width: 500px; height: 500px;
    background: var(--cream);
    top: -150px; right: -100px;
}
.hero-shape-2 {
    width: 300px; height: 300px;
    background: var(--accent);
    bottom: 15%; left: -80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.hero-shape-3 {
    width: 180px; height: 180px;
    background: var(--cream);
    top: 40%; right: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.hero-shape-4 {
    width: 100px; height: 100px;
    background: var(--accent-light);
    bottom: 30%; right: 25%;
    border-radius: 20px;
    transform: rotate(45deg);
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--cream);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-badge svg {
    width: 14px; height: 14px;
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-headline .text-accent {
    color: var(--cream-light);
    font-style: italic;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
}
.hero-stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: var(--accent);
    color: var(--green-950);
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--green-800);
}
.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Section Shared ===== */
.section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-600);
    background: var(--green-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--green-900);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Sites Section ===== */
.sites {
    background: var(--cream);
}
.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.site-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.site-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.site-card-1 .site-card-accent { background: linear-gradient(135deg, var(--green-500), var(--green-700)); }
.site-card-2 .site-card-accent { background: linear-gradient(135deg, var(--accent), #d97706); }
.site-card-3 .site-card-accent { background: linear-gradient(135deg, var(--green-400), var(--green-600)); }
.site-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.site-card-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-700);
}
.site-card-icon svg {
    width: 28px;
    height: 28px;
}
.site-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 10px;
}
.site-card > p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 20px;
}
.site-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.site-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-600);
    font-weight: 500;
}
.site-features li svg {
    width: 16px; height: 16px;
    color: var(--green-500);
    flex-shrink: 0;
}

.sites-decoration {
    position: absolute;
    bottom: -40px;
    right: -40px;
    pointer-events: none;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--green-200);
}
.geo-circle-1 {
    width: 200px; height: 200px;
    top: 0; right: 0;
    opacity: 0.5;
}
.geo-circle-2 {
    width: 120px; height: 120px;
    top: 40px; right: 60px;
    background: var(--green-100);
    opacity: 0.4;
}
.geo-square {
    position: absolute;
    width: 60px; height: 60px;
    background: var(--accent-light);
    opacity: 0.3;
    top: -20px; right: 80px;
    transform: rotate(30deg);
    border-radius: 8px;
}

/* ===== Amenities Section ===== */
.amenities {
    background: var(--green-800);
    color: var(--white);
}
.amenities .section-tag {
    background: rgba(255,255,255,0.12);
    color: var(--green-200);
}
.amenities .section-title {
    color: var(--white);
}
.amenities .section-desc {
    color: rgba(255,255,255,0.7);
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.amenity {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.amenity:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}
.amenity-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    line-height: 1;
}
.amenity-icon {
    width: 48px;
    height: 48px;
    background: var(--green-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--cream);
}
.amenity-icon svg { width: 24px; height: 24px; }
.amenity h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.amenity p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

.amenities-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    overflow: hidden;
}
.accent-block {
    position: absolute;
    border-radius: 50%;
}
.accent-block-1 {
    width: 300px; height: 300px;
    background: var(--green-600);
    bottom: -200px; left: -80px;
    opacity: 0.5;
}
.accent-block-2 {
    width: 200px; height: 200px;
    background: var(--accent);
    bottom: -120px; right: 10%;
    opacity: 0.15;
}
.accent-block-3 {
    width: 100px; height: 100px;
    background: var(--green-400);
    bottom: -60px; right: 25%;
    opacity: 0.2;
}

/* ===== Area Section ===== */
.area {
    background: var(--cream);
}
.area-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.area-content .section-tag { margin-bottom: 16px; }
.area-content .section-title { margin-bottom: 16px; text-align: left; }
.area-content .section-desc { margin-bottom: 36px; text-align: left; }
.area-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.area-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.area-highlight:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}
.area-highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}
.area-highlight-icon svg { width: 22px; height: 22px; }
.area-highlight h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 4px;
}
.area-highlight p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.area-images {
    position: relative;
}
.area-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.area-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.area-img-secondary {
    position: absolute;
    bottom: -32px;
    left: -32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}
.area-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.area-img-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}
.area-img-badge svg { width: 100%; height: 100%; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item-2 { grid-column: 6 / 9; grid-row: 1; }
.gallery-item-3 { grid-column: 9 / 13; grid-row: 1; }
.gallery-item-4 { grid-column: 6 / 9; grid-row: 2; }
.gallery-item-5 { grid-column: 1 / 6; grid-row: 2; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.cta-shape-1 {
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    top: -200px; left: -100px;
}
.cta-shape-2 {
    width: 250px; height: 250px;
    background: rgba(245,158,11,0.2);
    bottom: -100px; right: 5%;
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
}
.cta-shape-3 {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.1);
    top: 20%; right: 20%;
    border-radius: 16px;
    transform: rotate(45deg);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--cream);
    padding-bottom: 60px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info .section-desc { text-align: left; margin-bottom: 36px; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-700);
    margin-bottom: 2px;
}
.contact-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.contact-item a {
    color: var(--green-700);
    font-weight: 500;
    transition: var(--transition);
}
.contact-item a:hover { color: var(--green-500); }

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}
.map-link {
    display: block;
    position: relative;
}
.map-link img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 120, 87, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.map-overlay svg { width: 20px; height: 20px; }
.map-link:hover .map-overlay {
    background: rgba(4, 120, 87, 0.85);
}

/* Contact Form */
.contact-form-wrap {
    max-width: 100%;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 8px;
}
.form-note {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 28px;
    line-height: 1.6;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show {
    display: block;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--green-600);
}
.success-icon svg { width: 32px; height: 32px; }
.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--green-900);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===== Footer ===== */
.footer {
    background: var(--green-950);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--green-300);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}
.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--green-400);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--green-300); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .area-layout { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 100px 20px 60px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.4rem; }

    .section { padding: 72px 0; }
    .section-header { margin-bottom: 48px; }

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

    .area-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .area-content .section-title,
    .area-content .section-desc { text-align: center; }
    .area-content .section-tag { display: block; text-align: center; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }
    .gallery-item-1 { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item-2 { grid-column: 1; grid-row: 2; }
    .gallery-item-3 { grid-column: 2; grid-row: 2; }
    .gallery-item-4 { grid-column: 1; grid-row: 3; }
    .gallery-item-5 { grid-column: 2; grid-row: 3; }

    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-info .section-title,
    .contact-info .section-desc { text-align: center; }
    .contact-info .section-tag { display: block; text-align: center; }
    .contact-form-card { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .area-img-secondary { left: 0; bottom: -20px; }
    .area-img-badge { top: -10px; right: -10px; width: 60px; height: 60px; }
}
