@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');

:root {
    --green: #1a7a3c;
    --green-dark: #0f5228;
    --green-mid: #2a9d52;
    --green-light: #e8f5ed;
    --accent: #f0a500;
    --text: #1a1f1c;
    --muted: #5a6b60;
    --border: #d4e8da;
    --white: #ffffff;
    --bg: #f5faf6;
    --shadow: 0 4px 24px rgba(26, 122, 60, .10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.15;
}

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--green-dark);
}

.logo-icon {
    height: 50px;
    width: auto;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
}


.logo-icon svg {
    width: 40px;
    height: 40px;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a.active {
    color: var(--green);
    font-weight: 600;
}

.nav-cta {
    background: var(--green) !important;
    color: white !important;
    padding: .55rem 1.3rem;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Poppins', sans-serif;
}

/* LAYOUT */
.page-wrapper {
    padding-top: 70px;
}

.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: white;
    padding: 4rem 2rem;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-inner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: .8rem;
}

.page-hero-inner p {
    opacity: .85;
    max-width: 600px;
    font-weight: 300;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .82rem;
    opacity: .65;
    margin-bottom: 1rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    opacity: .5;
}


section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--green);
    font-weight: 600;
    margin-bottom: .6rem;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    max-width: 560px;
    font-weight: 300;
    font-size: 1.05rem;
}

.section-head {
    margin-bottom: 3.5rem;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-sub {
    margin: 0 auto;
}

.bg-light {
    background: var(--bg);
}

/* BUTTONS */
.btn-primary {
    background: var(--accent);
    color: var(--text);
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 165, 0, .35);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: .85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: .2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, .1);
}

.btn-green {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: .75rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    transition: background .2s;
    cursor: pointer;
    border: none;
}

.btn-green:hover {
    background: var(--green-dark);
}

.btn-green-outline {
    display: inline-block;
    background: transparent;
    color: var(--green);
    padding: .75rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    border: 2px solid var(--green);
    transition: .2s;
}

.btn-green-outline:hover {
    background: var(--green);
    color: white;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
    color: white;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: white;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.hero h1 span {
    color: var(--accent);
}

.hero>div>div>p {
    font-size: 1.1rem;
    opacity: .88;
    margin-bottom: 2.2rem;
    max-width: 480px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 2rem;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: .82rem;
    opacity: .75;
    margin-top: .2rem;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 320px;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 1.5rem;
}

.hero-card:nth-child(1) {
    width: 280px;
    top: 20px;
    right: 0;
    animation: float1 4s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    width: 240px;
    bottom: 30px;
    left: 0;
    animation: float2 4s ease-in-out infinite 1s;
}

.hcard-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}

.hcard-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.hcard-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .3rem;
}

.hcard-sub {
    font-size: .8rem;
    opacity: .7;
}

.hcard-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 50px;
    margin-top: .6rem;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

/* SERVICE CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: block;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--green);
}

.sc-icon {
    width: 52px;
    height: 52px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.sc-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--green);
}

.sc-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.sc-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--green);
    font-family: 'Poppins', sans-serif;
}

.sc-link svg {
    width: 16px;
    height: 16px;
    fill: var(--green);
    transition: transform .2s;
}

.service-card:hover .sc-link svg {
    transform: translateX(4px);
}

.service-card.dark {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: white;
}

.service-card.dark .sc-icon {
    background: rgba(255, 255, 255, .15);
}

.service-card.dark .sc-icon svg {
    fill: white;
}

.service-card.dark .sc-desc {
    color: rgba(255, 255, 255, .7);
}

.service-card.dark .sc-link {
    color: var(--accent);
}

.service-card.dark .sc-link svg {
    fill: var(--accent);
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-img {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-img::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -80px;
    right: -80px;
}

.why-img h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.why-img p {
    opacity: .85;
    font-size: .95rem;
    font-weight: 300;
}

.why-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.metric-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.metric-label {
    font-size: .78rem;
    opacity: .7;
    margin-top: .2rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wp-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green);
}

.wp-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: .25rem;
}

.wp-desc {
    font-size: .9rem;
    color: var(--muted);
}

/* ABOUT SNIPPET */
.about-snippet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual-box {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: white;
    text-align: center;
}

