/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Global tokens ───────────────────────────────────────── */
:root {
    --red: #e3362e;
    --red-light: #fde8e8;
    --red-dark: #b52920;
    --green: #86b413;
    --green-light: #eaf3de;
    --green-dark: #3b6d11;
    --text: #000000;
    --muted: #000000;
    --border: rgba(0, 0, 0, 0.1);
    --radius: 14px;
    --font: "Poppins", sans-serif;
    --body-size: 14px;
    --body-weight: 400;
    --body-lh: 1.9;
}

* {
    font-family: var(--font);
}

/* ════════════════════════════════
   PAGE HERO
════════════════════════════════ */
.page-hero-section {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(
        120deg,
        #fde8e8 0%,
        #fce4f0 40%,
        #f8e0f5 70%,
        #f0e4fc 100%
    );
}

.page-hero-section::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 35%;
    background-image: radial-gradient(
        circle,
        rgba(227, 54, 46, 0.15) 1.2px,
        transparent 1.2px
    );
    background-size: 18px 18px;
    pointer-events: none;
}

.page-hero-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 5px;
    height: 70%;
    background: var(--red);
    border-radius: 4px 0 0 4px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #86b413;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.page-hero-title span {
    color: var(--red);
}

/* ── Hero breadcrumb ── */
.hero-breadcrumb {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-breadcrumb a,
.hero-breadcrumb span {
    font-size: 15px;
    font-weight: 500;
    color: #7dba12;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: #ee3a2d;
}

.hero-breadcrumb span {
    color: #5f5f5f;
}

.hero-breadcrumb span:last-child {
    color: red;
    font-weight: 700;
}

/* ── Hero responsive ── */
@media (max-width: 768px) {
    .page-hero-section {
        margin-top: 73px;
        min-height: 180px;
        padding: 0 20px 20px;
    }

    .page-hero-inner {
        padding: 36px 16px;
    }

    .page-hero-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        line-height: 1.2;
        max-width: 320px;
        margin: 0 auto 12px;
    }

    .page-hero-title span {
        display: block;
    }

    .hero-breadcrumb {
        margin-top: 12px;
        gap: 6px;
    }

    .hero-breadcrumb a,
    .hero-breadcrumb span {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .page-hero-title {
        font-size: 1.25rem;
    }
}

/* ════════════════════════════════
   ABOUT SECTION
════════════════════════════════ */
.about-section {
    padding: 80px 24px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* top row */
.about-top {
    display: flex;
    gap: 48px;
    align-items: stretch;
    margin-bottom: 28px;
}

/* ── image block ── */
.about-img-wrap {
    width: 44%;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    background: #f0f7e0;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--red));
    z-index: 2;
}

.about-img-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.about-img-icon i {
    font-size: 17px;
    color: var(--red);
}

.about-img-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(134, 180, 19, 0.2);
    z-index: 2;
}
.about-img-tag__num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.about-img-tag__lbl {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    margin-top: 3px;
}

/* ── content block ── */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-light);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 20px;
    width: fit-content;
}
.about-tag__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}
.about-tag__text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}
.about-tag__icon {
    display: flex;
    align-items: center;
}
.about-tag__icon i {
    font-size: 13px;
    color: var(--red);
}

.about-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 900;
    color: #27500a;
    line-height: 1.3;
    margin-bottom: 16px;
}
.about-title em {
    font-style: normal;
    color: var(--red);
}

.about-desc {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: var(--body-lh);
    color: #000000;
    margin-bottom: 24px;
}

/* pills */
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    border: 1px solid rgba(134, 180, 19, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}
.about-pill svg {
    width: 13px;
    height: 13px;
    stroke: var(--green);
    flex-shrink: 0;
}

/* ── stat cards ── */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 110px;
}
.stat-card--red {
    background: var(--red);
}
.stat-card--purple {
    background: #7c3aed;
}
.stat-card--blue {
    background: #2563eb;
}
.stat-card--green {
    background: #059669;
}

.stat-card__badge-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
}
.stat-card__badge-icon i {
    font-size: 18px;
    color: #fff;
}

