@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
    --bg-main: #ffffff;
    --hero-bg: #e1efde;
    --text-dark: #1b3d2b;
    --text-secondary: #153c2b;
    --text-primary: #153c2b;
    --button-bg: #153c2b;
    --card-bg: #ffffff;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 96%;
    max-width: 1700px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(21, 60, 43, 0.08);
    box-shadow: 0 1px 0 rgba(21, 60, 43, 0.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand img {
    width: auto;
    max-width: 200px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav > a:not(.btn-quote),
.site-nav .dropdown > a {
    text-decoration: none;
    color: #3d5c4f;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.site-nav > a:not(.btn-quote):hover,
.site-nav .dropdown > a:hover {
    color: #153c2b;
}

.site-nav a.active {
    color: #153c2b;
    font-weight: 600;
}

.site-nav a.active:not(.btn-quote)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    width: 28px;
    height: 2px;
    background: #3e7e60;
    border-radius: 999px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: #f4fbf6;
    color: var(--text-primary) !important;
}

.arrow {
    font-size: 10px;
    margin-left: 2px;
    vertical-align: middle;
}

.btn-quote {
    background: #153c2b;
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 8px;
    text-transform: none;
    text-decoration: none;
    letter-spacing: 0;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none;
    box-shadow: 0 4px 12px rgba(21, 60, 43, 0.18);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-quote:hover {
    background: #1e5240;
    box-shadow: 0 6px 16px rgba(21, 60, 43, 0.22);
    transform: translateY(-1px);
}

.btn-quote::after {
    display: none;
}

.home-frame {
    width: 100%;
}

.hero {
    background:
        radial-gradient(ellipse 70% 55% at 85% 20%, rgba(126, 176, 146, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(21, 60, 43, 0.06) 0%, transparent 50%),
        linear-gradient(165deg, #f6faf7 0%, #eef4ef 48%, #f3f8f5 100%);
    padding: 44px 0 52px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.45;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: -40px;
    right: 8%;
    background: rgba(126, 176, 146, 0.35);
    animation: hero-float 8s ease-in-out infinite;
}

.hero::after {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 4%;
    background: rgba(21, 60, 43, 0.08);
    animation: hero-float 10s ease-in-out infinite reverse;
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, -16px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(20px, 2.5vw, 36px);
    align-items: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(52px, 5vw, 68px);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 800;
    color: var(--text-primary);
}

h1 span.highlight {
    color: var(--text-secondary);
}

.hero-copy {
    max-width: 100%;
    padding-top: 0;
    padding-left: clamp(0px, 1vw, 10px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 16px;
    padding: 6px 10px 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #4a6356;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(62, 120, 97, 0.18);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(15, 47, 34, 0.06);
    backdrop-filter: blur(8px);
}

.hero-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #1d6b4f;
    background: #edf7f1;
    border: 1px solid rgba(62, 120, 97, 0.2);
    border-radius: 999px;
    line-height: 1;
}

.hero-verified-badge svg {
    width: 16px;
    height: 16px;
    color: #2d8a63;
    flex-shrink: 0;
}

.hero-trust-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 28px;
}

.hero-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.hero-trust-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #b8956b;
}

.hero-trust-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.hero-title {
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    max-width: 580px;
    color: #0f2f22;
    font-weight: 800;
}

.hero-title .highlight {
    color: #2d6b52;
    font-weight: 800;
}

.hero-description {
    color: #4a6356;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 520px;
    font-weight: 400;
}

h2 {
    font-size: clamp(32px, 4vw, 40px);
    margin: 0 0 16px;
    color: var(--text-primary);
}

h3 {
    font-size: clamp(24px, 3vw, 27px);
    margin: 0 0 12px;
    color: var(--text-secondary);
}

p {
    margin: 0 0 14px;
    font-size: 20px;
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary,
.btn-card,
.btn-quote,
.btn-send-inquiry {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before,
.btn-card::before,
.btn-quote::before,
.btn-send-inquiry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.28) 8%, rgba(255, 255, 255, 0) 42%);
    transform: translateX(-130%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-card:hover::before,
.btn-quote:hover::before,
.btn-send-inquiry:hover::before {
    transform: translateX(130%);
}

.btn-primary {
    background: var(--button-bg);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #153c2b;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 4px 14px rgba(21, 60, 43, 0.2);
    color: #ffffff;
    border: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-btn-primary:hover {
    background: #1e5240;
    box-shadow: 0 6px 18px rgba(21, 60, 43, 0.25);
    transform: translateY(-1px);
    color: #ffffff;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #153c2b;
    background: rgba(255, 255, 255, 0.65);
    border: 1.5px solid rgba(21, 60, 43, 0.28);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    border-color: #153c2b;
    transform: translateY(-1px);
}

.application-submit-btn,
.contact-submit-btn {
    background: #153c2b;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 8px 18px rgba(21, 60, 43, 0.15);
    color: #ffffff;
}

.application-submit-btn:hover,
.contact-submit-btn:hover {
    background: #1e5240;
}

.btn-outline {
    color: var(--text-dark);
    border: 1px solid rgba(46, 96, 74, 0.3);
}

.btn-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 60px;
}

.image-cover {
    width: 100%;
}

/* Hero image slider */
.hero-slider-wrap {
    width: 100%;
    max-width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: clamp(300px, 38vw, 440px);
    border-radius: 40px;
    overflow: hidden;
    background: #153c2b;
    box-shadow:
        0 24px 48px rgba(15, 47, 34, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #153c2b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 47, 34, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.hero-slider-btn svg {
    width: 18px;
    height: 18px;
}

.hero-slider-prev {
    left: 10px;
}

.hero-slider-next {
    right: 10px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: calc(100% - 24px);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(21, 60, 43, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot.is-active {
    background: #153c2b;
    transform: scale(1.15);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-features-bar {
    margin-top: 40px;
    padding: 20px 0 4px;
    border-top: 1px solid rgba(21, 60, 43, 0.08);
    position: relative;
    z-index: 1;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    max-width: 100%;
}

.hero-feature {
    display: block;
    text-align: center;
    position: relative;
    padding: 2px 10px 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.hero-feature:hover {
    transform: translateY(-2px);
}

.hero-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(64, 129, 103, 0.2);
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.9), 0 6px 14px rgba(14, 55, 39, 0.1);
    color: #193d2d;
}

.hero-feature-icon svg {
    width: 22px;
    height: 22px;
}

.hero-feature h3 {
    font-size: 12px;
    line-height: 1.25;
    color: #193d2d;
    margin: 0 0 4px;
    font-weight: 700;
}

.hero-feature p {
    font-size: 10px;
    color: #355845;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-feature-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    color: #193d2d;
    transition: transform 0.2s ease;
}

.hero-feature-arrow svg {
    width: 14px;
    height: 14px;
}

.hero-feature:hover .hero-feature-arrow {
    transform: translateX(3px);
}

.hero-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: 88px;
    background: rgba(53, 88, 69, 0.22);
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .hero {
        padding: 28px 0 46px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(18px, 2vw, 28px);
    }

    .hero-slider {
        max-height: clamp(320px, 40vw, 460px);
    }

    .hero-title {
        font-size: clamp(42px, 4.15vw, 54px);
        line-height: 1.1;
        max-width: 560px;
    }

    .hero-description {
        max-width: 520px;
        margin-bottom: 20px;
    }

    .hero-features-bar {
        margin-top: 28px;
    }

    .hero-feature {
        padding: 0 8px;
    }

    .hero-feature-icon {
        width: 48px;
        height: 48px;
    }

    .hero-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-feature h3 {
        font-size: 11px;
    }

    .hero-feature p {
        font-size: 9px;
    }

    .hero-feature:not(:last-child)::after {
        height: 80px;
        top: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) and (max-height: 800px) {
    .hero {
        padding: 20px 0 34px;
    }

    .hero-title {
        font-size: clamp(38px, 3.9vw, 48px);
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .hero-actions {
        margin-bottom: 16px;
    }

    .hero-features-bar {
        margin-top: 20px;
    }

    .hero-feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }

    .hero-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-feature h3 {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .hero-feature p {
        font-size: 9px;
    }
}

.cards {
    padding: 80px 0 100px;
    background: var(--white);
}

.cards .container {
    max-width: 1280px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card img {
    width: 100%;
    height: 298px;
    object-fit: cover;
    margin-bottom: 0;
    display: block;
}

.card h3,
.card p,
.card .card-actions {
    padding-left: 20px;
    padding-right: 20px;
}

.card h3 {
    margin-top: 20px;
}

.card h3 {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a6857;
    margin-bottom: 22px;
}

.card .card-actions {
    padding-bottom: 22px;
}

/* Blog Specific Cards */
.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-card img {
    height: 220px;
    object-fit: cover;
    margin-bottom: 0;
    width: 100%;
}

.blog-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Services listing page */
.services-page-hero {
    background: linear-gradient(180deg, #e8f2e8 0%, #f4f8f5 100%);
    padding: 72px 0 48px;
}

.services-cards-section {
    padding-top: 48px;
    padding-bottom: 88px;
}

.services-cards-section .card-grid {
    max-width: 1280px;
    margin: 0 auto;
}

/* Resources page */
.resources-page {
    background: #ffffff;
    padding: 56px 0 64px;
}

.resources-page .container {
    max-width: 1200px;
}

.resources-header {
    margin-bottom: 36px;
}

.resources-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5d816a;
}

.resources-header h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    color: #153c2b;
    line-height: 1.15;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.resource-card {
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 28px rgba(15, 47, 34, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 47, 34, 0.1);
}

.resource-card-image-link {
    display: block;
    text-decoration: none;
}

.resource-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #edf5ea;
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.resource-card:hover .resource-card-image img {
    transform: scale(1.04);
}

.resource-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2d5c48;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(21, 60, 43, 0.12);
    border-radius: 999px;
}

.resource-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.resource-card-body h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.resource-card-body h2 a {
    color: #153c2b;
    text-decoration: none;
}

.resource-card-body h2 a:hover {
    color: #3e7e60;
}

.resource-card-body > p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #5d816a;
    flex: 1;
}

.resource-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(21, 60, 43, 0.08);
}

.resource-read-time {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8aa396;
}

.resource-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #153c2b;
    text-decoration: none;
    white-space: nowrap;
}

.resource-read-more:hover {
    color: #3e7e60;
}

.resources-newsletter {
    background: linear-gradient(180deg, #edf5ea 0%, #e4efe3 100%);
    padding: 56px 0 64px;
    border-top: 1px solid rgba(21, 60, 43, 0.08);
}

.resources-newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.resources-newsletter h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 800;
    color: #153c2b;
}

.resources-newsletter-inner > p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.65;
    color: #5d816a;
}

.resources-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.resources-newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid rgba(21, 60, 43, 0.2);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    color: #153c2b;
}

.resources-newsletter-form input:focus {
    outline: none;
    border-color: #3e7e60;
    box-shadow: 0 0 0 3px rgba(62, 120, 97, 0.15);
}

.resources-newsletter-form .btn-primary {
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

@media (max-width: 991px) {
    .resources-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .resources-newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .resources-newsletter-form .btn-primary {
        width: 100%;
    }
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
}

.btn-card:hover {
    background: var(--text-secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-card.primary {
    background: var(--button-bg);
    border-color: var(--button-bg);
    color: var(--white);
}

.btn-card.primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background: #153c2b;
}

/* Service Detail Page */
.service-detail-page {
    background: #ffffff;
    padding: 32px 0 80px;
}

.service-detail-page .container {
    width: min(94%, 1180px);
    max-width: 1180px;
}

.service-back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #5d816a;
    text-decoration: none;
}

.service-back-link:hover {
    color: #153c2b;
}

.service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

.service-detail-eyebrow {
    margin: 0 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3e7e60;
}

.service-detail-hero-copy h1 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.service-detail-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
    max-width: 420px;
}

.service-detail-hero-visual {
    position: relative;
}

.service-hero-image-card {
    background: #f3f6f4;
    border: 1px solid rgba(21, 60, 43, 0.08);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 47, 34, 0.1);
}

.service-hero-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #edf5ea;
    color: #3e7e60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-hero-badge-icon svg {
    width: 16px;
    height: 16px;
    margin: 7px;
}

.service-hero-badge strong {
    display: block;
    font-size: 13px;
    color: #111827;
    line-height: 1.2;
}

.service-hero-badge span {
    display: block;
    font-size: 11px;
    color: #6b7280;
}

.service-detail-progress {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 0 28px;
    border-top: 1px solid rgba(21, 60, 43, 0.1);
    border-bottom: 1px solid rgba(21, 60, 43, 0.1);
    margin-bottom: 36px;
}

.service-progress-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    white-space: nowrap;
}

