/* ============================================================
   GOLO GENERAL DEALER — Global Stylesheet (Template Redesign)
   Forest Green + Cream + Red palette
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    /* ── Red (primary CTA / highlights) ── */
    --primary: #E63929;
    --primary-d: #c22e1e;
    --primary-light: rgba(230, 57, 41, 0.10);

    /* ── Forest Green (headings / dark sections / accents) ── */
    --green: #263321;
    /* deep forest – dominant from template */
    --green-mid: #3d5235;
    /* medium forest green */
    --green-soft: #5a7a4e;
    /* softer green for tags / icons */
    --green-light: #eef2ea;
    /* light green tint for navbar / strips */
    --green-xlight: #f2f5ef;
    /* even lighter for hover states */

    /* ── Cream / Earth tones (section backgrounds) ── */
    --cream: #f0efe7;
    /* warm cream – hero / about bg */
    --cream-d: #e8e7df;
    /* slightly darker cream */
    --cream-l: #f8f7f2;
    /* lightest cream */

    /* ── Typography ── */
    --dark: #263321;
    /* forest green instead of navy */
    --dark2: #1e2a1a;
    /* near-black forest green */
    --text: #2e3e28;
    /* body text */
    --text-muted: #6e8065;
    /* muted olive green */

    /* ── Utilities ── */
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: rgba(38, 51, 33, 0.10);
    --border-light: rgba(38, 51, 33, 0.06);
    --shadow: 0 4px 24px rgba(38, 51, 33, 0.08);
    --shadow-md: 0 8px 32px rgba(38, 51, 33, 0.12);
    --shadow-lg: 0 16px 48px rgba(38, 51, 33, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-h: 76px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Century Gothic', 'Gill Sans', sans-serif;
    background: var(--cream-l);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- Badges ---- */
.section-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(90, 122, 78, 0.20);
}

.section-badge.badge-red {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(230, 57, 41, 0.15);
}

/* ---- Headings ---- */
.section-title {
    font-family: 'Century Gothic', 'Gill Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-title span.green {
    color: var(--green-soft);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.85;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Century Gothic', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(230, 57, 41, 0.30);
}

.btn-primary:hover {
    background: var(--primary-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 57, 41, 0.40);
}

.btn-green {
    background: var(--green-mid);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(38, 51, 33, 0.25);
}

.btn-green:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(38, 51, 33, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-green {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.50);
}

.btn-outline-green:hover {
    background: var(--green-light);
    color: var(--green);
    border-color: var(--green-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR — Centered logo, split left/right links (Template style)
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid rgba(38, 51, 33, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(38, 51, 33, 0.10);
}

/* Full-width flex row: left-links | logo | right-group */
.nav-inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 72px;
    width: auto;
}

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

.nav-links-left {
    flex: 1;
    justify-content: flex-end;
}

.nav-links-right {
    justify-content: flex-start;
}

.nav-links a {
    display: block;
    padding: 7px 15px;
    color: #555;
    font-weight: 600;
    font-size: 0.87rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
}

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

.nav-links a.active {
    color: var(--primary);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-start;
}

.btn-nav-cta {
    padding: 10px 26px !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
    margin-left: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   PAGE HERO (About / Contact inner pages)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: var(--green-light);
    overflow: hidden;
    padding-top: var(--nav-h);
    border-bottom: 1px solid rgba(38, 51, 33, 0.10);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 50%, rgba(230, 57, 41, 0.07) 0%, transparent 55%),
        radial-gradient(circle at 15% 80%, rgba(38, 51, 33, 0.05) 0%, transparent 50%);
}

/* Decorative diagonal green stripe */
.page-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(38, 51, 33, 0.06);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 0 56px;
}

.page-hero-content .section-badge {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(230, 57, 41, 0.15);
}

.page-hero h1 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

/* ============================================================
   HERO — Template Two-Column Layout
   Left: text + category thumbnails | Right: full-bleed image
   ============================================================ */
.template-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    background: var(--white);
    overflow: hidden;
    margin-top: var(--nav-h);
}

.hero-two-col {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: calc(100vh - var(--nav-h));
}

/* ── Left column ── */
.hero-left {
    display: flex;
    align-items: center;
    padding: 70px 56px 70px 80px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

/* Soft red blob bottom-left */
.hero-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 41, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-left-inner {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.hero-headline {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-headline .hl-red {
    color: var(--primary);
}

.hero-headline .hl-green {
    color: var(--green-soft);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 440px;
    line-height: 1.85;
    margin-bottom: 44px;
}

/* Category thumbnail cards row */
.hero-thumb-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-thumb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--cream-l);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-width: 105px;
    position: relative;
}

.hero-thumb-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 24px rgba(230, 57, 41, 0.12);
    transform: translateY(-3px);
}

.htc-img {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.htc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-thumb-card:hover .htc-img img {
    transform: scale(1.08);
}

.hero-thumb-card span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    letter-spacing: 0.3px;
}