.stat-card__num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.stat-card__lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 8px;
}
.stat-card__icon {
    position: absolute;
    bottom: 12px;
    right: 14px;
    opacity: 0.18;
}
.stat-card__icon svg {
    width: 34px;
    height: 34px;
    stroke: #fff;
    stroke-width: 1.5;
    fill: none;
}

/* ── About responsive ── */
@media (max-width: 900px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-top {
        flex-direction: column;
        gap: 32px;
    }

    .about-img-wrap {
        width: 100%;
        min-height: 280px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 48px 16px;
    }

    .about-title {
        font-size: clamp(1.35rem, 5vw, 1.7rem);
    }

    .about-img-wrap {
        min-height: 220px;
        border-radius: 14px;
    }

    .about-img-tag {
        bottom: 14px;
        left: 14px;
        padding: 8px 12px;
    }

    .about-img-tag__num {
        font-size: 1.25rem;
    }

    .about-pills {
        gap: 6px;
    }

    .about-pill {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 16px 14px;
        min-height: 90px;
        border-radius: 12px;
    }

    .stat-card__num {
        font-size: 1.5rem;
    }

    .stat-card__lbl {
        font-size: 10px;
    }
}

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.wcu {
    padding: 64px 0;
    background: #fafaf8;
}

.wcu-split {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── keyframes ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scaleInX {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.75);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes railDraw {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}
@keyframes dotPop {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── left panel ── */
.wcu-left {
    position: sticky;
    top: 2rem;
    width: 100%;
    max-width: 445px;
}

.wcu-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 0.85rem;
    background: var(--green-light);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(99, 153, 34, 0.25);
    animation: fadeUp 0.4s ease both;
}
.wcu-kicker i {
    font-size: 14px;
    color: var(--green-dark);
}

.wcu-h {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: var(--red);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.45s 0.07s ease both;
}
.wcu-h strong {
    color: var(--green-dark);
    font-weight: 700;
}

.wcu-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 0.85rem;
    transform-origin: left;
    animation: scaleInX 0.5s 0.13s ease both;
}
.wcu-bar span {
    height: 3px;
    border-radius: 3px;
}
.wcu-bar span:first-child {
    width: 32px;
    background: var(--green-dark);
}
.wcu-bar span:last-child {
    width: 12px;
    background: #c0dd97;
}

.wcu-desc {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    color: var(--text);
    line-height: var(--body-lh);
    margin-bottom: 1.4rem;
    animation: fadeUp 0.45s 0.18s ease both;
    width: 100%;
    max-width: 490px;
}

/* ── rail ── */
.rail {
    position: relative;
    padding-left: 38px;
}

.rail-line {
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 1.5px;
    background: #e5edd8;
    border-radius: 2px;
    overflow: hidden;
}
.rail-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--green-dark);
    animation: railDraw 1.4s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── rows ── */
.row {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    position: relative;
}
.row:nth-child(2) {
    animation: fadeRight 0.45s 0.38s ease both;
}
.row:nth-child(3) {
    animation: fadeRight 0.45s 0.5s ease both;
}
.row:nth-child(4) {
    animation: fadeRight 0.45s 0.62s ease both;
}
.row:nth-child(5) {
    animation: fadeRight 0.45s 0.74s ease both;
}
.row:nth-child(6) {
    animation: fadeRight 0.45s 0.86s ease both;
}

.dw {
    position: absolute;
    left: -38px;
    top: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--green-dark);
    transition:
        background 0.25s,
        transform 0.2s,
        box-shadow 0.2s;
}
.row:nth-child(2) .dot {
    animation: dotPop 0.3s 0.45s ease both;
}
.row:nth-child(3) .dot {
    animation: dotPop 0.3s 0.57s ease both;
}
.row:nth-child(4) .dot {
    animation: dotPop 0.3s 0.69s ease both;
}
.row:nth-child(5) .dot {
    animation: dotPop 0.3s 0.81s ease both;
}
.row:nth-child(6) .dot {
    animation: dotPop 0.3s 0.93s ease both;
}
.row:hover .dot {
    background: var(--green-dark);
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(99, 153, 34, 0.15);
}

.rnum {
    font-size: 10.5px;
    font-weight: 700;
    color: #c5d9a0;
    min-width: 18px;
    padding-top: 8px;
    letter-spacing: 0.05em;
}