.service-progress-track {
    height: 4px;
    background: #e8eeea;
    border-radius: 999px;
    overflow: hidden;
}

.service-progress-fill {
    height: 100%;
    width: 0%;
    background: #153c2b;
    border-radius: 999px;
    transition: width 0.35s ease;
}

.service-progress-pct {
    font-size: 13px;
    font-weight: 600;
    color: #153c2b;
    min-width: 36px;
    text-align: right;
}

.service-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 40px;
    align-items: start;
}

.service-detail-main {
    min-width: 0;
}

.service-detail-summary {
    position: sticky;
    top: 100px;
}

.service-summary-card {
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.12);
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 12px 40px rgba(15, 47, 34, 0.06);
}

.service-summary-label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

.service-summary-count {
    margin: 0 0 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}

.service-summary-count-num {
    font-variant-numeric: tabular-nums;
}

.service-summary-list-wrap {
    min-height: 120px;
    margin-bottom: 20px;
}

.service-summary-empty {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
}

.service-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
}

.service-summary-list li {
    font-size: 13px;
    line-height: 1.45;
    color: #374151;
    padding: 8px 12px;
    background: #f6faf7;
    border-radius: 8px;
    border: 1px solid rgba(21, 60, 43, 0.08);
}

.service-summary-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: #153c2b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.service-summary-submit:hover:not(:disabled) {
    background: #1e5240;
}

