/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; }

/* ── Nav ── */
.nav-scrolled { transition: box-shadow 0.3s ease; }

.nav-link { position: relative; }
.nav-link:hover { background: transparent; }

/* ── Hero ── */
.hero-gradient {
    background: linear-gradient(135deg, #022C22 0%, #047857 40%, #059669 70%, #10B981 100%);
}
.hero-blob { animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-2 { animation-delay: -3s; animation-duration: 10s; }
.hero-blob-3 { animation-delay: -5s; animation-duration: 12s; }

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Badges ── */
.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #D1FAE5;
    color: #047857;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: #A7F3D0;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ── Service Cards ── */
.service-card { cursor: default; }

/* ── Testimonial Cards ── */
.testimonial-card { cursor: default; }

/* ── Inputs ── */
.input-field {
    background: white;
    border: 2px solid #D1FAE5;
    border-radius: 14px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #064E3B;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field::placeholder { color: #6EE7B7; }
.input-field:focus {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(5,150,105,0.1);
}

/* ── Primary Button ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #059669;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(5,150,105,0.3);
}
.btn-primary:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5,150,105,0.4);
}
.btn-primary:active { transform: translateY(0); }

/* ── Mobile Menu ── */
.mobile-menu-link { display: block; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .nav-scrolled { background: rgba(255,255,255,0.97); }
}
