/* ===============================
   GLOBAL BUTTON
================================ */

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn-primary {
    background: #0fb26a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0da35f;
}

.btn-outline {
    border: 2px solid #000704;
    color: #01130b;
    background: transparent;
}

.btn-outline:hover {
    background: #000704;
    color: #ffffff;
}

/* ===============================
   HERO SECTION
================================ */

.hero {
    position: relative;
    min-height: 80vh;
    background: url('../../images/hero-back.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
   background: rgba(10, 110, 70, 0.9);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #6ee7b7;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===============================
   INFO SECTION
================================ */

.info {
    background: #f9fafb;
    padding: 40px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box h2 {
    color: #0fb26a;
    font-size: 22px;
    margin-bottom: 6px;
}

.info-box p {
    font-size: 13px;
    color: #6b7280;
}

/* ===============================
   WHY SECTION
================================ */

.why {
    padding: 60px 20px;
    background: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-container h2 {
    font-size: 26px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.why-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 28px;
}

.why-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #6b7280;
}

/* ===============================
   CTA SECTION
================================ */

.cta {
    background: linear-gradient(135deg, #0fb26a, #059669);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 24px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (min-width: 992px) {

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content {
        max-width: 680px;
    }
}