.service-summary-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.service-summary-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0;
    font-size: 11px;
    color: #9ca3af;
}

.service-summary-secure svg {
    width: 12px;
    height: 12px;
}

.service-request-form {
    margin: 0;
}

.service-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-alert-success {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.35);
}

.service-alert-error {
    background: rgba(198, 40, 40, 0.08);
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

.service-checklist-section {
    margin-bottom: 36px;
}

.service-checklist-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.service-checklist-heading,
.service-form-heading {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
}

.service-select-all-btn {
    padding: 0;
    border: none;
    background: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3e7e60;
    cursor: pointer;
    font-family: inherit;
}

.service-select-all-btn:hover {
    color: #153c2b;
}

.service-search-wrap {
    position: relative;
    margin-bottom: 28px;
}

.service-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #9ca3af;
    pointer-events: none;
}

.service-search-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid rgba(21, 60, 43, 0.15);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fafcfa;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-search-input:focus {
    outline: none;
    border-color: #3e7e60;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(62, 120, 97, 0.1);
}

.service-categories {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.service-category-title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

.service-category-count {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    font-variant-numeric: tabular-nums;
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .service-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-option-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(21, 60, 43, 0.12);
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-option-card:hover {
    border-color: rgba(62, 120, 97, 0.35);
}

.service-option-card.checked {
    border-color: #153c2b;
    background: #f6faf7;
    box-shadow: 0 0 0 1px rgba(21, 60, 43, 0.08);
}

.service-option-card.is-hidden {
    display: none;
}

.service-category.is-hidden {
    display: none;
}

.service-option-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
}

.service-option-text {
    font-size: 14px;
    line-height: 1.4;
    color: #374151;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.service-option-card.checked .service-option-text {
    color: #111827;
    font-weight: 600;
}

.service-option-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(21, 60, 43, 0.2);
    background: #ffffff;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.service-option-card.checked .service-option-check {
    background: #153c2b;
    border-color: #153c2b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.service-form-section {
    margin-top: 8px;
    padding-top: 32px;
    border-top: 1px solid rgba(21, 60, 43, 0.1);
}

.service-form-heading {
    margin-bottom: 20px;
}

.service-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.service-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.service-field .required {
    color: #c62828;
}

.service-field .optional {
    font-weight: 500;
    color: #7a9488;
    font-size: 12px;
}

.service-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(62, 120, 97, 0.25);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fafcfa;
    color: #153c2b;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-field input:focus {
    outline: none;
    border-color: #3e7e60;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(62, 120, 97, 0.12);
}

.service-field-full {
    grid-column: 1 / -1;
}

.service-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
}

.service-form-note {
    margin: 0;
    font-size: 12px;
    color: #7a9488;
    max-width: 280px;
    line-height: 1.5;
}

.service-request-submit {
    margin: 0;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(21, 60, 43, 0.18);
}

.service-request-submit:hover {
    background: #1e5240;
}