.rbody {
    flex: 1;
    border-radius: 14px;
    border: 1.5px solid #edf2e3;
    background: #fff;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition:
        border-color 0.2s,
        transform 0.2s,
        background 0.2s;
}
.row:hover .rbody {
    border-color: #b8d97a;
    transform: translateX(5px);
    background: #fdfff9;
}

.ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.ico i {
    font-size: 18px;
}
.row:hover .ico {
    transform: scale(1.1) rotate(-4deg);
}

.ig {
    background: #eaf3de;
    box-shadow: inset 0 0 0 1px rgba(99, 153, 34, 0.15);
}
.ig i {
    color: #3b6d11;
}
.ir {
    background: #fef2f2;
    box-shadow: inset 0 0 0 1px rgba(220, 50, 50, 0.1);
}
.ir i {
    color: #a32d2d;
}
.ib {
    background: #eff6ff;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.1);
}
.ib i {
    color: #185fa5;
}
.io {
    background: #fffbeb;
    box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.1);
}
.io i {
    color: #854f0b;
}
.it {
    background: #f0fdf9;
    box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.1);
}
.it i {
    color: #0f6e56;
}

.rt {
    flex: 1;
}

.rttl {
    font-size: 17px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 2px;
}

.rsub {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    color: var(--text);
    line-height: 1.5;
}

.rpill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    background: var(--green-light);
    color: #27500a;
    border: 1px solid #c0dd97;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.row:nth-child(2) .rpill {
    animation: popIn 0.3s 0.58s ease both;
}
.row:nth-child(3) .rpill {
    animation: popIn 0.3s 0.7s ease both;
}
.row:nth-child(4) .rpill {
    animation: popIn 0.3s 0.82s ease both;
}
.row:nth-child(5) .rpill {
    animation: popIn 0.3s 0.94s ease both;
}
.row:nth-child(6) .rpill {
    animation: popIn 0.3s 1.06s ease both;
}

/* ── WCU responsive ── */
@media (max-width: 900px) {
    .wcu-split {
        grid-template-columns: 1fr 1.4fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .wcu {
        padding: 48px 0;
    }

    .wcu-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .wcu-left {
        position: static;
        max-width: 100%;
    }

    .wcu-h {
        font-size: clamp(1.3rem, 4.5vw, 1.6rem);
    }
}

@media (max-width: 480px) {
    .wcu {
        padding: 36px 0;
    }

    .wcu-split {
        padding: 0 16px;
    }

    .rbody {
        padding: 0.7rem 0.85rem;
        gap: 0.6rem;
    }

    .ico {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .ico i {
        font-size: 16px;
    }

    .rttl {
        font-size: 15px;
    }

    .rpill {
        display: none;
    }

    .rnum {
        display: none;
    }
}

/* ════════════════════════════════
   SEOAD SECTION — REDESIGNED
════════════════════════════════ */
.seoad-section {
    --sa-red: #e3362e;
    --sa-red-light: #fde8e8;
    --sa-red-dark: #b52920;
    --sa-green: #86b413;
    --sa-green-light: #eaf3de;
    --sa-green-dark: #3b6d11;
    --sa-text: #000000;
    --sa-border: rgba(0, 0, 0, 0.1);
    --sa-bg: #ffffff;
    --sa-radius-lg: 16px;
    --sa-radius-md: 10px;

    width: 100%;
    padding: 64px 24px;
    box-sizing: border-box;
}

.seoad-section .sa-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* ── Eyebrow ── */
.seoad-section .sa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sa-red);
    margin-bottom: 6px;
}
.seoad-section .sa-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--sa-red);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ════════════════════════════════
   HERO PANEL (split block)
════════════════════════════════ */
.seoad-section .sa-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--sa-border);
    border-radius: var(--sa-radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Hero Left */
.seoad-section .sa-hero-left {
    padding: 40px 36px;
    border-right: 1px solid var(--sa-border);
    background: var(--sa-bg);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.seoad-section .sa-brand-title {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--sa-green);
    margin: 0;
}
.seoad-section .sa-brand-title em {
    font-style: normal;
    color: var(--sa-red);
}

.seoad-section .sa-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sa-text);
    margin: 0;
}

