/* ============================================================
   MUKWA PROJECTS — Global Stylesheet
   Source of truth: DESIGN.md
   ============================================================ */

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

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* Colours */
    --clr-forest: #054024;
    /* Primary dark green — headings, hero, CTA blocks, buttons */
    --clr-gold: #F2C029;
    /* Secondary accent — sub-labels, icons, dividers */
    --clr-bg: #F9F9F9;
    /* Page body & footer background */
    --clr-surface: #FFFFFF;
    /* Header, service sections, form container */
    --clr-card: #F2F2F2;
    /* Service cards sitting on white sections */
    --clr-text: #555555;
    /* Body / paragraph text */
    --clr-heading: #054024;
    /* All headings */
    --clr-border: rgba(5, 64, 36, 0.10);
    /* Subtle dividers */
    --clr-input: #CCCCCC;
    /* Form field border */
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;

    /* Layout */
    --container-w: 1200px;
    --header-h: 120px;
    --section-v: 100px;

    /* Radii */
    --r-pill: 50px;
    --r-card: 12px;
    --r-input: 4px;
    /* Sharp, per DESIGN.md */
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
}

main {
    padding-top: var(--header-h);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 55px;
    margin-bottom: 24px;
    line-height: 1.1;
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--clr-forest);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--clr-gold);
}

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

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    max-width: 1600px;
    /* Fluid but capped for very large screens */
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: var(--section-v) 0;
}

/* Grid system */
.grid {
    display: grid;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

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

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

/* Specific splits per DESIGN.md */
.grid-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.grid-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Flex utilities */
.flex {
    display: flex;
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

/* Spacing */
.mb-2 {
    margin-bottom: 8px;
}

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

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-10 {
    margin-bottom: 40px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Typography utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 15px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 20px;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.08em;
}

.leading-tight {
    line-height: 1.3;
}

.max-w-xl {
    max-width: 560px;
}

.max-w-2xl {
    max-width: 680px;
}

/* Color utilities */
.text-forest {
    color: var(--clr-forest);
}

.text-teal {
    color: var(--clr-gold);
}

.text-white {
    color: var(--clr-white);
}

.text-muted {
    color: var(--clr-text);
}

.bg-forest {
    background-color: var(--clr-forest);
}

.bg-surface {
    background-color: var(--clr-surface);
}

.bg-bg {
    background-color: var(--clr-bg);
}

.bg-card {
    background-color: var(--clr-card);
}

/* Opacity */
.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

/* Sizing */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Display */
.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.hidden {
    display: none;
}

/* Radius */
.rounded-pill {
    border-radius: var(--r-pill);
}

.rounded-card {
    border-radius: var(--r-card);
}

/* Shadows */
.shadow-subtle {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

/* Decorative */
.divider-short {
    width: 50px;
    height: 3px;
    background-color: var(--clr-gold);
    margin-top: 20px;
}

/* Sub-label (e.g. "WHO WE ARE", "EXPERTISE") */
.sub-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-gold);
    margin-bottom: 12px;
}

/* ============================================================
   4. BUTTONS
   DESIGN.md: strict pill shape (50px), three variants
   ============================================================ */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: var(--r-pill);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    border: 2px solid transparent;
    line-height: 1.4;
}

/* Style 1 — Solid dark (default) */
.btn-solid {
    background-color: var(--clr-forest);
    color: var(--clr-white);
    border-color: var(--clr-forest);
}

.btn-solid:hover {
    background-color: #043319;
    border-color: #043319;
    color: var(--clr-white);
    transform: translateY(-2px);
}

#header-cta {
    padding: 13px 48px;
}


/* Style 2 — Solid white */
.btn-solid-white {
    background-color: var(--clr-white);
    color: var(--clr-forest);
    border-color: var(--clr-white);
}