.section {
    padding: 64px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.list-box {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(46, 96, 74, 0.12);
}

.list-box ul {
    padding-left: 20px;
    margin: 0;
}

.list-box li {
    margin-bottom: 8px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.post {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(46, 96, 74, 0.1);
}

.post img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.post-content {
    padding: 18px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

form {
    background: var(--card-bg);
    border: 1px solid rgba(46, 96, 74, 0.14);
    border-radius: 14px;
    padding: 22px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    margin-bottom: 14px;
    border: 1px solid rgba(46, 96, 74, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 15px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.site-footer {
    background: #071410;
    color: #ffffff;
    margin-top: 0;
    padding-top: 70px;
    padding-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr 0.5fr 0.5fr;
    gap: 26px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 24px;
}

.footer-logo img {
    margin-top: -70px;
    height: 129px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s, transform 0.3s, text-decoration-color 0.3s;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}

.site-footer a:hover {
    color: #3b915a;
    text-decoration: solid;
}

.copyright {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand-col p {
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: background 0.3s, transform 0.3s;
    margin-bottom: 0 !important;
}

.footer-socials a:hover {
    background: var(--button-bg);
    transform: translateY(-3px);
}

.footer-contact-item {
    margin-bottom: 15px;
}

.footer-contact-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

.menu-toggle {
    display: none;
}

/* Our Process Section */
.process {
    background: var(--hero-bg);
    padding: 80px 0 100px;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-header h2 {
    color: var(--text-primary);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.process-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.line-bg,
.line-fill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    border-radius: 4px;
    top: 0;
    bottom: 0;
}

.line-bg {
    background: rgba(27, 61, 43, 0.1);
    /* Darker line for green background */
    height: 100%;
}

.line-fill {
    background: var(--text-primary);
    /* Dark green stroke fills up */
    height: 0%;
    transition: height 0.3s ease-out;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}

.step:last-child {
    margin-bottom: 0;
}

.step-content {
    width: calc(50% - 60px);
}

.step.left .step-content {
    text-align: left;
    /* Keep box content aligned naturally left */
}

.step.left .step-label {
    width: calc(50% - 60px);
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.step.right .step-content {
    text-align: left;
}

.step.right .step-label {
    width: calc(50% - 60px);
    text-align: right;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.step-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--hero-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--hero-bg);
}

.step-indicator .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e2f1e8;
    border: 3px solid #aa8659;
    /* Button theme brown outline */
    transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
}

.step-indicator .dot.active {
    background: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(27, 61, 43, 0.15);
}

.step-content.box {
    position: relative;
    background: #ffffff;
    padding: 28px 28px 26px;
    border-radius: 14px;
    border: 1px solid rgba(21, 60, 43, 0.12);
    box-shadow: 0 12px 36px rgba(15, 47, 34, 0.08);
    overflow: hidden;
}

.step-content.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3e7e60 0%, #153c2b 100%);
}

.step-content.box h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #153c2b;
    margin-bottom: 10px;
}

.step-content.box p {
    margin-bottom: 0;
    font-size: 15px;
    color: #5d816a;
    line-height: 1.65;
}

.process-footer {
    text-align: center;
}

.process-footer .btn-primary {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 4px 14px rgba(21, 60, 43, 0.18);
}

/* Home CTA Form (matches contact page) */
.home-cta-form {
    background: linear-gradient(180deg, #f6faf7 0%, #ffffff 100%);
    padding: 72px 0 88px;
}

.home-cta-card {
    max-width: 920px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 20px;
    padding: 36px 40px 32px;
    box-shadow: 0 20px 50px rgba(15, 47, 34, 0.08);
}

.home-cta-intro {
    margin-bottom: 28px;
}

.home-cta-intro h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: #153c2b;
    line-height: 1.25;
}

.home-cta-intro > p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.65;
    color: #5d816a;
}

.home-cta-form .contact-perks {
    margin-bottom: 0;
}

.home-cta-form .contact-alert {
    margin-bottom: 20px;
}

.home-cta-form .contact-application-form .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .home-cta-card {
        padding: 28px 22px 24px;
    }

    .home-cta-form .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .home-cta-form .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
}

.boxed-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.form-grid .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-group .required {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(27, 61, 43, 0.1);
}

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

/* reCAPTCHA Mockup styling */
.recaptcha-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 15px 20px;
    width: 300px;
    margin-bottom: 30px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.06);
}

.rc-checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.rc-checkbox input {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.rc-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.rc-icon {
    font-size: 24px;
    line-height: 1;
    color: #1a73e8;
}

.rc-logo small {
    font-size: 10px;
    margin-top: 2px;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #f8faf8 0%, #eef4ef 100%);
    padding: 88px 0 96px;
}

.faq-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.faq-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3b745d;
}

.faq-title {
    text-align: center;
    color: var(--text-primary);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-container {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 47, 34, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(21, 60, 43, 0.18);
    box-shadow: 0 8px 24px rgba(15, 47, 34, 0.08);
}

.faq-item.active {
    border-color: rgba(21, 60, 43, 0.22);
    box-shadow: 0 10px 28px rgba(15, 47, 34, 0.1);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.faq-item.active .faq-question {
    background: rgba(225, 239, 222, 0.45);
}

.faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.45;
    flex: 1;
}

.faq-question .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(21, 60, 43, 0.06);
    color: var(--text-primary);
    transition: transform 0.3s ease, background 0.25s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
    background: #153c2b;
    color: #ffffff;
}

.faq-question .icon svg {
    width: 18px;
    height: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #4a5f54;
    border-top: 1px solid rgba(21, 60, 43, 0.08);
    padding-top: 16px;
}

