﻿/* ============================================================
   LOK HEYTU — MAIN STYLESHEET
   Palette: Forest Green | Warm Gold | Ivory | Charcoal
   ============================================================ */

:root {
    --green-deep: #1A3C2E;
    --green-mid: #2E6B4F;
    --green-sage: #6B8F71;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --ivory: #F7F3EC;
    --ivory-dark: #EDE9E0;
    --charcoal: #2D2D2D;
    --gray: #6C6C6C;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(26,60,46,0.08);
    --shadow-md: 0 6px 30px rgba(26,60,46,0.14);
    --radius: 4px;
    --transition: 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    color: var(--green-deep);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── SECTION LABEL (gold ribbon accent) ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

    .section-eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: var(--gold);
        flex-shrink: 0;
    }

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 18px;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}

    .btn-primary:hover {
        background: var(--gold-light);
        border-color: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.12);
        border-color: var(--white);
    }

.btn-outline-green {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--green-deep);
}

    .btn-outline-green:hover {
        background: var(--green-deep);
        color: var(--white);
    }


/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--green-deep);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 7px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .top-bar-inner span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .top-bar-inner i {
        color: var(--gold);
    }

.top-bar-social {
    margin-left: auto;
    display: flex;
    gap: 14px;
}

    .top-bar-social a {
        color: rgba(255,255,255,0.6);
        font-size: 0.8rem;
        transition: var(--transition);
    }

        .top-bar-social a:hover {
            color: var(--gold);
        }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--ivory-dark);
    transition: box-shadow var(--transition);
}

    .navbar.scrolled {
        box-shadow: var(--shadow-md);
    }

.nav-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.brand-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.68rem;
    color: var(--gray);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

    .nav-links li a {
        display: block;
        padding: 8px 14px;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--charcoal);
        border-radius: var(--radius);
        transition: var(--transition);
    }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--green-mid);
            background: var(--ivory);
        }

        .nav-links li a.nav-cta {
            background: var(--green-deep);
            color: var(--white);
            padding: 9px 20px;
            margin-left: 8px;
        }

            .nav-links li a.nav-cta:hover {
                background: var(--gold);
                color: var(--green-deep);
            }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--green-deep);
        border-radius: 2px;
        transition: var(--transition);
    }


/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

    /* geometric background pattern */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 75% 30%, rgba(201,168,76,0.12) 0%, transparent 55%), radial-gradient(circle at 10% 80%, rgba(46,107,79,0.35) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    opacity: 0.9;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 32px;
        height: 1.5px;
        background: var(--gold);
    }

.hero-heading {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

    .hero-heading em {
        font-style: normal;
        color: var(--gold);
    }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 38px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero card panel */
.hero-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .hero-stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.hero-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-stat-text strong {
    display: block;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-stat-text span {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2.2s infinite;
}

    .hero-scroll i {
        font-size: 0.9rem;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(7px);
    }
}


/* ============================================================
   SECTION: WHO WE ARE
   ============================================================ */
.about-strip {
    padding: 96px 0;
    background: var(--ivory);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: var(--green-deep);
    color: var(--white);
    border-radius: 10px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

    .about-card-main::after {
        content: '"';
        position: absolute;
        right: 24px;
        top: 0;
        font-family: 'Playfair Display', serif;
        font-size: 9rem;
        color: rgba(201,168,76,0.15);
        line-height: 1;
    }

    .about-card-main p {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        line-height: 1.65;
        font-style: italic;
        position: relative;
        z-index: 1;
    }

.about-card-tag {
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--green-deep);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    text-align: center;
    padding: 8px;
    box-shadow: var(--shadow-md);
}

    .about-badge small {
        font-family: 'Inter', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.about-content .section-lead {
    max-width: 100%;
    margin-bottom: 28px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.about-value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-deep);
}

    .about-value-item i {
        color: var(--gold);
        font-size: 0.8rem;
    }


/* ============================================================
   SECTION: FOCUS AREAS
   ============================================================ */
.focus-section {
    padding: 96px 0;
    background: var(--white);
}

.focus-header {
    text-align: center;
    margin-bottom: 60px;
}

    .focus-header .section-eyebrow {
        justify-content: center;
    }

    .focus-header .section-lead {
        margin: 0 auto;
    }

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.focus-card {
    padding: 38px 28px;
    border: 1px solid var(--ivory-dark);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .focus-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform var(--transition);
        transform-origin: left;
    }

    .focus-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

        .focus-card:hover::before {
            transform: scaleX(1);
        }

.focus-icon {
    width: 52px;
    height: 52px;
    background: var(--ivory);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    font-size: 1.3rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.focus-card:hover .focus-icon {
    background: var(--green-deep);
    color: var(--gold);
}

.focus-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.focus-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}


/* ============================================================
   SECTION: BUSINESS UNIT — SKILLSCERTIFY
   ============================================================ */
.skillscertify-section {
    padding: 96px 0;
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}

    .skillscertify-section::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(201,168,76,0.07);
        pointer-events: none;
    }

.skillscertify-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.skillscertify-content .section-eyebrow {
    color: var(--gold-light);
}

    .skillscertify-content .section-eyebrow::before {
        background: var(--gold-light);
    }

.skillscertify-content .section-title {
    color: var(--white);
}

.skillscertify-content .section-lead {
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}

.sc-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
}

