/* ------------------------- */
/* MAIN STYLES (index.html)  */
/* ------------------------- */

:root {
    --bg: linear-gradient(to right, #e8fce8, #dffadf);
    --card: #f0fff4;
    --muted: #4d6652;
    --text: #0b1a10;
    --brand: #2ea44f;
    --brand-2: #a8e6a3;
    --warn: #ffd166;
    --max: 1200px;
    --radius: 18px;
    --shadow: 0 6px 18px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .2);
}

/* reset + base */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(100%, var(--max));
    margin-inline: auto;
    padding: clamp(16px, 2vw, 24px)
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--brand);
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    /* keeps proportions if the image isn’t square */
}


.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: conic-gradient(from 210deg, var(--brand), var(--brand-2));
    display: grid;
    place-items: center;
    box-shadow: var(--shadow)
}

nav a {
    opacity: .9
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: transform .15s ease, border-color .2s ease, background .2s ease;
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, .15)
}

.btn.brand {
    background: linear-gradient(180deg, var(--brand), #24953e);
    color: #fff;
    border-color: transparent
}

/* Add small icon style (minimal, fits cards) */
.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    margin-bottom: 8px;
}

.icon i {
    font-size: 18px;
}

/* Hero */
.hero {
    padding: 48px 0 24px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center
}

.eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .18em;
    font-size: .9rem
}

h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin: 12px 0 10px;
    color: var(--text);
}

.lead {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--muted);
    max-width: 58ch
}

.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.hero-card {
    position: relative;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 18px;
    box-shadow: var(--shadow)
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px
}

.tag {
    font-size: .85rem;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    padding: 8px 12px
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 22px
}

.stat {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    padding: 16px;
    text-align: center
}

.stat b {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--brand);
}

.stat p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .95rem
}

/* Sections */
section {
    padding: 56px 0
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

h2 {
    font-size: clamp(24px, 3.6vw, 36px);
    margin: 0;
    color: var(--text);
}

.sub {
    color: var(--muted)
}

.features,
.grid-3,
.grid-2,
.steps {
    display: grid;
    gap: 16px
}

.features {
    grid-template-columns: repeat(3, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.card {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow)
}

.card h3 {
    margin: 4px 0 8px;
    color: var(--text);
}

.card p {
    color: var(--muted)
}

/* ------------------------- */
/* Stats Section (Green Background) */
/* ------------------------- */
.stats-section {
    background-color: #16a34a;
    /* Green background */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.stats-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stats-section p.subheading {
    font-size: 18px;
    margin-bottom: 50px;
    color: #e2e8f0;
}

.stats-section .stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.stats-section .stat {
    background: none;
    /* removes card background */
    border: none;
    /* removes border */
    box-shadow: none;
    /* removes shadow */
    text-align: center;
    padding: 0;
}

.stats-section .stat h3 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.stats-section .stat p {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

/* Timeline */
.steps {
    grid-template-columns: repeat(4, 1fr);
    counter-reset: step
}

.step {
    position: relative;
    padding: 60px 18px 18px;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}

/* Pricing */
.pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.price {
    flex: 1 1 300px;
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.price:hover {
    transform: translateY(-4px);
}

.price .title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.price .amt {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
}

/* Removed bullets from pricing lists */
.price ul {
    margin: 10px 0;
    padding-left: 0;
    list-style: none;
    color: var(--muted);
}

/* FAQ */
details {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 14px
}

details+details {
    margin-top: 10px
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

summary::-webkit-details-marker {
    display: none
}

/* Contact */
form {
    display: grid;
    gap: 12px
}

/*input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: var(--text)
}*/

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    appearance: none; /* removes browser default arrow */
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}


.role-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 8px
}

.role-toggle .role {
    cursor: pointer
}

.role-toggle .role.active {
    outline: 2px solid var(--brand);
    outline-offset: 0
}

.dyn-fields.hidden {
    display: none
}

/* Footer */
footer {
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    color: var(--muted);
    background: #fff;
}

.map-wrap {
    margin-top: 10px
}

.map-embed {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow)
}

/* Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup {
    width: min(92vw, 420px);
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .features,
    .grid-3,
    .steps {
        grid-template-columns: 1fr 1fr
    }

    .stats {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none
    }

    .features,
    .grid-3,
    .steps {
        grid-template-columns: 1fr
    }
}

/* ------------------------- */
/* ABOUT US PAGE EXTRA STYLES */
/* ------------------------- */

/* About Section */
.about-section {
    background: linear-gradient(to right, #e8fce8, #dffadf);
}

/* Badge Box for Years of Excellence */
.badge-box {
    position: absolute;
    bottom: -15px;
    right: 20px;
    padding: 15px;
    text-align: center;
}

/* Light green cards for core values */
.bg-light-green {
    background-color: #f0fff4;
}

/* Contact Section */
.contact-section {
    background-color: #2ea44f;
}

/* ------------------------- */
/* Footer Section */
/* ------------------------- */

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background-color: #f8fdf5;
    text-align: center;
    padding: 60px 20px 20px;
}

.footer h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #064e3b;
}

.footer .cta-button {
    display: inline-block;
    background-color: #064e3b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: 0.3s ease;
}

.footer .cta-button:hover {
    background-color: #046c4e;
}

.footer .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer .footer-links a {
    text-decoration: none;
    color: #064e3b;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer .footer-links a:hover {
    color: #16a34a;
}

.footer .footer-policies {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer .footer-policies a {
    text-decoration: none;
    color: #1b4332;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer .footer-policies a:hover {
    color: #16a34a;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer .social-icons a {
    color: #000;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer .social-icons a:hover {
    color: #16a34a;
}

.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}