.faq-item.active .faq-answer {
    max-height: 520px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* Services Page Specifics */
.page-header-compact {
    padding: 80px 0 40px;
    background: #ffffff;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: none;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
}

.mb-4 {
    margin-bottom: 30px;
}

.title-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.title-link:hover {
    color: var(--button-bg);
}

.img-link {
    display: block;
}

.img-link img {
    transition: transform 0.3s;
}

.img-link:hover img {
    transform: scale(1.02);
}

.step-title {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.process-basic {
    background: #ffffff;
    padding-bottom: 100px;
}

@media (max-width: 1024px) {

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

    .hero-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 28px 0 34px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-copy {
        padding-top: 0;
        padding-left: 0;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-slider-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-slider {
        max-height: min(420px, 72vw);
    }

    .hero-features-bar {
        margin-top: 28px;
    }

    .brand img {
        width: 210px;
        height: 54px;
    }

    h1 {
        font-size: clamp(42px, 9vw, 56px);
    }

    .cards .card h3 {
        font-size: 16px;
    }

    .btn-link,
    .card-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        width: 44px;
        height: 44px;

        border: 1px solid rgba(46, 96, 74, 0.3);
        border-radius: 8px;

        background: #fff;
        cursor: pointer;

        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background-color: #2e604a;
        border-radius: 2px;
        transition: 0.3s ease;
    }

    .site-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #f8fff7;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 4%;
        border-bottom: 1px solid rgba(46, 96, 74, 0.1);
        display: none;
    }

    .site-nav.open {
        display: flex;
    }

    .card-grid,
    .service-grid,
    .post-grid,
    .faq-grid,
    .form-grid,
    .footer-grid,
    .service-detail-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-detail-hero-visual {
        order: -1;
    }

    .service-detail-body {
        grid-template-columns: 1fr;
    }

    .service-detail-summary {
        position: static;
    }

    .service-options-grid {
        grid-template-columns: 1fr;
    }

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

    .service-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .service-request-submit {
        width: 100%;
        text-align: center;
    }

    .brand img {
        max-width: max-content;
        height: auto;
    }

    .btn-link,
    .card-link {
        font-size: 15px;
    }

    .hero-title {
        font-size: clamp(32px, 11vw, 44px);
        line-height: 1.12;
        letter-spacing: -0.4px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 34px;
    }

    .hero-features-bar {
        margin-top: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .hero-features {
        grid-template-columns: repeat(6, minmax(108px, 1fr));
        min-width: 648px;
    }

    .hero-feature {
        padding: 0 8px;
    }

    .hero-feature:not(:last-child)::after {
        height: 76px;
        top: 22px;
    }

    .hero-copy {
        padding-left: 0;
    }

    /* Process Mobile */
    .line-bg,
    .line-fill {
        left: 24px;
        transform: none;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-indicator {
        left: 24px;
        transform: none;
        top: 24px;
    }

    .step.left .step-content,
    .step.right .step-content {
        width: calc(100% - 64px);
        margin-left: 64px;
        text-align: left;
    }

    .step.left .step-label,
    .step.right .step-label {
        display: none;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 20px 0 30px;
    }

    .hero-title {
        font-size: clamp(30px, 10vw, 36px);
        margin-bottom: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 22px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .btn-link {
        margin-left: 0;
    }

    .hero-features {
        min-width: 600px;
        grid-template-columns: repeat(6, minmax(100px, 1fr));
    }
}

/* Minimalist Inquiry Form */
.inquiry-wrap {
    background: linear-gradient(135deg, #e1efde 0%, #f4fbf6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.inquiry-wrap::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(170, 134, 89, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.minimal-form .form-group {
    margin-bottom: 45px;
    border-bottom: 2px solid rgba(21, 60, 43, 0.2);
    position: relative;
    padding-bottom: 5px;
}

.minimal-form label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8c8c8a;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
    width: 100%;
    border: none !important;
    background: transparent !important;
    padding: 10px 0 !important;
    font-size: 18px !important;
    color: #1a1a1a !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.minimal-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.btn-send-inquiry {
    background: var(--text-primary);
    color: #ffffff;
    padding: 18px 45px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
    cursor: pointer;
}

.inquiry-heading {
    font-size: 32px;
    margin-bottom: 60px;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #d1d1cf;
    padding-bottom: 15px;
}

.inquiry-heading span {
    font-size: 12px;
    color: #8c8c8a;
}

.inquiry-quote {
    margin-top: 50px;
    padding-left: 20px;
    border-left: 3px solid #14281f;
}

.inquiry-quote p {
    font-size: 22px;
    line-height: 1.4;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 10px;
}


.inquiry-quote cite {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8c8c8a;
    font-style: normal;
    display: block;
}

.inquiry-policy {
    font-size: 11px;
    color: #8c8c8a;
    line-height: 1.6;
    max-width: 320px;
}

/* New Contact Elements */
.page-header-extra {
    text-align: center;
    margin-bottom: 60px;
}

.page-header-extra h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header-extra p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--hero-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-primary);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.info-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-link:hover {
    text-decoration: underline;
}

.main-inquiry-grid {
    grid-template-columns: 380px 1fr !important;
    gap: 80px !important;
    background: rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.mascot-container {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mascot-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(225, 239, 222, 0.5) 0%, transparent 70%);
    z-index: 0;
}

.mascot-container img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.message-group {
    border-bottom: 2px solid rgba(21, 60, 43, 0.2);
    margin-top: 30px;
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
    border-bottom: 2px solid var(--text-primary) !important;
}

.form-footer button span {
    font-size: 18px;
    transition: transform 0.3s;
}

.form-footer button:hover span {
    transform: translateX(5px);
}

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

    .main-inquiry-grid {
        grid-template-columns: 1fr !important;
        padding: 20px;
    }
}

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

    .contact-header-extra h1 {
        font-size: 36px;
    }
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .inquiry-wrap .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .inquiry-sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .inquiry-quote {
        margin-top: 30px;
        border-left: none;
        border-top: 3px solid #14281f;
        padding-left: 0;
        padding-top: 20px;
    }
}


.inquiry-main {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.minimal-form label {
    color: var(--text-primary) !important;
    opacity: 0.6;
}

.btn-send-inquiry {
    border-radius: 8px !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 40px;
    color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-label {
    background: rgba(26, 30, 35, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.whatsapp-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.whatsapp-float:hover {
    transform: scale(1.04);
    color: #fff;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 14px;
    }
    .whatsapp-label {
        font-size: 12px;
        padding: 7px 12px;
    }
    .whatsapp-icon-wrap {
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Home Reviews Slider */
.reviews-slider {
    background: #e1efde;
    padding: 80px 0;
    overflow: hidden;
}

.reviews-slider .section-title {
    text-align: center;
    color: #153c2b;
    margin-bottom: 40px;
}

.review-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.review-row {
    overflow: hidden;
    margin-bottom: 22px;
}

.review-row:last-child {
    margin-bottom: 0;
}

.review-row-top .review-track {
    animation-name: slide-left;
    animation-duration: 38s;
}

.review-row-bottom .review-track {
    animation-name: slide-right;
    animation-duration: 38s;
}

.review-card {
    width: 320px;
    background: rgb(255 255 255);
    border: 1px solid rgba(84, 125, 103, 0.25);
    border-radius: 16px;
    padding: 22px;
    flex-shrink: 0;
}

.review-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.review-stars {
    color: #f8d16c;
    letter-spacing: 2px;
    font-size: 15px;
}

@keyframes slide-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes slide-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 12px 20px;
    margin-bottom: 16px;
}

/* ===== ABOUT PAGE (Image 03 layout) ===== */
.about-page {
    background: #f4f7f5;
    padding: 48px 0 72px;
}

.about-intro {
    max-width: 760px;
    margin: 0 auto 40px;
}

.about-eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3e7e60;
    background: #edf5ea;
    border: 1px solid rgba(62, 120, 97, 0.2);
    border-radius: 999px;
}

.about-intro h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.2;
    color: #153c2b;
    font-weight: 800;
}

.about-subtitle {
    margin: 0 auto;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.7;
    color: #5d816a;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 20px;
}

.about-visual-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #e8eeea;
    border: 1px solid rgba(21, 60, 43, 0.1);
    box-shadow: 0 14px 36px rgba(15, 47, 34, 0.08);
    min-height: 420px;
}

.about-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.about-visual-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #153c2b;
    box-shadow: 0 6px 18px rgba(15, 47, 34, 0.12);
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-info-card {
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 6px 18px rgba(15, 47, 34, 0.04);
}

.about-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f2f6f3;
    color: #5d816a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.about-info-icon svg {
    width: 18px;
    height: 18px;
}

.about-info-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: #153c2b;
    line-height: 1.25;
}