.sc-service {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

    .sc-service i {
        color: var(--gold);
        font-size: 0.8rem;
    }

.sc-platform-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
}

.sc-logo-mark {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-deep);
}

.sc-platform-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.sc-platform-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.7;
}


/* ============================================================
   SECTION: SOCIAL IMPACT
   ============================================================ */
.impact-section {
    padding: 96px 0;
    background: var(--ivory);
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

    .impact-header .section-eyebrow {
        justify-content: center;
    }

    .impact-header .section-lead {
        margin: 0 auto;
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.impact-card {
    background: var(--white);
    border-radius: 8px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
}

    .impact-card:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-sm);
        transform: translateY(-3px);
    }

.impact-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
}

    .impact-number sup {
        font-size: 1.2rem;
        color: var(--gold);
    }

.impact-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-deep);
}

.impact-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}


/* ============================================================
   SECTION: WHY CHOOSE US
   ============================================================ */
.why-section {
    padding: 96px 0;
    background: var(--white);
}

.why-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: start;
}

.why-content .section-lead {
    margin-bottom: 32px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: var(--ivory);
    border-radius: 8px;
    padding: 30px 24px;
    transition: var(--transition);
}

    .why-card:hover {
        background: var(--green-deep);
    }

        .why-card:hover .why-card-icon,
        .why-card:hover h4,
        .why-card:hover p {
            color: var(--white);
        }

        .why-card:hover .why-card-icon {
            border-color: rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
        }

.why-card-icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--ivory-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.why-card p {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.7;
    transition: var(--transition);
}


/* ============================================================
   SECTION: PARTNERS / COLLABORATIONS
   ============================================================ */
.partners-strip {
    padding: 72px 0;
    background: var(--charcoal);
    text-align: center;
}

    .partners-strip .section-title {
        color: var(--white);
        margin-bottom: 12px;
    }

    .partners-strip .section-lead {
        color: rgba(255,255,255,0.55);
        margin: 0 auto 48px;
    }

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 28px 40px;
    min-width: 200px;
    transition: var(--transition);
}

    .partner-badge:hover {
        border-color: var(--gold);
        background: rgba(201,168,76,0.08);
    }

    .partner-badge h4 {
        color: var(--white);
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .partner-badge p {
        color: rgba(255,255,255,0.45);
        font-size: 0.8rem;
    }


/* ============================================================
   SECTION: CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
    }

    .cta-banner h2 {
        color: var(--white);
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-bottom: 14px;
        position: relative;
    }

    .cta-banner p {
        color: rgba(255,255,255,0.65);
        margin-bottom: 36px;
        font-size: 1.05rem;
        position: relative;
    }

    .cta-banner .btn-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
    background: var(--green-deep);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
    }

.page-hero-inner {
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

    .page-hero .breadcrumb a {
        color: var(--gold);
    }

    .page-hero .breadcrumb i {
        font-size: 0.65rem;
    }

.contact-section {
    padding: 96px 0;
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: start;
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 10px;
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
}

    .contact-form-wrap h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .contact-form-wrap .sub {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--green-deep);
        margin-bottom: 7px;
        letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--ivory-dark);
        border-radius: var(--radius);
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        color: var(--charcoal);
        background: var(--ivory);
        outline: none;
        transition: var(--transition);
        resize: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--green-mid);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(46,107,79,0.08);
        }

    .form-group textarea {
        height: 130px;
    }

.form-submit {
    margin-top: 8px;
}

    .form-submit .btn {
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .info-card-header .icon {
        width: 42px;
        height: 42px;
        background: var(--green-deep);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .info-card-header h4 {
        font-size: 1rem;
        color: var(--green-deep);
    }

.info-card p, .info-card a {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

    .info-card a:hover {
        color: var(--green-mid);
    }

.map-placeholder {
    background: var(--ivory-dark);
    border-radius: 8px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.85rem;
    gap: 8px;
    margin-top: 14px;
    border: 1px dashed rgba(0,0,0,0.1);
}

.social-links-row {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

    .social-links-row a {
        width: 36px;
        height: 36px;
        background: var(--ivory);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green-deep);
        font-size: 0.85rem;
        transition: var(--transition);
    }

        .social-links-row a:hover {
            background: var(--green-deep);
            color: var(--gold);
        }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #111D17;
}

.footer-top {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .footer-brand .brand-icon {
        color: var(--gold);
        font-size: 1.2rem;
    }

    .footer-brand .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        color: var(--white);
        font-weight: 700;
    }

.footer-mission {
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        background: rgba(255,255,255,0.07);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.5);
        font-size: 0.8rem;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--green-deep);
        }

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul li a {
        color: rgba(255,255,255,0.45);
        font-size: 0.875rem;
        transition: var(--transition);
    }

        .footer-col ul li a:hover {
            color: var(--white);
            padding-left: 4px;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-bottom span {
        color: rgba(255,255,255,0.3);
        font-size: 0.8rem;
    }

    .footer-bottom em {
        font-style: italic;
        color: rgba(255,255,255,0.45);
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #666;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-panel {
        max-width: 480px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skillscertify-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 20px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li a {
            padding: 10px 8px;
            border-radius: 0;
        }

            .nav-links li a.nav-cta {
                margin: 10px 0 0;
            }

    .navbar {
        position: relative;
    }

    .hero {
        padding: 72px 0 60px;
        min-height: auto;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
