:root {
    --primary: #009245;
    --primary-dark: #007334;
    --accent: #ff7a00;
    --bg-soft: #f5faf7;
    --bg-alt: #f7f7ff;
    --text-dark: #1f2933;
}

/* Global */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
}

.section-padding {
    padding: 60px 0;
}

.section-alt {
    background: var(--bg-soft);
}

.section-heading h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 720px;
    margin: 0 auto;
}

/* Topbar */
.topbar {
    background: var(--primary-dark);
    color: #fff;
}

.top-link {
    color: #fff;
    text-decoration: none;
}
.top-link:hover { text-decoration: underline; }

.flag-icon {
    width: 18px;
}

/* Navbar */
.main-nav {
    background: var(--primary);
}
.main-nav .navbar-nav .nav-link {
    color: #fff;
    margin: 0 4px;
    font-size: 0.92rem;
}
.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: #ffe5cf;
}
.logo {
    height: 40px;
}
.brand-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
}
.brand-subtitle {
    font-size: 0.72rem;
    color: #e5ffe9;
    display: block;
}
.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover {
    background: #ef6f00;
    color: #fff;
}

/* Hero */
.hero-section {
    background: linear-gradient(120deg, var(--primary-dark) 40%, #0b1727 100%);
    color: #fff;
    padding: 70px 0 60px;
}
.hero-title {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero-title span {
    color: #ffd54a;
}
.hero-subtitle {
    opacity: 0.9;
    max-width: 550px;
}
.badge-soft {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.hero-stats .stat-card {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: left;
    height: 100%;
}
.stat-value {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}
.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Hero Form */
.hero-form-card {
    background: #fff;
    color: #222;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.hero-form-card h3 {
    font-weight: 700;
}
.hero-form-card .form-label {
    font-size: 0.8rem;
    font-weight: 600;
}
.hero-form-card .form-control {
    font-size: 0.85rem;
}
.form-note {
    color: #777;
}

/* Info boxes */
.info-box {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(15,79,43,0.06);
}
.info-box h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

/* Services */
.services-tabs .nav-link {
    border-radius: 30px;
    padding: 8px 20px;
    margin: 2px 4px;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    background: #fff;
}
.services-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}
.services-grid .service-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,146,69,0.12);
    margin-bottom: 6px;
    font-size: 1.3rem;
    color: var(--primary-dark);
}
.service-card h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.service-card p {
    font-size: 0.8rem;
    color: #555;
}

/* Steps */
.steps-row .step-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
}
.step-number {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

/* Stats strip */
.stats-strip {
    background: var(--primary-dark);
    color: #fff;
    padding: 20px 0;
}
.stat-strip-item .strip-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}
.stat-strip-item .strip-label {
    font-size: 0.8rem;
    opacity: 0.92;
}

/* Benefits */
.benefit-list li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* Mini cards */
.mini-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%;
}
.mini-card h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.mini-card p {
    font-size: 0.8rem;
}

/* Partners */
.partners-strip {
    background: var(--bg-soft);
    padding: 40px 0;
}
.partner-logo {
    border-radius: 10px;
    background: #fff;
    padding: 14px 10px;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Footer */
.footer-section {
    color: #fff;
}
.footer-top {
    background: #1c2530;
    padding: 40px 0 20px;
}
.footer-bottom {
    background: #151b23;
    color: #ccc;
}
.footer-links li {
    margin-bottom: 4px;
}
.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-contact li {
    margin-bottom: 4px;
}

/* WhatsApp Floating Btn */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    z-index: 999;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
}
