/* ===== 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, -apple-system, sans-serif;
    color: #1a2e2a;
    background: #faf8f4;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; top: -100%; left: 16px; background: #065f46; color: #f5f0e8; padding: 8px 16px; border-radius: 0 0 8px 8px; z-index: 9999; font-size: 14px; }
.skip-link:focus { top: 0; }

/* ===== SECTION TAGS ===== */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #065f46;
    background: rgba(6, 95, 70, 0.08);
    border: 1px solid rgba(6, 95, 70, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #064e3b;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: #4a6358;
    max-width: 560px;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-emerald {
    background: #065f46;
    color: #f5f0e8;
    border-color: #065f46;
}
.btn-emerald:hover { background: #047857; border-color: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,95,70,0.25); }
.btn-cream {
    background: #f5f0e8;
    color: #065f46;
    border-color: #f5f0e8;
}
.btn-cream:hover { background: #ebe4d4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-outline-light {
    background: transparent;
    color: #f5f0e8;
    border-color: rgba(245,240,232,0.6);
}
.btn-outline-light:hover { background: rgba(245,240,232,0.12); border-color: #f5f0e8; transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.35s ease;
    padding: 16px 0;
}
.site-header.scrolled {
    background: rgba(250,248,244,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: #f5f0e8;
    transition: color 0.3s ease;
}
.site-header.scrolled .logo-text { color: #064e3b; }
.logo-accent { color: #34d399; }
.site-header.scrolled .logo-accent { color: #059669; }

/* NAV */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(245,240,232,0.85);
    transition: color 0.25s ease;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #34d399;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-menu a:hover { color: #f5f0e8; }
.nav-menu a:hover::after { width: 100%; }
.site-header.scrolled .nav-menu a { color: #4a6358; }
.site-header.scrolled .nav-menu a:hover { color: #065f46; }
.site-header.scrolled .nav-menu a::after { background: #065f46; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #f5f0e8;
    position: relative;
    transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #f5f0e8;
    left: 0;
    transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }
.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after { background: #065f46; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.82) 0%,
        rgba(6, 95, 70, 0.68) 50%,
        rgba(10, 120, 87, 0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    max-width: 720px;
}
.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(52,211,153,0.35);
    border-radius: 50px;
    background: rgba(52,211,153,0.08);
}
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #f5f0e8;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 400;
}
.hero-headline em {
    font-style: italic;
    color: #34d399;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(245,240,232,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245,240,232,0.5);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #065f46;
    padding: 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(245,240,232,0.1);
    transition: background 0.3s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(245,240,232,0.05); }
.trust-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #34d399;
    margin-bottom: 4px;
}
.trust-label {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.7);
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: #faf8f4;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 24px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(6,95,70,0.12);
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #065f46;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}
.about-content .lead {
    font-size: 1.1rem;
    color: #1a2e2a;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-content p {
    color: #4a6358;
    line-height: 1.8;
    margin-bottom: 12px;
}
.about-content em { color: #065f46; font-style: italic; }
.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(6,95,70,0.12);
}
.about-sig-img { border-radius: 8px; }
.about-sig-text { display: flex; flex-direction: column; }
.about-sig-text strong { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: #064e3b; }
.about-sig-text span { font-size: 0.85rem; color: #4a6358; }

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: #f0ebe0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.service-card {
    background: #faf8f4;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s ease;
    border: 1px solid rgba(6,95,70,0.06);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(6,95,70,0.1);
    border-color: rgba(6,95,70,0.12);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(6,95,70,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065f46;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: #065f46;
    color: #f5f0e8;
}
.service-card h3 {
    font-size: 1.2rem;
    color: #064e3b;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: #4a6358;
    line-height: 1.7;
}

/* ===== AREAS ===== */
.areas {
    padding: 100px 0;
    background: #faf8f4;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.area-card {
    border-radius: 20px;
    overflow: hidden;
    background: #faf8f4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(6,95,70,0.06);
}
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(6,95,70,0.12);
}
.area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.area-card:hover img { transform: scale(1.05); }
.area-card-content {
    padding: 20px 24px 24px;
}
.area-card-content h3 {
    font-size: 1.1rem;
    color: #064e3b;
    margin-bottom: 6px;
}
.area-card-content p {
    font-size: 0.9rem;
    color: #4a6358;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: #065f46;
}
.testimonials .section-tag {
    background: rgba(52,211,153,0.15);
    color: #34d399;
    border-color: rgba(52,211,153,0.3);
}
.testimonials .section-title { color: #f5f0e8; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.testimonial-card {
    background: rgba(245,240,232,0.07);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(245,240,232,0.1);
    transform: translateY(-4px);
}
.testimonial-quote-mark {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: #34d399;
    opacity: 0.4;
    margin-bottom: -8px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-weight: 600; color: #f5f0e8; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: #34d399; }

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,78,59,0.88), rgba(6,95,70,0.78));
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #f5f0e8;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    color: rgba(245,240,232,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: #f0ebe0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .lead {
    font-size: 1.05rem;
    color: #4a6358;
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(6,95,70,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065f46;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: #064e3b;
    margin-bottom: 2px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.contact-item p { font-size: 0.95rem; color: #4a6358; }
.contact-item a { color: #065f46; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: #047857; }

/* FORM */
.contact-form-wrap {
    background: #faf8f4;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(6,95,70,0.08);
    border: 1px solid rgba(6,95,70,0.06);
}
.contact-form h3 {
    font-size: 1.5rem;
    color: #064e3b;
    margin-bottom: 4px;
}
.form-note {
    font-size: 0.85rem;
    color: #4a6358;
    margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2e2a;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(6,95,70,0.15);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a2e2a;
    background: #fff;
    transition: all 0.25s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #065f46;
    box-shadow: 0 0 0 3px rgba(6,95,70,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0b0a8; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 24px;
    background: rgba(6,95,70,0.06);
    border-radius: 16px;
    margin-top: 16px;
    animation: fadeIn 0.4s ease;
}
.form-success strong { color: #064e3b; font-size: 1rem; }
.form-success span { color: #4a6358; font-size: 0.9rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== FOOTER ===== */
.site-footer {
    background: #042e23;
    color: rgba(245,240,232,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.logo-text-dark { color: #f5f0e8; }
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: #f5f0e8; }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-contact svg { color: #34d399; flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(245,240,232,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #f5f0e8; }

.footer-bottom {
    border-top: 1px solid rgba(245,240,232,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid,
    .areas-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #065f46;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.35s ease;
        box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { color: rgba(245,240,232,0.85) !important; font-size: 1rem; }
    .nav-menu a::after { background: #34d399 !important; }
    .nav-menu .btn-emerald { margin-top: 8px; }

    .hero-content { padding-top: 80px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-scroll { display: none; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-bottom: 1px solid rgba(245,240,232,0.1); }
    .trust-item:nth-child(2) { border-right: none; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 360px; }
    .about-image-accent { display: none; }

    .services-grid,
    .areas-grid,
    .testimonials-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .about, .services, .areas, .testimonials, .contact { padding: 64px 0; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none; }
}