.hero-thumb-card i {
    font-size: 0.65rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dot indicators */
.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ── Right column ── */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.hero-right:hover .hero-img-fill {
    transform: scale(1.03);
}

/* Decorative leaf accent */
.hero-leaf-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 110px;
    height: 110px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Eucalyptus_tereticornis_leaves.jpg/120px-Eucalyptus_tereticornis_leaves.jpg') center/cover;
    border-radius: 50%;
    opacity: 0.55;
    pointer-events: none;
}

/* Legacy / unused helpers retained for other pages */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-circle-wrap {
    position: relative;
    z-index: 1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 10px solid var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.img-main-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   FEATURES STRIP (Below Hero)  —  dark green background
   ============================================================ */
.hero-features-strip {
    background: var(--green);
    padding: 32px 0;
}

.hf-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.hf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    cursor: default;
    transition: var(--transition);
}

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

.hf-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.hf-item:hover .hf-icon {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(230, 57, 41, 0.4);
}

.hf-item span {
    font-size: 0.83rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Dividers between items */
.hf-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ============================================================
   HOW WE WORK SECTION — Template style
   GOLO watermark + 4 cards left, heading+desc right
   ============================================================ */
.how-section {
    position: relative;
    background: var(--white);
    padding: 100px 0 0;
    overflow: hidden;
}

/* ── Vertical side watermark (like template's brand text on the side) ── */
.how-watermark {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 900;
    color: rgba(38, 51, 33, 0.05);
    letter-spacing: 16px;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    line-height: 1;
}

/* ── Two-column layout ── */
.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

/* Cards column — two sub-cols, right one offset down for stagger */
.how-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    align-items: start;
}

/* Left sub-column: top-aligned */
.how-col-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Right sub-column: pushed down to create stagger */
.how-col-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 44px;
}

/* Base card */
.how-card {
    border-radius: 20px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.how-card:hover {
    transform: translateY(-5px);
}

/* White variant */
.how-card-white {
    background: var(--white);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
}

.how-card-white:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 41, 0.20);
}

/* Red highlight variant (the featured card) */
.how-card-red {
    background: var(--primary);
    border: none;
    box-shadow: 0 12px 40px rgba(230, 57, 41, 0.35);
}

.how-card-red:hover {
    box-shadow: 0 18px 52px rgba(230, 57, 41, 0.45);
}

/* Icon wrappers */
.hc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hc-icon-red {
    background: var(--primary-light);
    color: var(--primary);
}

.hc-icon-white {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

/* Card text */
.hc-text h4 {
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.hc-text p {
    font-size: 0.82rem;
    line-height: 1.7;
}

.how-card-white .hc-text h4 {
    color: var(--dark);
}

.how-card-white .hc-text p {
    color: var(--text-muted);
}

.how-card-red .hc-text h4 {
    color: var(--white);
}

.how-card-red .hc-text p {
    color: rgba(255, 255, 255, 0.80);
}

/* Right text column */
.how-text-col {
    padding-left: 8px;
}

.how-heading {
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 22px;
}

.how-highlight {
    color: var(--primary);
}

.how-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 480px;
}

/* ── Angled/diagonal divider at the bottom ── */
.how-divider {
    position: relative;
    line-height: 0;
    margin-top: -2px;
}

.how-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ============================================================
   HERO SOCIAL SIDEBAR — vertical icons on the right image edge
   ============================================================ */
.hero-social-bar {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.hsb-line {
    width: 1.5px;
    height: 60px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    margin-bottom: 4px;
}

.hsb-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.82rem;
    transition: var(--transition);
    text-decoration: none;
}

.hsb-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(230, 57, 41, 0.45);
}

/* ============================================================
   ABOUT / MISSION — Template Layout
   ============================================================ */

.template-about-section {
    padding: 108px 0;
    background: var(--cream-l);
    position: relative;
    overflow: hidden;
}

/* Vertical watermark */
.vertical-watermark {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center right;
    font-family: 'Century Gothic', sans-serif;
    font-size: 13rem;
    font-weight: 800;
    color: rgba(38, 51, 33, 0.04);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 14px;
    user-select: none;
}

.about-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-left-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 520px;
}

.about-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Red accent corner on image */
.about-left-image::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
}

/* Green accent corner */
.about-left-image::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 60px;
    height: 60px;
    background: var(--green-soft);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.about-right-text {
    padding-right: 24px;
}

.about-quote {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: var(--dark);
    line-height: 1.28;
    margin-bottom: 22px;
    position: relative;
    padding-left: 6px;
}