.about-info-card > p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #48695a;
}

.about-info-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-info-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #4a6356;
    margin: 0;
}

.about-bullet-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #edf5ea;
    color: #3e7e60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-bullet-check svg {
    width: 11px;
    height: 11px;
}

.about-commitment-bar {
    background: #edf5ea;
    border: 1px solid rgba(62, 120, 97, 0.15);
    border-radius: 12px;
    padding: 16px 22px;
    margin-bottom: 36px;
    text-align: center;
}

.about-commitment-bar p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #3d5c4f;
    font-weight: 500;
}

.about-tabs-section {
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 10px 32px rgba(15, 47, 34, 0.06);
}

.about-tabs-head h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 2.8vw, 28px);
    color: #153c2b;
    line-height: 1.25;
}

.about-tabs-head p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #5d816a;
    line-height: 1.6;
}

.about-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(21, 60, 43, 0.1);
}

.about-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(21, 60, 43, 0.12);
    border-radius: 999px;
    background: #f8faf9;
    color: #4a6356;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-tab-btn:hover {
    border-color: rgba(62, 120, 97, 0.35);
    color: #153c2b;
}

.about-tab-btn.is-active {
    background: #153c2b;
    border-color: #153c2b;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(21, 60, 43, 0.2);
}

.about-tab-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-tab-icon svg {
    width: 14px;
    height: 14px;
}

.about-tabs-panels {
    position: relative;
    min-height: 200px;
}

.about-tab-panel {
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    animation: about-tab-in 0.35s ease;
}

.about-tab-panel.is-active {
    display: grid;
}

@keyframes about-tab-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-tab-panel-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.3;
    color: #153c2b;
    font-weight: 700;
    max-width: 520px;
}

.about-tab-panel-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a6356;
    max-width: 520px;
}

.about-tab-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
}

.about-stat-box {
    background: #f6faf7;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
}

.about-stat-box strong {
    display: block;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: #153c2b;
    line-height: 1.1;
    margin-bottom: 4px;
}

.about-stat-box span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a9488;
}

.about-tabs-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(21, 60, 43, 0.1);
}

.about-tabs-foot p {
    margin: 0;
    font-size: 15px;
    color: #426454;
    line-height: 1.6;
    max-width: 560px;
}

.about-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* About + Why Us Redesign */
.themed-hero {
    background: linear-gradient(180deg, #dcebd8 0%, #edf5ea 100%);
    padding: 92px 0 64px;
}

.page-header-tight {
    margin-bottom: 0;
}

.section-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3b745d;
    font-weight: 700;
}

.about-lead-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: center;
}

.about-lead-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 47, 34, 0.12);
    border: 1px solid rgba(21, 60, 43, 0.1);
}

.about-lead-image {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 4.2;
    object-fit: cover;
}

.about-lead-content h2 {
    font-size: clamp(30px, 3.5vw, 42px);
    margin-bottom: 14px;
}

.about-lead-content > p {
    font-size: 17px;
    color: #3f5f50;
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-mini-card {
    background: #f6fbf8;
    border: 1px solid rgba(62, 120, 97, 0.25);
    border-radius: 14px;
    padding: 14px;
}

.about-mini-card strong {
    display: block;
    font-size: 18px;
    color: #103325;
    margin-bottom: 6px;
}

.about-mini-card span {
    font-size: 14px;
    color: #446858;
    line-height: 1.45;
}

.about-values-section {
    background: #fbfdfc;
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(21, 60, 43, 0.09);
    box-shadow: 0 14px 35px rgba(13, 45, 33, 0.06);
    padding: 28px;
}

.about-value-card h3 {
    font-size: 24px;
    color: #143f2e;
    margin-bottom: 10px;
}

.about-value-card p {
    margin: 0;
    font-size: 16px;
    color: #4d6e5f;
    line-height: 1.75;
}

/* ===== SHOWCASE PAGE (Why Us, About, Services, Resources) ===== */
.showcase-page,
.why-us-page {
    background: #f4f7f5;
    padding: 56px 0 72px;
}

.showcase-intro,
.why-us-intro {
    max-width: 820px;
    margin: 0 auto 36px;
}

.showcase-eyebrow,
.why-us-eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5d816a;
}

.showcase-intro h1,
.why-us-intro h1 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.2;
    color: #153c2b;
    font-weight: 800;
}

.showcase-difference-grid,
.why-difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 20px;
}

.showcase-visual,
.why-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    max-width: 300px;
    width: 100%;
    min-height: 0;
    height: 100%;
    align-self: stretch;
    box-shadow: 0 14px 36px rgba(15, 47, 34, 0.1);
}

.showcase-visual img,
.why-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.showcase-visual::after,
.why-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(21, 60, 43, 0.35) 0%, rgba(21, 60, 43, 0.08) 55%, rgba(21, 60, 43, 0.2) 100%);
    pointer-events: none;
}

.showcase-badge,
.why-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #153c2b;
    box-shadow: 0 8px 20px rgba(15, 47, 34, 0.12);
    max-width: calc(100% - 20px);
    line-height: 1.3;
}

.showcase-badge-tl,
.why-badge-tl {
    top: 12px;
    left: 12px;
}

.showcase-badge-br,
.why-badge-br {
    right: 12px;
    bottom: 14px;
}

.showcase-badge-icon,
.why-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f0f6f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #aa8659;
    flex-shrink: 0;
}