.seoad-section .sa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.seoad-section .sa-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--sa-text);
    border: 1px solid var(--sa-border);
    border-radius: 50px;
    padding: 5px 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--sa-bg);
    white-space: nowrap;
}
.seoad-section .sa-badge i {
    font-size: 13px;
}

.seoad-section .sa-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--sa-border);
}

.seoad-section .sa-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.seoad-section .sa-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seoad-section .sa-hero-left {
    padding: 40px 36px;
}
/* ════════════════════════════════
   MISSION / VISION CARDS
════════════════════════════════ */
.seoad-section .sa-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.seoad-section .sa-card {
    border-radius: 14px;
    border: 1px solid var(--sa-border);
    overflow: hidden;
    background: var(--sa-bg);
    display: grid;
    grid-template-rows: auto 1fr;
}

/* Card Header */
.seoad-section .sa-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--sa-border);
}

.seoad-section .sa-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--sa-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.seoad-section .sa-card-icon i {
    font-size: 22px;
}

.seoad-section .sa-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seoad-section .sa-card-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.seoad-section .sa-card-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    color: #1a1a1a;
}

/* Card Body */
.seoad-section .sa-card-body {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--sa-text);
    font-weight: 600;
}

/* Mission theme */
.seoad-section .sa-card.mission .sa-card-head {
    background: var(--sa-red-light);
}
.seoad-section .sa-card.mission .sa-card-icon {
    background: rgba(227, 54, 46, 0.15);
    color: var(--sa-red);
}
.seoad-section .sa-card.mission .sa-card-tag {
    color: var(--sa-red-dark);
}

/* Vision theme */
.seoad-section .sa-card.vision .sa-card-head {
    background: var(--sa-green-light);
}
.seoad-section .sa-card.vision .sa-card-icon {
    background: rgba(134, 180, 19, 0.2);
    color: var(--sa-green-dark);
}
.seoad-section .sa-card.vision .sa-card-tag {
    color: var(--sa-green-dark);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
    .seoad-section {
        padding: 56px 20px;
    }

    .seoad-section .sa-hero-left,
    .seoad-section .sa-hero-right {
        padding: 32px 28px;
    }

    .seoad-section .sa-badge {
        font-size: 12px;
        padding: 4px 11px;
    }
}

@media (max-width: 767px) {
    .seoad-section {
        padding: 48px 16px;
    }

    .seoad-section .sa-hero {
        grid-template-columns: 1fr;
    }

    .seoad-section .sa-hero-left {
        border-right: none;
        border-bottom: 1px solid var(--sa-border);
        padding: 28px 22px;
        gap: 14px;
    }

    .seoad-section .sa-hero-right {
        padding: 28px 22px;
        gap: 10px;
    }

    .seoad-section .sa-brand-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .seoad-section .sa-hero-quote {
        font-size: 17px;
    }

    .seoad-section .sa-cards {
        grid-template-columns: 1fr;
    }

    .seoad-section .sa-card-head {
        padding: 18px 20px 16px;
    }

    .seoad-section .sa-card-body {
        padding: 18px 20px;
    }

    .seoad-section .sa-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .seoad-section .sa-brand-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .seoad-section .sa-badges {
        gap: 6px;
    }

    .seoad-section .sa-badge {
        font-size: 11px;
        padding: 4px 9px;
    }

    .seoad-section .sa-card-icon {
        width: 38px;
        height: 38px;
    }
    .seoad-section .sa-card-icon i {
        font-size: 19px;
    }

    .seoad-section .sa-card-title {
        font-size: 14px;
    }
}
/* ════════════════════════════════
   CONTACT REACH SECTION
════════════════════════════════ */
.reach-contact {
    width: 100%;
    background: #faf0ec;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.reach-contact .reach-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── left ── */
.reach-contact .reach-left {
    padding-right: 10px;
}

.reach-contact .reach-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.reach-contact .reach-badge-text {
    font-size: var(--body-size);
    font-weight: 600;
    color: var(--red);
}

.reach-contact .reach-badge-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
}
.reach-contact .reach-badge-arrow svg {
    width: 28px;
    height: 14px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reach-contact .reach-badge-icon {
    width: 28px;
    height: 28px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reach-contact .reach-badge-icon i {
    font-size: 15px;
    color: var(--red);
}

.reach-contact .reach-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1.15;
    margin-bottom: 18px;
}
.reach-contact .reach-heading span {
    color: var(--red);
}

.reach-contact .reach-desc {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    color: var(--text);
    line-height: var(--body-lh);
    margin-bottom: 36px;
    max-width: 420px;
}

.reach-contact .reach-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reach-contact .reach-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
}