.btn-solid-white:hover {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* Style 3 — Outline */
.btn-outline {
    background-color: transparent;
    color: var(--clr-forest);
    border-color: var(--clr-forest);
}

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

/* Outline on dark bg (used in hero) */
.btn-outline-white {
    background-color: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}

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

/* ============================================================
   5. HEADER
   ============================================================ */
header {
    height: var(--header-h);
    background: var(--clr-bg);
    /* #F9F9F9 per screenshot and DESIGN.md */
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    height: 95px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}


.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.logo {
    justify-self: start;
}

.header-actions {
    justify-self: end;
}

.logo img {
    height: 90px;
    /* Increased for pixel-perfect match with screenshot */
    width: auto;
    transition: height 0.3s ease;
}


header.scrolled .logo img {
    height: 72px;
}

/* Mobile Menu Extra Components (hidden on desktop) */
.mobile-menu-extra {
    display: none;
}

/* Navigation Links */
.nav-links ul {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Slightly wider per screenshot */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    color: var(--clr-forest);
    opacity: 0.8;

    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

/* Centered 18px underline for active/hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--clr-forest);
    transition: width 0.3s ease;
}

/* Active state: centered underline */
.nav-links a.active {
    color: var(--clr-forest);
    font-weight: 500;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 22px;
    /* Short, thick underline as seen in screenshot */
}

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

/* Dropdown Container */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--clr-surface);
    min-width: 240px;
    border-radius: var(--r-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}


.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--clr-text);
    font-size: 14px;
    transition: all 0.2s ease;
    border: none !important;
}

.dropdown-menu a::after {
    display: none;
    /* No underline for dropdown links */
}

.dropdown-menu a:hover {
    background-color: var(--clr-bg);
    color: var(--clr-forest);
    padding-left: 30px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--clr-forest);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    order: 3;
    /* Push to the right in flex/grid */
    margin-left: 20px;
}

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-box {
    background-color: var(--clr-forest);
    padding: 70px 60px;
    max-width: 620px;
    width: 100%;
}

.hero-box h1 {
    color: var(--clr-white);
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-box p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   7. PAGE HEADER (Inner pages)
   ============================================================ */
.page-header {
    background-color: var(--clr-forest);
    padding: 100px 0;
    text-align: center;
}

.page-header .sub-label {
    color: var(--clr-gold);
}

.page-header h1 {
    color: var(--clr-white);
    font-size: 55px;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   8. INTRO / "We help simplify the complex" SECTION (Home)
   ============================================================ */
.intro-section {
    background-color: var(--clr-bg);
    padding: var(--section-v) 0;
}

.intro-heading h2 {
    font-size: 38px;
    color: var(--clr-forest);
    margin-bottom: 0;
    line-height: 1.2;
}

.intro-body p {
    color: var(--clr-text);
    font-size: 15px;
}

/* "ABOUT US >" link — matches image: bold, dark green, uppercase, small */
.intro-about-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--clr-forest);
    text-decoration: none;
    margin-top: 12px;
    transition: color 0.2s ease;
}

.intro-about-link:hover {
    color: var(--clr-gold);
}

/* ============================================================
   9. SERVICES HOME SECTION — Dark green bg, icon grid + cube
   ============================================================ */
.services-home-section {
    background-color: var(--clr-forest);
    padding: var(--section-v) 0;
}

.services-home-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-home-left h2 {
    color: var(--clr-white);
    font-size: 36px;
    margin-bottom: 14px;
}

.services-home-intro {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* 2-column icon + label grid */
.services-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
}

.svc-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.svc-item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.svc-item:nth-child(even) {
    padding-left: 24px;
}

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

.svc-item iconify-icon {
    font-size: 32px;
    color: var(--clr-gold);
}

.svc-item span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-white);
    line-height: 1.3;
}

.svc-item--more iconify-icon {
    color: rgba(255, 255, 255, 0.40);
}

.svc-item--more span {
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

/* Right: cube image */
.services-home-right img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin-left: auto;
    border-radius: 4px;
}

.service-card {
    background-color: var(--clr-card);
    border-radius: var(--r-card);
    padding: 40px 36px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(5, 64, 36, 0.10);
    transform: translateY(-4px);
}

.service-card iconify-icon {
    font-size: 40px;
    color: var(--clr-gold);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--clr-forest);
}

.service-card p {
    font-size: 15px;
    color: var(--clr-text);
    line-height: 1.7;
}

/* ============================================================
   10. APPROACH SECTION (Home)
   DESIGN.md: light #F9F9F9 bg, 50/50 split image left/content right
   ============================================================ */
.approach-section {
    background-color: var(--clr-bg);
    padding: var(--section-v) 0;
}

.approach-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-card);
}

.approach-content h2 {
    font-size: 36px;
    color: var(--clr-forest);
    margin-bottom: 20px;
}

.approach-content>p {
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.approach-features-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-forest);
    margin-bottom: 16px !important;
}

/* 2-col inline checkmark grid */
.approach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 36px;
}

.approach-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text);
    font-family: var(--font-heading);
}