.showcase-badge-icon svg,
.why-badge-icon svg {
    width: 15px;
    height: 15px;
}

.showcase-badge-icon-accent,
.why-badge-icon-accent {
    color: #3e7e60;
}

.showcase-cards-grid,
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.showcase-card,
.why-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(21, 60, 43, 0.1);
    padding: 18px 18px 16px;
    box-shadow: 0 6px 18px rgba(15, 47, 34, 0.05);
}

.showcase-card-icon,
.why-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f2f6f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5d816a;
    margin-bottom: 12px;
}

.showcase-card-icon svg,
.why-card-icon svg {
    width: 18px;
    height: 18px;
}

.showcase-card h3,
.why-card h3 {
    font-size: 17px;
    color: #143f2e;
    margin: 0 0 6px;
    line-height: 1.25;
}

.showcase-card p,
.why-card p {
    margin: 0;
    font-size: 14px;
    color: #48695a;
    line-height: 1.6;
}

.showcase-commitment-bar,
.why-commitment-bar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(15, 47, 34, 0.04);
}

.showcase-commitment-icon,
.why-commitment-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #edf5ea;
    color: #3e7e60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-commitment-icon svg,
.why-commitment-icon svg {
    width: 16px;
    height: 16px;
}

.showcase-commitment-bar p,
.why-commitment-bar p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a6356;
}

.showcase-panel,
.why-challenges {
    background: #f8faf9;
    border: 1px solid rgba(21, 60, 43, 0.12);
    border-radius: 18px;
    padding: 28px 28px 24px;
}

.showcase-panel-head,
.why-challenges-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 22px;
}

.showcase-panel-head h2,
.why-challenges-head h2 {
    margin: 0;
    font-size: clamp(22px, 2.8vw, 30px);
    color: #153c2b;
    max-width: 420px;
    line-height: 1.25;
}

.showcase-panel-head > p,
.why-challenges-head > p {
    margin: 6px 0 0;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    color: #5d816a;
    text-align: right;
}

.challenge-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(62, 120, 97, 0.18);
    border-radius: 12px;
    padding: 16px;
}

.challenge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3e7e60;
    margin-top: 6px;
    flex-shrink: 0;
}

.challenge-item strong {
    display: block;
    color: #153c2b;
    font-size: 15px;
    margin-bottom: 4px;
}

.challenge-item span {
    display: block;
    color: #4c6d5e;
    font-size: 13px;
    line-height: 1.5;
}

.showcase-panel-foot,
.why-challenges-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
    border-top: 1px solid rgba(21, 60, 43, 0.1);
}

.showcase-panel-foot p,
.why-challenges-foot p {
    margin: 0;
    font-size: 15px;
    color: #426454;
    line-height: 1.65;
    max-width: 620px;
}

.showcase-panel-foot strong,
.why-challenges-foot strong {
    color: #153c2b;
}

.showcase-cta-btn,
.why-cta-btn {
    flex-shrink: 0;
    padding: 12px 22px;
    border-radius: 10px;
    text-transform: none;
    font-size: 14px;
    white-space: nowrap;
}

.challenge-item-link {
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.challenge-item-link:hover {
    border-color: rgba(62, 120, 97, 0.45);
    box-shadow: 0 6px 16px rgba(15, 47, 34, 0.08);
}

.challenge-list-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    background: linear-gradient(180deg, #f0f6f2 0%, #f7faf8 45%, #ffffff 100%);
    padding: 56px 0 72px;
}

.contact-hero {
    max-width: 720px;
    margin: 0 auto 40px;
}

.contact-reply-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;
    border: 1px solid rgba(62, 120, 97, 0.35);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #3b745d;
    background: rgba(255, 255, 255, 0.7);
}

.contact-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    color: #153c2b;
    font-weight: 800;
}

.contact-hero h1 em {
    font-style: italic;
    color: #3e7e60;
}

.contact-hero > p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5d816a;
}

.page-contact .contact-info-grid {
    margin-bottom: 36px;
}

.page-contact .info-card {
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(15, 47, 34, 0.05);
}

.page-contact .info-icon {
    margin: 0 0 16px;
    width: 48px;
    height: 48px;
    background: #edf5ea;
}

.page-contact .info-label {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5d816a;
}

.page-contact .info-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #153c2b;
}

.page-contact .info-meta {
    margin: 0 0 14px;
    font-size: 14px;
    color: #6b8a79;
}

.page-contact .info-link {
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

.contact-main-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 47, 34, 0.1);
    margin-bottom: 28px;
}

.contact-main-visual {
    background: #153c2b;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-visual-image {
    position: relative;
    flex: 1 1 auto;
    min-height: 280px;
    overflow: hidden;
}

.contact-visual-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.contact-visual-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 22px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 30, 22, 0.92) 100%);
    color: #ffffff;
}

.contact-stars {
    color: #f4d35e;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-visual-overlay blockquote {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.55;
    font-style: italic;
    font-weight: 500;
}

.contact-visual-overlay cite {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
}

.contact-stats-bar {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #0f2e22;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-stats-bar > div {
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-stats-bar > div:last-child {
    border-right: none;
}

.contact-stats-bar strong {
    display: block;
    font-size: 22px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.contact-stats-bar span {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.contact-main-form {
    padding: 36px 36px 32px;
}

.contact-form-intro h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.8vw, 30px);
    color: #153c2b;
    line-height: 1.25;
}

.contact-form-intro > p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #5d816a;
}

.contact-perks {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.contact-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #3b745d;
}

.contact-perks li::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #edf5ea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233e7e60' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
    flex-shrink: 0;
}

