/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a1a;
    background: #FAFAF5;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }
em { font-style: italic; }

/* ========== NAV ========== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(27, 67, 50, 0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #1B4332; }
.nav-logo-icon { color: #D4A843; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #1B4332; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #D4A843; transition: width 0.3s; }
.nav-links a:hover { color: #2D6A4F; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: #1B4332; color: #FAFAF5 !important; padding: 10px 22px; border-radius: 50px;
    font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #2D6A4F; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #1B4332; transition: transform 0.3s, opacity 0.3s; }

/* ========== HERO ========== */
.hero {
    min-height: 100vh; padding: 120px 24px 80px;
    background: #FAFAF5;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(27,67,50,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212,168,67,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-main-card {
    display: grid; grid-template-columns: 5fr 6fr;
    gap: 48px; align-items: center;
    background: #fff; border-radius: 24px;
    box-shadow: 0 4px 60px rgba(27,67,50,0.08), 0 1px 3px rgba(27,67,50,0.05);
    overflow: hidden;
}
.hero-image-wrap { position: relative; height: 100%; min-height: 520px; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px; border-radius: 20px;
    background: #D4A843; z-index: -1;
}
.hero-content { padding: 56px 56px 56px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(27,67,50,0.07); color: #1B4332;
    padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline {
    font-size: clamp(2rem, 4vw, 3.2rem); color: #1B4332;
    margin-bottom: 20px; line-height: 1.15;
}
.hero-headline em { color: #D4A843; font-style: italic; }
.hero-sub { font-size: 1.05rem; color: #4A4A4A; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    transition: all 0.25s ease; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary { background: #1B4332; color: #FAFAF5; }
.btn-primary:hover { background: #2D6A4F; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.25); }
.btn-secondary { background: transparent; color: #1B4332; border: 2px solid rgba(27,67,50,0.2); }
.btn-secondary:hover { border-color: #1B4332; background: rgba(27,67,50,0.04); }
.btn-gold { background: #D4A843; color: #1B4332; }
.btn-gold:hover { background: #C49B35; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.35); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* Floating Stat Cards */
.hero-stats {
    position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 16px; z-index: 3;
}
.stat-card {
    background: #fff; border-radius: 16px; padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(27,67,50,0.12);
    display: flex; flex-direction: column; gap: 4px; min-width: 170px;
    position: relative; overflow: hidden;
    animation: float 4s ease-in-out infinite;
}
.stat-card--1 { animation-delay: 0s; }
.stat-card--2 { animation-delay: 0.5s; }
.stat-card--3 { animation-delay: 1s; }
.stat-card--4 { animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.stat-card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 16px 16px 0 0;
}
.stat-card--1 .stat-card-accent { background: #1B4332; }
.stat-card--2 .stat-card-accent { background: #D4A843; }
.stat-card--3 .stat-card-accent { background: #2D6A4F; }
.stat-card--4 .stat-card-accent { background: #52B788; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: #1B4332; }
.stat-label { font-size: 0.78rem; color: #666; font-weight: 500; }

/* Geometric Accents */
.geo-circle {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.geo-circle--1 {
    width: 400px; height: 400px; top: -100px; left: -150px;
    background: rgba(27,67,50,0.04);
}
.geo-circle--2 {
    width: 200px; height: 200px; bottom: 10%; right: 5%;
    background: rgba(212,168,67,0.08);
}
.geo-tri {
    position: absolute; width: 0; height: 0;
    border-left: 60px solid transparent; border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(27,67,50,0.05);
    top: 15%; right: 2%; transform: rotate(15deg); pointer-events: none;
}
.geo-dots {
    position: absolute; bottom: 15%; left: 5%;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, rgba(212,168,67,0.4) 2px, transparent 2px);
    background-size: 16px 16px; pointer-events: none;
}

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: #D4A843;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #1B4332;
    margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: #555; max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }

/* ========== SERVICES ========== */
.services {
    padding: 100px 24px; background: #FAFAF5;
    position: relative; overflow: hidden;
}
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: #fff; border-radius: 20px; padding: 36px 28px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(27,67,50,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,67,50,0.1); }
.service-card-dot {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1B4332, #52B788); border-radius: 20px 20px 0 0;
}
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(27,67,50,0.07); color: #1B4332;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; color: #1B4332; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: #555; line-height: 1.65; }

.services-shape {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(27,67,50,0.03); pointer-events: none;
}
.services-shape--1 { bottom: -100px; right: -80px; }
.services-shape--2 {
    top: -50px; left: -100px; width: 200px; height: 200px;
    background: rgba(212,168,67,0.05); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 24px; background: #1B4332;
    position: relative; overflow: hidden;
}
.about .section-tag { color: #D4A843; }
.about .section-title { color: #FAFAF5; }
.about-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; }
.about-image-block { position: relative; }
.about-image-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-secondary {
    position: absolute; bottom: -30px; right: -30px;
    width: 55%; border-radius: 16px; overflow: hidden;
    border: 5px solid #1B4332; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.about-accent-block {
    position: absolute; top: -20px; left: -20px;
    background: #D4A843; border-radius: 16px; padding: 20px 24px;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.about-accent-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: #1B4332; line-height: 1; }
.about-accent-text { font-size: 0.75rem; font-weight: 600; color: #1B4332; text-align: center; line-height: 1.3; }
.about-content { position: relative; z-index: 2; }
.about-lead { font-size: 1.05rem; color: rgba(250,250,245,0.85); line-height: 1.75; margin-bottom: 16px; }
.about-content > p { font-size: 0.95rem; color: rgba(250,250,245,0.65); line-height: 1.75; margin-bottom: 32px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.highlight-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.88rem; font-weight: 500; color: rgba(250,250,245,0.9);
}
.highlight-item svg { color: #D4A843; flex-shrink: 0; }
.about-shape {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: rgba(212,168,67,0.04); bottom: -200px; left: -150px; pointer-events: none;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 24px; background: #FAFAF5;
    position: relative; overflow: hidden;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
}
.gallery-item {
    border-radius: 16px; overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,67,50,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; }
.gallery-item--1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item--2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item--3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item--4 { grid-column: 6 / 8; grid-row: 2 / 3; }
.gallery-item--5 { grid-column: 8 / 13; grid-row: 2 / 3; }
.gallery-shape {
    position: absolute; width: 250px; height: 250px; border-radius: 50%;
    background: rgba(27,67,50,0.03); top: 10%; right: -80px; pointer-events: none;
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 100px 24px; background: #F0F4F1;
    position: relative; overflow: hidden;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: #fff; border-radius: 20px; padding: 36px 28px;
    border: 1px solid rgba(27,67,50,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,67,50,0.08); }
.review-stars { display: flex; gap: 4px; color: #D4A843; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #1B4332; color: #D4A843;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: #1B4332; }
.review-location { font-size: 0.78rem; color: #888; }
.reviews-shape {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(212,168,67,0.05); bottom: -100px; left: -80px; pointer-events: none;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 24px; background: #1B4332;
    position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-circle {
    position: absolute; border-radius: 50%;
}
.cta-circle--1 { width: 500px; height: 500px; background: rgba(212,168,67,0.06); top: -200px; right: -100px; }
.cta-circle--2 { width: 300px; height: 300px; background: rgba(82,183,136,0.06); bottom: -100px; left: -50px; }
.cta-rect {
    position: absolute; width: 200px; height: 200px;
    background: rgba(255,255,255,0.02); border-radius: 30px;
    top: 50%; left: 10%; transform: rotate(30deg);
}
.cta-content { text-align: center; position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #FAFAF5; margin-bottom: 16px; }
.cta-desc { font-size: 1.05rem; color: rgba(250,250,245,0.7); line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact {
    padding: 100px 24px; background: #FAFAF5;
    position: relative; overflow: hidden;
}
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; }
.contact-desc { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: rgba(27,67,50,0.07); color: #1B4332;
    display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #1B4332; margin-bottom: 4px; }
.contact-item p { font-size: 0.92rem; color: #555; line-height: 1.5; }
.contact-item a { color: #2D6A4F; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: #1B4332; }
.contact-shape {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(27,67,50,0.03); top: -100px; right: -80px; pointer-events: none;
}

/* Contact Form */
.contact-form-card {
    background: #fff; border-radius: 20px; padding: 40px;
    box-shadow: 0 8px 40px rgba(27,67,50,0.08);
    border: 1px solid rgba(27,67,50,0.06);
}
.contact-form-card h3 { font-size: 1.4rem; color: #1B4332; margin-bottom: 8px; }
.contact-form-card > p { font-size: 0.9rem; color: #777; margin-bottom: 28px; }
.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: #1B4332; margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid rgba(27,67,50,0.15);
    border-radius: 10px; font-size: 0.9rem; font-family: inherit; color: #1a1a1a;
    background: #FAFAF5; transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #1B4332; box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    text-align: center; padding: 40px 20px; display: none;
}
.form-success h4 { font-size: 1.3rem; color: #1B4332; margin: 16px 0 8px; }
.form-success p { font-size: 0.9rem; color: #666; }

/* ========== FOOTER ========== */
.footer { background: #0D2818; color: rgba(250,250,245,0.7); padding: 72px 24px 0; }
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #FAFAF5; margin-bottom: 12px; }
.footer-logo-mark { color: #D4A843; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 8px; }
.footer-tagline { font-size: 0.82rem; color: rgba(250,250,245,0.45); margin-top: 12px; }
.footer-links h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: #FAFAF5; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #D4A843; }
.footer-contact h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: #FAFAF5; margin-bottom: 16px; }
.footer-contact p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 4px; }
.footer-contact a { color: #52B788; transition: color 0.2s; }
.footer-contact a:hover { color: #D4A843; }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(250,250,245,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: rgba(250,250,245,0.35);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal[data-state="hidden"] {
    opacity: 0;
    transform: translateY(30px);
}
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(30px); }
    .reveal[data-state="visible"] { opacity: 1; transform: translateY(0); }
}

/* ========== MOBILE MENU ========== */
@media (max-width: 1024px) {
    .hero-main-card { grid-template-columns: 1fr; }
    .hero-image-wrap { min-height: 360px; }
    .hero-content { padding: 40px 32px; }
    .hero-stats { position: static; transform: none; flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
    .stat-card { min-width: 140px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-block { max-width: 480px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(250,250,245,0.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 32px 24px; gap: 20px;
        transform: translateY(-120%); transition: transform 0.35s ease;
        box-shadow: 0 8px 30px rgba(27,67,50,0.1);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--1 { grid-column: 1 / 3; grid-row: auto; }
    .gallery-item--2, .gallery-item--3, .gallery-item--4, .gallery-item--5 { grid-column: auto; grid-row: auto; }
    .gallery-item { min-height: 200px; }
    .form-row { grid-template-columns: 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 12px; }
    .stat-card { min-width: 130px; padding: 16px 18px; }
    .geo-circle, .geo-tri, .geo-dots { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 16px 60px; }
    .hero-content { padding: 28px 20px; }
    .hero-headline { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .contact-form-card { padding: 24px; }
}