.about-big-num {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.about-big-label {
    font-size: .95rem;
    opacity: .85;
    margin-top: .3rem;
    margin-bottom: 1.5rem;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-badge {
    background: rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 1rem;
}

.ab-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.ab-lbl {
    font-size: .75rem;
    opacity: .75;
    margin-top: .15rem;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-perks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 1.5rem 0;
}

.about-perk {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    color: var(--text);
}

.perk-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
}

.about-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform .25s, box-shadow .25s;
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.tcard-quote {
    font-size: 3rem;
    line-height: .8;
    color: var(--green-light);
    font-family: Georgia, serif;
    margin-bottom: .5rem;
}

.tcard-stars {
    color: var(--accent);
    font-size: .85rem;
    margin-bottom: .8rem;
    letter-spacing: .05em;
}

.tcard-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    min-width: 44px;
}

.av1 {
    background: #e8f5ed;
}

.av2 {
    background: #fef3c7;
}

.av3 {
    background: #e0f2fe;
}

.av4 {
    background: #fce7f3;
}

.av5 {
    background: #ede9fe;
}

.av6 {
    background: #fee2e2;
}

.tcard-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .88rem;
}

.tcard-role {
    font-size: .75rem;
    color: var(--muted);
    margin-top: .1rem;
}

.tcard.featured {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.tcard.featured .tcard-quote {
    color: rgba(255, 255, 255, .1);
}

.tcard.featured .tcard-stars {
    color: var(--accent);
}

.tcard.featured .tcard-text {
    color: rgba(255, 255, 255, .82);
}

.tcard.featured .tcard-author {
    border-top-color: rgba(255, 255, 255, .15);
}

.tcard.featured .tcard-name {
    color: white;
}

.tcard.featured .tcard-role {
    color: rgba(255, 255, 255, .55);
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: flex-start;
}

.faq-left p {
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.faq-contact-box {
    background: var(--green-light);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.faq-contact-box h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--green-dark);
}

.faq-contact-box p {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    color: var(--text);
    transition: background .2s;
    gap: 1rem;
}

.faq-q:hover {
    background: var(--bg);
}

.faq-q.open {
    background: var(--green);
    color: white;
}

.faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    transition: transform .3s, background .2s;
    line-height: 1;
}

.faq-q.open .faq-icon {
    background: rgba(255, 255, 255, .2);
    color: white;
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 1rem 1.5rem 1.2rem;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}

.faq-a.open {
    display: block;
}

/* CTA STRIP */
.cta-strip {
    background: var(--green-dark);
    color: white;
    text-align: center;
    padding: 4.5rem 2rem;
}

.cta-strip h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-strip p {
    opacity: .8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

/* FOOTER */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, .85);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: .875rem;
    opacity: .6;
    line-height: 1.8;
}

.footer-col h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-links a {
    font-size: .875rem;
    opacity: .6;
    transition: opacity .2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    opacity: .45;
}

.footer-green {
    color: #2a9d52;
}

/* RESPONSIVE */
@media(max-width:900px) {

    .hero-inner,
    .why-grid,
    .about-snippet,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hamburger {
        display: flex;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3.5rem 1.25rem;
    }
}