.contact-alert {
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.contact-alert-success {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.contact-alert-error {
    background: rgba(198, 40, 40, 0.1);
    color: #c62828;
    border: 1px solid #c62828;
}

.contact-application-form .form-group input,
.contact-application-form .form-group textarea {
    border-radius: 10px;
    border: 1px solid rgba(62, 120, 97, 0.25);
    background: #fafcfa;
}

.contact-application-form .form-group input:focus,
.contact-application-form .form-group textarea:focus {
    border-color: #3e7e60;
    background: #ffffff;
}

.contact-application-form .form-group-full {
    grid-column: 1 / -1;
}

.contact-application-form .form-group textarea {
    min-height: 110px;
    margin-bottom: 0;
}

.contact-application-form .form-grid .form-group {
    margin-bottom: 0;
}

.contact-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.contact-privacy {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #7a9488;
    max-width: 320px;
}

.page-contact .contact-submit-btn {
    margin: 0;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    text-transform: none;
    font-size: 15px;
    cursor: pointer;
}

.contact-bottom-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(21, 60, 43, 0.1);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(15, 47, 34, 0.05);
}

.contact-bottom-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-bottom-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #edf5ea;
    color: #3e7e60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-bottom-icon svg {
    width: 18px;
    height: 18px;
}

.contact-bottom-item strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5d816a;
    margin-bottom: 4px;
}

.contact-bottom-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #153c2b;
}

.contact-bottom-item a {
    color: #153c2b;
    text-decoration: none;
}

.contact-bottom-item a:hover {
    color: #3e7e60;
}

/* Contact Page Refresh (legacy) */
.professional-inquiry-grid {
    grid-template-columns: 0.9fr 1.1fr !important;
}

.inquiry-strategy-panel {
    background: linear-gradient(165deg, #1d503c 0%, #133526 100%);
    border-radius: 18px;
    padding: 34px 28px;
    color: #e6f0ea;
}

.inquiry-strategy-panel h2 {
    color: #f5fbf8;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.inquiry-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.inquiry-step-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 14px 13px;
}

.inquiry-step-list strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 5px;
}

.inquiry-step-list span {
    font-size: 14px;
    color: rgba(235, 245, 239, 0.92);
    line-height: 1.5;
}

.inquiry-trust-box {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.inquiry-trust-box .trust-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.inquiry-trust-box p {
    margin: 0;
    color: rgba(236, 244, 239, 0.92);
    font-size: 14px;
    line-height: 1.6;
}

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

    .about-visual-card {
        min-height: 280px;
    }

    .about-visual-card img {
        min-height: 280px;
    }

    .about-tab-panel.is-active {
        grid-template-columns: 1fr;
    }

    .about-tab-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-stat-box {
        flex: 1;
        min-width: 140px;
    }

    .about-lead-grid,
    .about-value-grid,
    .about-mini-stats {
        grid-template-columns: 1fr;
    }

    .showcase-difference-grid,
    .why-difference-grid {
        grid-template-columns: 1fr;
    }

    .showcase-visual,
    .why-visual {
        max-width: 100%;
    }

    .showcase-visual img,
    .why-visual img {
        min-height: 260px;
        max-height: 300px;
    }

    .showcase-panel-head,
    .why-challenges-head {
        flex-direction: column;
    }

    .showcase-panel-head > p,
    .why-challenges-head > p {
        text-align: left;
        max-width: none;
    }

    .challenge-list-grid,
    .challenge-list-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-panel-foot,
    .why-challenges-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-main-card {
        grid-template-columns: 1fr;
    }

    .contact-bottom-bar {
        grid-template-columns: 1fr;
    }

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

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

    .about-tabs-nav {
        flex-direction: column;
    }

    .about-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .showcase-cards-grid,
    .why-cards-grid,
    .challenge-list-grid,
    .challenge-list-grid-3 {
        grid-template-columns: 1fr;
    }

    .showcase-badge,
    .why-badge {
        font-size: 10px;
        padding: 6px 8px;
    }

    .showcase-badge-tl,
    .why-badge-tl {
        top: 10px;
        left: 10px;
    }

    .showcase-badge-br,
    .why-badge-br {
        right: 10px;
        bottom: 12px;
    }

    .contact-main-form {
        padding: 24px 20px;
    }

    .contact-perks {
        flex-direction: column;
        gap: 8px;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .page-contact .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
}

.contact-cta-form {
    background: #d8e6d9;
    border-radius: 22px;
    padding: 48px 34px;
    border: 1px solid rgba(21, 60, 43, 0.1);
    box-shadow: 0 20px 45px rgba(15, 47, 34, 0.08);
}

.contact-submit-btn, .application-submit-btn {
    margin: 0 0 0 309px;
    display: inline-flex;
    border: none;
}

@media (max-width: 991px) {
    .contact-submit-btn, .application-submit-btn {
        margin: 0 0 0 0;
        padding: 15px 70px 15px 70px;
    }
}

.contact-cta-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.contact-visual-panel {
    background: #143d2c;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
}

.contact-visual-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.contact-visual-card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}

.contact-visual-quote {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 14px;
}

.contact-visual-quote p {
    margin: 0 0 7px;
    color: #eff8f3;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

.contact-visual-quote cite {
    color: rgba(236, 246, 240, 0.85);
    font-size: 13px;
    line-height: 1.4;
}

.contact-form-panel .cta-header {
    margin-bottom: 36px;
}

.contact-form-panel .cta-header p {
    max-width: 780px;
}

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

    .contact-visual-card img {
        height: 300px;
    }
}

/* ===== STATS IMPACT SECTION ===== */
.stats-impact {
    background-color: #071410;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(46, 125, 72, 0.18) 0%, transparent 65%),
        linear-gradient(rgba(74, 222, 128, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 222, 128, 0.04) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}

.stats-header {
    margin-bottom: 48px;
    text-align: center;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 222, 128, 0.35);
    border-radius: 999px;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(134, 239, 172, 0.9);
}

.stats-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

.stats-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.stats-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 12px;
    background: rgba(8, 24, 18, 0.75);
    border: 1px solid rgba(74, 222, 128, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px 16px 24px;
    border-right: 1px solid rgba(74, 222, 128, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 18px;
    background: rgba(20, 60, 42, 0.9);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-desc {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.stats-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.stats-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(74, 222, 128, 0.12);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(74, 222, 128, 0.12);
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-item:last-child:nth-child(odd) {
        border-right: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .stats-impact {
        padding: 64px 0 56px;
    }

    .stats-panel {
        padding: 20px 8px;
        border-radius: 16px;
    }

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

    .stat-item,
    .stat-item:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid rgba(74, 222, 128, 0.12);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stats-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}