.approach-check-item .check {
    color: var(--clr-forest);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================================
   11. PRE-FOOTER CTA — Floating dark block on light bg
   DESIGN.md: rounded block (12px), bg #054024, on #F9F9F9
   ============================================================ */
.pre-footer {
    background-color: var(--clr-bg);
    padding: 80px 0;
}

.cta-float {
    background-color: var(--clr-forest);
    border-radius: var(--r-card);
    padding: 48px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(5, 64, 36, 0.20);
    max-width: var(--container-w);
    margin: 0 auto;
}

/* "Want more information?" text style from reference image */
.cta-float-text,
.cta-float h3 {
    color: var(--clr-white) !important;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.2;
}

/* ============================================================
   12. FOOTER — Light gray, 3-column
   DESIGN.md: #F9F9F9 bg, full-color logo, dark text
   ============================================================ */
footer {
    background-color: var(--clr-bg);
    padding: 80px 0 0;
    border-top: 1px solid var(--clr-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Column 1 — Logo & tagline */

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--clr-text);
    max-width: 300px;
}

/* Column 2 — Quick Links */
.footer-nav h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--clr-forest);
    margin-bottom: 24px;
}

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav nav a {
    font-size: 15px;
    color: var(--clr-text);
    transition: color 0.2s ease;
}

.footer-nav nav a:hover,
.footer-nav nav a.active {
    color: var(--clr-forest);
}

/* Column 3 — Contact details */
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--clr-forest);
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--clr-text);
}

.footer-contact-item iconify-icon {
    font-size: 18px;
    color: var(--clr-forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--clr-text);
}

.footer-contact-item a:hover {
    color: var(--clr-forest);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-forest);
    font-size: 18px;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: var(--clr-forest);
    color: var(--clr-white);
    border-color: var(--clr-forest);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--clr-text);
}

.footer-bottom a {
    color: var(--clr-text);
}

.footer-bottom a:hover {
    color: var(--clr-forest);
}

/* ============================================================
   13. ABOUT PAGE SECTIONS
   ============================================================ */

/* About intro — 1/3 : 2/3 split (light gray bg) */
.about-intro-section {
    background-color: var(--clr-bg);
    padding: var(--section-v) 0;
}

.about-heading h2 {
    color: var(--clr-forest);
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 0;
}

.about-text p {
    color: var(--clr-text);
    font-size: 15px;
}

/* About approach — 50/50 with plain image left, content right */
.about-approach-section {
    background-color: var(--clr-bg);
    padding: var(--section-v) 0;
}

.about-approach-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

/* Plain image, no border-radius, matches screenshot */
.about-approach-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-approach-content h2 {
    color: var(--clr-forest);
    font-size: 32px;
    margin-bottom: 20px;
}

.about-approach-content p {
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Why Us — white bg, left-aligned header, plain 3-col items (no card box) */
.why-us-section {
    background-color: var(--clr-surface);
    padding: var(--section-v) 0;
}

/* Left-aligned header with full-width paragraph (matches image) */
.why-header {
    text-align: left;
    margin-bottom: 60px;
}

.why-header h2 {
    color: var(--clr-forest);
    font-size: 36px;
    margin-bottom: 20px;
}

.why-header p {
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.75;
    max-width: 100%;
}

/* Plain item — no card background, just number circle + title + text */
.why-item {
    padding-top: 8px;
}

.why-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--clr-forest);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-forest);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-item p {
    color: var(--clr-text);
    font-size: 14px;
    line-height: 1.75;
}

/* ============================================================
   14. SERVICES PAGE SECTIONS
   ============================================================ */
.service-row {
    padding: var(--section-v) 0;
}

.service-row-white {
    background-color: var(--clr-surface);
}

.service-row-gray {
    background-color: var(--clr-bg);
}

.service-row .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.service-content .sub-label {
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 30px;
    color: var(--clr-forest);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 32px;
}

/* ============================================================
   15. CONTACT PAGE
   ============================================================ */
.contact-section {
    background-color: var(--clr-bg);
    padding: var(--section-v) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--clr-forest);
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--clr-text);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--clr-forest);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-forest);
    margin-bottom: 4px;
}

.info-item p,
.info-item a {
    font-size: 15px;
    color: var(--clr-text);
    line-height: 1.6;
}

.info-item a:hover {
    color: var(--clr-forest);
}