/* =========================
   ABOUT PAGE SPECIFIC
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-box {
    background: var(--green-light);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.big-icon {
    width: 100px;
    height: 100px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.big-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.vc-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vc-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.team-avatar {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.tc1 {
    background: #e8f5ed;
}

.tc2 {
    background: #fef3c7;
}

.tc3 {
    background: #e0f2fe;
}

.tc4 {
    background: #fce7f3;
}

.team-info {
    padding: 1.2rem;
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .4rem;
    font-family: 'Poppins', sans-serif;
}

.form-label span {
    color: #e53e3e;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: white;
    transition: border-color .2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}


.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .3rem;
    font-family: 'Poppins', sans-serif;
}

.form-sub {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
}

.btn-submit:hover {
    background: var(--green-dark);
}

.success-banner {
    display: none;
    background: var(--green-light);
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: var(--green-dark);
    font-weight: 500;
}

.success-banner.show {
    display: block;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: box-shadow .2s;
}

.contact-card:hover {
    box-shadow: var(--shadow);
}

.cc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--green);
}

.cc-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: .3rem;
}

.cc-text {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
}

.cc-text a {
    color: var(--green);
}

.map-box {
    background: var(--green-light);
    border-radius: 14px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    border: 1px solid var(--border);
    color: var(--muted);
}

.map-box svg {
    width: 36px;
    height: 36px;
    fill: var(--green);
    opacity: .4;
}

.map-box span {
    font-size: .82rem;
}

@media(max-width:900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}



.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem 0;
}

.svc-row+.svc-row {
    border-top: 1px solid var(--border);
}

.svc-visual {
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 260px;
}

.sv1 {
    background: linear-gradient(135deg, #e8f5ed, #c6e6d0);
}

.sv2 {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.sv3 {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

.sv4 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.sv5 {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.svc-visual-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    margin-bottom: 1rem;
}

.svc-visual-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--green);
}

.svc-visual h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
}

.svc-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.svc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    color: var(--muted);
}

.svc-features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
}

@media(max-width:900px) {
    .svc-row {
        grid-template-columns: 1fr;
    }
}

.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1.2rem;
}

.svc-opt {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: .9rem .75rem;
    cursor: pointer;
    text-align: center;
    background: white;
    transition: all .2s;
    position: relative;
}

.svc-opt:hover {
    border-color: var(--green);
    background: var(--green-light);
}

.svc-opt.selected {
    border-color: var(--green);
    background: var(--green-light);
}

.svc-opt.selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--green);
}

.svc-opt input {
    display: none;
}

.svc-opt-icon {
    font-size: 1.6rem;
    margin-bottom: .3rem;
}

.svc-opt-name {
    font-size: .78rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.3;
}

/* SUBMIT */
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: .5rem;
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* SUCCESS */
.success-state {
    display: none;
    text-align: center;
    padding: 2.5rem 1rem;
}

.success-state.show {
    display: block;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-state h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: .6rem;
}

.success-state p {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: .3rem;
}

.success-ref {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--green);
    font-size: 1.05rem;
    margin-top: .8rem;
}

.btn-again {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--green);
    color: white;
    padding: .75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    font-size: .9rem;
}

.btn-again:hover {
    background: var(--green-dark);
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem;
}

.sb-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .8rem;
}

.sb-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--green);
}

.sb-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .95rem;
}

.sb-text {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
}

.sb-contacts {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: .8rem;
}

.sb-contact {
    display: flex;
    gap: .6rem;
    align-items: center;
    font-size: .875rem;
    color: var(--muted);
}

.sb-contact svg {
    width: 15px;
    height: 15px;
    fill: var(--green);
    min-width: 15px;
}

.sidebar-card.dark {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.sidebar-card.dark .sb-title {
    color: white;
}

.sidebar-card.dark .sb-text {
    color: rgba(255, 255, 255, .78);
}

/* RESPONSIVE */
@media(max-width:960px) {
    .booking-inner {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

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

    .hamburger {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .form-card {
        padding: 1.5rem;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* FORM CARD */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: .3rem;
}

.form-card-sub {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-section-label {
    font-family: 'Poppins', sans-serif;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.8rem;
}

.form-section-label:first-of-type {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .4rem;
    font-family: 'Poppins', sans-serif;
}

.form-label span {
    color: #e53e3e;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: white;
    transition: border-color .2s;
    outline: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 122, 60, .07);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

.booking-section {
    padding: 3rem 2rem 5rem;
}

.booking-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: flex-start;
}

@media(max-width:960px) {
    .booking-inner {
        grid-template-columns: 1fr !important;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .service-options {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .sidebar {
        grid-template-columns: 1fr !important;
    }
}

/* ════════════════════════════════
   SCROLLING PARTNER BANNER
════════════════════════════════ */
.partner-strip {
    background: var(--green-dark);
    padding: 1rem 0;
    overflow: hidden;
    border-top: 3px solid var(--accent);
}

.partner-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .72);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    white-space: nowrap;
}

.partner-item svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}