.reach-contact .reach-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.reach-contact .reach-icon-wrap i {
    font-size: 22px;
}

.reach-contact .reach-icon-yellow {
    background: #fff3cd;
}
.reach-contact .reach-icon-yellow i {
    color: #b45309;
}
.reach-contact .reach-icon-pink {
    background: #ffe8ec;
}
.reach-contact .reach-icon-pink i {
    color: var(--red);
}

.reach-contact .reach-info-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.reach-contact .reach-info-box p {
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    color: var(--text);
    line-height: var(--body-lh);
}

/* ── right / form ── */
.reach-contact .reach-right {
    position: relative;
}

.reach-contact .reach-form-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(227, 54, 46, 0.35);
}
.reach-contact .reach-form-badge i {
    font-size: 24px;
    color: #fff;
}

.reach-contact .reach-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 40px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reach-contact .reach-form-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 45%;
    background-image: radial-gradient(circle, #ddd 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    border-radius: 0 20px 0 0;
    z-index: 0;
    pointer-events: none;
}

.reach-contact .reach-fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.reach-contact .reach-ffull {
    grid-column: 1 / -1;
    position: relative;
    z-index: 1;
}

.reach-contact .reach-form-card input[type="text"],
.reach-contact .reach-form-card input[type="email"],
.reach-contact .reach-form-card textarea {
    width: 100%;
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    color: var(--text);
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.reach-contact .reach-form-card input::placeholder,
.reach-contact .reach-form-card textarea::placeholder {
    color: #bbbbbb;
}

.reach-contact .reach-form-card input:focus,
.reach-contact .reach-form-card textarea:focus {
    border-color: var(--red);
}

.reach-contact .reach-form-card textarea {
    min-height: 130px;
    line-height: 1.6;
}

.reach-contact .reach-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: var(--body-size);
    font-weight: 600;
    border: none;
    border-radius: 999px;
    padding: 14px 32px;
    cursor: pointer;
    margin-top: 20px;
    transition:
        background 0.2s,
        transform 0.15s;
    position: relative;
    z-index: 1;
}
.reach-contact .reach-btn-submit:hover {
    background: var(--red-dark);
}
.reach-contact .reach-btn-submit:active {
    transform: scale(0.97);
}

/* ── Reach responsive ── */
@media (max-width: 900px) {
    .reach-contact {
        padding: 60px 24px;
    }

    .reach-contact .reach-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reach-contact .reach-left {
        padding-right: 0;
    }

    .reach-contact .reach-desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .reach-contact {
        padding: 48px 20px;
    }

    .reach-contact .reach-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .reach-contact .reach-info-box {
        padding: 18px 16px;
    }

    .reach-contact .reach-icon-wrap {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    .reach-contact .reach-icon-wrap i {
        font-size: 18px;
    }

    .reach-contact .reach-form-card {
        padding: 40px 24px 28px;
    }
}

@media (max-width: 500px) {
    .reach-contact {
        padding: 40px 16px;
    }

    .reach-contact .reach-fgrid {
        grid-template-columns: 1fr;
    }

    .reach-contact .reach-info-boxes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reach-contact .reach-form-card {
        padding: 36px 18px 24px;
        border-radius: 16px;
    }

    .reach-contact .reach-btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}
.page-hero-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        90deg,
        #27500a 0%,
        #4f9a14 25%,
        #ffffff 50%,
        #4f9a14 75%,
        #27500a 100%
    );
    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:
        shineText 6s linear infinite,
        slideUp 1.2s ease-out;
}

.page-hero-title span {
    display: block;
    font-size: 30px;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: none;

    background: linear-gradient(90deg, #27500a, #5fb31d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: fadeInUp 1.5s ease forwards;
}

/* Main heading animation */
@keyframes shineText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Slide Up */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .rail {
        padding-left: 0;
    }
}