/* Contact form container */
.contact-form-wrap {
    background-color: var(--clr-surface);
    border-radius: var(--r-card);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap h3 {
    font-size: 26px;
    margin-bottom: 32px;
    color: var(--clr-forest);
}

/* Form fields — DESIGN.md: sharp/slightly rounded (4px) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-forest);
    margin-bottom: 8px;
    opacity: 0.7;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--clr-input);
    border-radius: var(--r-input);
    /* 4px — sharp per DESIGN.md */
    background-color: var(--clr-surface);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--clr-forest);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-forest);
    box-shadow: 0 0 0 3px rgba(5, 64, 36, 0.08);
}

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



/* Submit button stretches full width */
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
}

/* ============================================================
   16. PRIVACY / THANK YOU / 404 PAGES
   ============================================================ */
.policy-section {
    padding: var(--section-v) 0;
}

.policy-content {
    max-width: 860px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 22px;
    margin: 40px 0 16px;
    color: var(--clr-forest);
}

.policy-content p {
    color: var(--clr-text);
    line-height: 1.8;
    margin-bottom: 18px;
}

.policy-content ul,
.policy-content ol {
    margin: 0 0 24px 20px;
}

.policy-content li {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-float {
        padding: 50px;
    }

    .services-home-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-home-right img {
        max-width: 340px;
        margin: 0 auto;
    }

    .approach-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-approach-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    /* Mobile nav */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        background: var(--clr-surface);
        padding: 0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--clr-border);
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        width: 100%;
        color: var(--clr-forest);
        font-weight: 600;
        /* Bolder font for better visibility */
        border: none !important;
        opacity: 1 !important;
        /* Full opacity on mobile */
    }


    .nav-links a::after {
        display: none;
        /* Hide desktop underline on mobile */
    }

    /* Mobile Menu Extra Styles */
    .mobile-menu-extra {
        display: flex;
        flex-direction: column;
        padding: 30px 24px;
        gap: 16px;
        background-color: var(--clr-bg);
        border-top: 2px solid var(--clr-border);
    }

    .mobile-contact-btn {
        width: 100% !important;
        text-align: center;
        padding: 16px !important;
        color: var(--clr-white) !important;
    }


    .mobile-call-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background-color: var(--clr-forest);
        color: var(--clr-white) !important;
        font-weight: 700;
        font-size: 18px;
        padding: 16px 24px;
        text-decoration: none;
        border-radius: var(--r-pill);
        box-shadow: 0 4px 15px rgba(5, 64, 36, 0.2);
        margin: 10px 0;
        transition: all 0.3s ease;
    }

    .mobile-call-link:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .mobile-call-link iconify-icon {
        font-size: 24px;
        color: var(--clr-gold);
    }

    .mobile-social-row {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 10px;
    }

    .mobile-social-row a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background-color: var(--clr-white);
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        color: var(--clr-forest);
        font-size: 24px;
        padding: 0 !important;
    }

    .mobile-social-row a iconify-icon {
        font-size: 36px;
        margin: 0;
    }

    /* Layout Adjustments */
    .nav-wrapper {
        display: flex;
        /* Switch back to flex for mobile spacing */
        justify-content: space-between;
    }

    /* Hide desktop CTA on mobile */
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    /* Mobile Dropdown Styling */
    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
        overflow: hidden;
        max-height: 0;
        background-color: #f7f7f7;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease;
    }


    .dropdown.open .dropdown-menu {
        display: block;
        max-height: 1000px;
        /* Arbitrary large height for transition */
    }


    .dropdown.open>a iconify-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        display: block;
        padding: 15px 24px 15px 44px;
        /* Indent sub-links */
        font-size: 14px;
        color: var(--clr-forest);
        opacity: 0.9;
        transition: all 0.2s ease;
    }

    .dropdown-menu a:active {
        background-color: #eee;
    }


    /* Grids collapse */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-intro,
    .service-row .grid-2,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approach-features {
        grid-template-columns: 1fr;
    }

    /* Services home — stack on mobile */
    .services-home-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-icon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-home-right {
        display: none;
        /* hide cube image on mobile — matches original design */
    }

    /* Sections */
    :root {
        --section-v: 70px;
    }


    /* Hero */
    .hero-box {
        padding: 50px 32px;
    }

    .hero-box h1 {
        font-size: 40px;
    }

    /* CTA float */
    .cta-float {
        flex-direction: column;
        padding: 48px 32px;
        text-align: center;
        margin: 0 16px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Contact */
    .contact-form-wrap {
        padding: 32px 24px;
    }

    /* Service images */
    .service-image img {
        height: 260px;
    }

    /* Page header */
    .page-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .cta-float {
        margin: 0 8px;
    }
}