/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; }

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #FDFCF8;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #059669;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #A7F3D0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background: #ECFDF5;
    border-color: #6EE7B7;
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FDFCF8;
    color: #047857;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #FDFCF8;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(253, 252, 248, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-outline-white:hover {
    background: rgba(253, 252, 248, 0.1);
    border-color: rgba(253, 252, 248, 0.8);
    transform: translateY(-2px);
}

/* ── Cards ──────────────────────────────────────────── */
.card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
}

/* ── Form Inputs ────────────────────────────────────── */
.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E8EDE6;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}
.input-field::placeholder { color: #9CA3AF; }
.input-field:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.input-field:hover:not(:focus) { border-color: #A7F3D0; }

select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

textarea.input-field { resize: vertical; min-height: 100px; }

/* ── Nav Links ──────────────────────────────────────── */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    border-radius: 1px;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Links ───────────────────────────────────── */
.mobile-link {
    text-decoration: none;
    transition: color 0.3s ease;
}
.mobile-link:hover { color: #059669; }

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