.about-quote::before {
    content: '"';
    position: absolute;
    left: -30px;
    top: -12px;
    font-size: 5rem;
    color: rgba(230, 57, 41, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.about-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
}

/* Stats row */
.about-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.astat {
    display: flex;
    flex-direction: column;
}

.astat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.astat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

.about-toggles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.toggle-pill {
    padding: 9px 22px;
    border-radius: 50px;
    background: var(--green-light);
    color: var(--green-mid);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    border: 1.5px solid rgba(38, 51, 33, 0.12);
    transition: var(--transition);
}

.toggle-pill:hover {
    background: var(--green-xlight);
}

.toggle-pill.active.red {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.toggle-pill.active,
.toggle-pill.active.green {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-img-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Red top accent line */
.service-img-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-img-card:nth-child(2)::before {
    background: var(--green-soft);
}

.service-img-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.service-img-card:hover::before {
    opacity: 1;
}

.sic-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.sic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-img-card:hover .sic-img img {
    transform: scale(1.08);
}

/* Category tag on image */
.sic-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.service-img-card:nth-child(1) .sic-tag {
    background: var(--primary);
}

.service-img-card:nth-child(3) .sic-tag {
    background: var(--green-mid);
}

.sic-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sic-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.sic-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
    flex-grow: 1;
}

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.service-img-card:nth-child(2) .sc-link {
    color: var(--green-soft);
}

.sc-link:hover {
    gap: 14px;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
    padding: 100px 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
}

/* Light dot pattern overlay */
.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.values-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.values-header .section-title {
    color: var(--white);
}

.values-header .section-title span {
    color: var(--primary);
}

.values-header .section-desc {
    color: rgba(255, 255, 255, 0.60);
    margin: 0 auto;
}

.values-header .section-badge {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.80);
    border-color: rgba(255, 255, 255, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
}

/* Alternate red/green icons */
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 auto 16px;
    background: var(--primary);
}

.value-card:nth-child(even) .value-icon {
    background: var(--green-soft);
}

.value-card:nth-child(3n) .value-icon {
    background: var(--green-mid);
}

.value-card h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* ============================================================
   COMPANY INFO STRIP
   ============================================================ */
.info-strip {
    background: var(--cream-l);
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.info-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.isi-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-light);
    border: 1px solid rgba(38, 51, 33, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-soft);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-strip-item:nth-child(even) .isi-icon {
    background: var(--primary-light);
    border-color: rgba(230, 57, 41, 0.12);
    color: var(--primary);
}

.isi-label {
    font-size: 0.70rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    font-weight: 600;
}

.isi-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 3px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(230, 57, 41, 0.12);
}

/* Red accent stripe */
.cta-banner-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(230, 57, 41, 0.3) 50%, transparent 100%);
}

.cta-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-inner h2 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-inner h2 span {
    color: var(--primary);
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    margin-bottom: 38px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER  —  dark forest green
   ============================================================ */
.footer {
    background: var(--dark2);
    color: rgba(255, 255, 255, 0.70);
    padding: 68px 0 0;
    border-top: 3px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 52px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.48);
    max-width: 260px;
    margin-bottom: 26px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.90rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
}

/* alternate green underline for 2nd col */
.footer-col:nth-child(3) h4::after {
    background: var(--green-soft);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul li a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.48);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--green-soft);
    font-size: 1.1rem;
    line-height: 1;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 13px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.48);
}

.footer-contact-item i {
    color: var(--green-soft);
    margin-top: 3px;
    min-width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom span {
    color: var(--primary);
}

.footer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.20);
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(230, 57, 41, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    font-size: 1rem;
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-top:hover {
    transform: translateY(-3px);
    background: var(--green);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

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

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

    /* Hero: stack on tablet */
    .hero-two-col {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        height: 420px;
    }

    /* How section: stack on tablet */
    .how-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }

    .how-text-col {
        padding-left: 0;
    }

    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-right-text {
        padding-right: 0;
    }

    /* Navbar: tighten on tablet */
    .nav-inner-wrap {
        padding: 0 24px;
    }

    .nav-links-right {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Navbar mobile */
    .nav-links-left,
    .nav-links-right,
    .nav-right-group {
        display: none;
    }

    .nav-links-left.open {
        display: flex;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links-left.open a {
        padding: 12px 16px;
        border-radius: 8px;
    }

    .nav-inner-wrap {
        justify-content: space-between;
    }

    .nav-logo {
        margin: 0 auto;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero mobile */
    .hero-two-col {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 48px 24px 40px;
    }

    .hero-right {
        height: 320px;
    }

    .hero-thumb-row {
        gap: 10px;
    }

    .hero-thumb-card {
        min-width: 90px;
        padding: 12px;
    }

    /* How section mobile */
    .how-cards-col {
        grid-template-columns: 1fr 1fr;
    }

    .how-watermark {
        display: none;
    }

    .how-section {
        padding: 64px 0 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-desc {
        max-width: 100%;
    }

    .about-split-layout {
        grid-template-columns: 1fr;
    }

    .vertical-watermark {
        display: none;
    }

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

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

    .info-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hf-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 22px;
        font-size: 0.87rem;
    }

    .container {
        padding: 0 18px;
    }

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

    .info-strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        height: 260px;
    }

    .hero-thumb-row {
        gap: 8px;
    }

    .hero-thumb-card {
        min-width: 80px;
        padding: 10px 8px;
    }

    .htc-img {
        width: 54px;
        height: 54px;
    }

    .hero-circle-wrap {
        max-width: 280px;
    }

    .about-stats {
        gap: 18px;
    }
}