:root {
    /* Option A — Warm Ivory & Deep Navy */
    --bg: #faf8f5;
    --bg-soft: #f3f0eb;
    --surface: rgba(255, 253, 250, 0.72);
    --surface-strong: rgba(255, 253, 250, 0.9);
    --glass-border: rgba(26, 24, 20, 0.08);
    --glass-border-hover: rgba(26, 24, 20, 0.14);
    --text: #1a1814;
    --text-soft: #3d3830;
    --muted: #7a7268;
    --accent: #152238;
    --accent-light: #2c4a6e;
    --accent-glow: rgba(21, 34, 56, 0.18);
    --warm-highlight: #c4a574;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-soft: 0 2px 16px rgba(26, 24, 20, 0.05);
    --shadow-glass: 0 8px 40px rgba(26, 24, 20, 0.08);
    --shadow-lift: 0 16px 48px rgba(26, 24, 20, 0.11);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(21, 34, 56, 0.14);
    color: var(--text);
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 165, 116, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 90% 0%, rgba(210, 200, 185, 0.18), transparent),
        var(--bg);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

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

section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: min(1200px, 88%);
    margin: auto;
}

/* ── Page Loader ── */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    width: 140px;
    margin: 0 auto 28px;
    animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-bar {
    width: 120px;
    height: 2px;
    margin: 0 auto;
    background: rgba(26, 24, 20, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--accent);
    border-radius: 2px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ── Header ── */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 253, 250, 0.6);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    transition: 0.4s var(--ease);
    background: white;
}

header.scrolled {
    background: rgba(255, 253, 250, 0.88);
    box-shadow: var(--shadow-soft);
}

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

.logo img {
    width: 150px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s var(--ease);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

nav a:hover,
nav a.active {
    color: var(--text);
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
}

.quote-btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    border: 1px solid transparent;
    box-shadow: 0 4px 16px var(--accent-glow);
    transition: 0.3s var(--ease);
}

.quote-btn:hover {
    transform: translateY(-1px);
    background: var(--accent-light);
    box-shadow: 0 8px 24px rgba(21, 34, 56, 0.28);
}

/* ── Hero ── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    padding: 0;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.88);
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(250, 248, 245, 0.08) 0%, rgba(21, 34, 56, 0.45) 55%, rgba(21, 34, 56, 0.72) 100%),
        linear-gradient(135deg, rgba(21, 34, 56, 0.32), rgba(26, 24, 20, 0.48));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 24px 48px;
    color: #fff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    margin-bottom: 32px;
    text-align: center;
}

.hero-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--warm-highlight);
    box-shadow: 0 0 8px rgba(196, 165, 116, 0.55);
}

.hero-slider {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.hero-headline {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.5rem, 5.2vw, 4.5rem);
    font-weight: 600;
    width: 100%;
    max-width: 920px;
    margin: 0 auto 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12em;
}

.hero-headline-line {
    display: block;
    color: rgba(255, 255, 255, 0.96);
}

.hero-enter {
    opacity: 0;
    transform: translateY(22px);
    animation: heroEnter 0.85s var(--ease) forwards;
    animation-delay: var(--enter-delay, 0ms);
}

@keyframes heroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-accent {
    display: block;
    font-size: 1.05em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #e8c992;
}

.hero-sub,
.hero p {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    text-align: center;
}

.hero-buttons {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: heroScrollIn 0.85s var(--ease) 650ms forwards;
    transition: color 0.3s var(--ease);
}

@keyframes heroScrollIn {
    to {
        opacity: 1;
    }
}

.hero-scroll:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(232, 201, 146, 0.9), transparent);
    animation: heroScrollPulse 2s var(--ease) infinite;
}

.hero-scroll-label {
    font-size: 0.62rem;
}

@keyframes heroScrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(0.65);
        transform-origin: top;
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 0.3s var(--ease);
}

.btn-primary {
    color: var(--accent);
    background: #fffdfb;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 28px rgba(26, 24, 20, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* ── Trust Bar ── */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface-strong);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
}

.trust-bar div {
    text-align: center;
    padding: 22px 16px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-soft);
    border-right: 1px solid var(--glass-border);
    letter-spacing: 0.01em;
}

.trust-bar div:last-child {
    border-right: none;
}

/* ── Section Headings ── */

.section-heading {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading span {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px;
    position: relative;
}

.section-heading span::before,
.section-heading span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: rgba(26, 24, 20, 0.18);
}

.section-heading span::before { right: calc(100% + 12px); }
.section-heading span::after { left: calc(100% + 12px); }

.section-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* ── Glass Cards ── */

.stat-card,
.leader-card,
.project-card,
.training-card,
.timeline-content,
.careers-box,
.service-card,
.about-panel,
.why-panel,
.value-item {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
}

/* ── About / Why ── */

.about-why {
    padding-bottom: 48px;
}

.about-why .container {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.about-panel,
.why-panel {
    flex: 1;
    border-radius: var(--radius);
    padding: 32px;
}

.about-why .section-heading {
    text-align: left;
    margin-bottom: 20px;
}

.about-why .section-heading span::before,
.about-why .section-heading span::after {
    display: none;
}

.about-why .section-heading h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.intro-content p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 14px;
    color: var(--muted);
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 500;
}

.about-values-row {
    margin-top: 12px;
}

.about-values {
    display: flex;
    gap: 16px;
}

.value-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: 0.3s var(--ease);
}

.value-item:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-lift);
}

.value-item h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.value-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ── Stats ── */

.about-why .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat-card {
    border-radius: var(--radius-sm);
    padding: 24px 18px;
    text-align: center;
    transition: 0.3s var(--ease);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
}

.stat-card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-card p {
    margin-top: 6px;
    font-size: 0.82rem;
    color: var(--muted);
}

.leadership {
    padding-top: 60px;
}

/* ── Leadership ── */

.leadership-grid {
    zoom: 0.9;
    width: min(1200px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.leader-card {
    width: auto;
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.35s var(--ease);
}

.leader-card img {
    height: 500px;
    /* width: 787px; */
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.leader-card img {
    object-fit: contain;
    filter: saturate(0.9);
}

.leader-content {
    padding: 16px 10px;
    text-align: center;
}

.leader-content h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.leader-content p {
    font-size: 0.84rem;
    color: var(--muted);
    margin-top: 4px;
}

/* ── Presence ── */

.presence {
    background: var(--bg-soft);
}

.world-map {
    width: min(1000px, 85%);
    margin: 0 auto 40px;
}

.world-map img {
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.country-grid {
    width: min(1000px, 88%);
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
}

.country-card {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 18px 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--surface-strong);
    border: 1px solid var(--glass-border);
    transition: 0.25s var(--ease);
}

.country-card:hover {
    transform: translateY(-2px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-soft);
}

.country-name {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-soft);
}

/* ── Flag icons ── */

.flag-icon {
    display: block;
    flex-shrink: 0;
    width: 44px;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 5px;
    object-fit: cover;
    border: 1px solid rgba(26, 24, 20, 0.1);
    box-shadow: 0 1px 4px rgba(21, 34, 56, 0.1);
}

.flag-icon--sm {
    width: 32px;
}

/* ── Projects ── */

.projects-carousel {
    width: min(1200px, 88%);
    margin: auto;
    position: relative;
}

.projects-viewport {
    overflow: hidden;
}

.projects-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s var(--ease);
    will-change: transform;
}

.projects-track .project-card {
    flex: 0 0 calc((100% - 40px) / 3);
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.35s var(--ease);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.project-card img {
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 22px;
}

.project-content span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.project-content h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 8px;
    color: var(--text);
}

.project-content p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

.projects-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--surface-strong);
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: 0.25s var(--ease);
}

.projects-prev { left: -16px; }
.projects-next { right: -16px; }

.projects-nav:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glass);
}

.projects-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.projects-dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.projects-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(21, 34, 56, 0.16);
    cursor: pointer;
    transition: 0.25s var(--ease);
    padding: 0;
}

.projects-dot.active {
    width: 20px;
    border-radius: 999px;
    background: var(--accent);
}

/* ── Services Carousel ── */

.services-carousel {
    width: min(1200px, 88%);
    margin: auto;
    position: relative;
}

.services-viewport {
    overflow: hidden;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s var(--ease);
    will-change: transform;
}

.service-card {
    flex: 0 0 calc((100% - 40px) / 3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.35s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px 22px 24px;
}

.service-content h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.service-content ul {
    margin: 0;
    padding-left: 16px;
    display: grid;
    gap: 6px;
}

.service-content li {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

.services-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--surface-strong);
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: 0.25s var(--ease);
}

.services-prev { left: -16px; }
.services-next { right: -16px; }

.services-nav:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glass);
}

.services-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.services-dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.services-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(21, 34, 56, 0.16);
    cursor: pointer;
    transition: 0.25s var(--ease);
    padding: 0;
}

.services-dot.active {
    width: 20px;
    border-radius: 999px;
    background: var(--accent);
}

/* ── Clients Marquee ── */

.clients {
    /* padding: 72px 0; */
    /* overflow: hidden; */
}

.clients .section-heading {
    margin-bottom: 40px;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 6%,
        #000 94%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 6%,
        #000 94%,
        transparent
    );
}

.clients-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.clients-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 96px;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 250, 0.92);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition:
        transform 0.3s var(--ease),
        border-color 0.3s var(--ease),
        box-shadow 0.3s var(--ease);
}

.client-logo:hover {
    transform: translateY(-2px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glass);
}

.client-logo--dark {
    background: #111827;
}

.client-logo--wide {
    width: 260px;
}

.client-logo--media {
    padding: 0;
}

.client-logo img {
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.client-logo--wide img {
    max-width: 220px;
    max-height: 44px;
}

.client-logo--media img {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Timeline / News ── */

.timeline {
    width: min(760px, 88%);
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 108px;
    width: 1px;
    background: var(--glass-border);
}

.timeline-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.date {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-light);
    padding-top: 6px;
}

.timeline-content {
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: 0.3s var(--ease);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lift);
}

.timeline-content h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ── Careers ── */

.careers {
    background: var(--bg-soft);
}

.careers-box {
    width: min(680px, 88%);
    margin: auto;
    border-radius: var(--radius);
    text-align: center;
    padding: 48px 36px;
}

.careers-box span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-light);
}

.careers-box h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    margin: 14px 0;
    letter-spacing: -0.02em;
}

.careers-box p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.careers-box .btn-primary {
    color: #fff;
    background: var(--accent);
    border-color: transparent;
}

.careers-box .btn-primary:hover {
    background: var(--accent-light);
}

/* ── Contact ── */

.contact {
    background: var(--bg-soft);
}

.contact-panel {
    width: min(960px, 88%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 300px) 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
}

.contact-aside {
    padding: 32px 28px;
    background: linear-gradient(165deg, rgba(21, 34, 56, 0.06), rgba(21, 34, 56, 0.02));
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-aside-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-enquiry {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.contact-enquiry:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-enquiry-tag {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(21, 34, 56, 0.08);
}

.contact-enquiry p {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 6px;
    line-height: 1.45;
}

.contact-enquiry a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--accent);
    transition: color 0.25s var(--ease);
    word-break: break-word;
}

.contact-enquiry a:hover {
    color: var(--accent-light);
}

.contact-main {
    display: flex;
    flex-direction: column;
}

.contact-form-note {
    padding: 32px 32px 0;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.55;
}

.contact-form {
    margin: 0;
    padding: 20px 32px 36px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(255, 253, 250, 0.65);
    color: var(--text);
    font-family: inherit;
    font-size: 0.92rem;
    transition: 0.25s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(122, 114, 104, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(21, 34, 56, 0.28);
    box-shadow: 0 0 0 3px rgba(21, 34, 56, 0.07);
    background: #fffdfb;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
    margin: 14px 0;
}

.contact-form button {
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 4px 16px var(--accent-glow);
    transition: 0.3s var(--ease);
}

.contact-form button:hover {
    transform: translateY(-1px);
    background: var(--accent-light);
}

.contact-form button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-form-status {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.5;
}

.contact-form-status.is-success {
    color: #2f6b4f;
}

.contact-form-status.is-error {
    color: #a33b3b;
}

/* ── Footer ── */

footer {
    background: var(--surface-strong);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
}

.footer-inner {
    width: min(1200px, 88%);
    margin: auto;
    padding: 40px 0 32px;
}

.footer-columns {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 48px 56px;
    align-items: start;
}

.footer-col--brand h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.footer-col--brand > p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-general {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-enquiry {
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
}

.footer-enquiry-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}

.footer-enquiry a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    transition: color 0.25s var(--ease);
}

.footer-enquiry a:hover {
    color: var(--accent-light);
}

.footer-offices-title {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin: 0 0 18px;
}

.footer-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 20px 40px;
}

.footer-office {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-office-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.footer-office-head h5 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-soft);
}

footer .flag-icon--sm {
    width: 22px;
    border-radius: 3px;
}

.footer-office address {
    font-style: normal;
    font-size: 0.72rem;
    line-height: 1.5;
}

.footer-office address a {
    color: var(--muted);
    transition: color 0.25s var(--ease);
}

.footer-office address a:hover {
    color: var(--accent);
}

.footer-office > a {
    font-size: 0.72rem;
    color: var(--accent);
    line-height: 1.4;
    transition: color 0.25s var(--ease);
    word-break: break-word;
}

.footer-office > a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding: 14px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.72rem;
    color: var(--muted);
}

/* ── Reveal ── */

.stat-card,
.leader-card,
.service-card,
.project-card,
.training-card,
.timeline-item,
.value-item {
    opacity: 0;
    transform: translateY(24px);
    transition:
        transform 0.7s var(--ease),
        opacity 0.7s ease;
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ── Responsive ── */

@media (max-width: 1120px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card,
    .projects-track .project-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .contact-aside {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

}

@media (max-width: 860px) {
    nav { display: none; }

    section { padding: 72px 0; }

    .hero { min-height: 560px; }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.6rem);
        gap: 0.08em;
    }

    .hero-scroll {
        bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

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

    .about-why .container {
        flex-direction: column;
    }

    .about-values {
        flex-direction: column;
    }

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

    .leadership-grid {
        width: min(1200px, 94%);
        gap: 12px;
    }

    .leader-content {
        padding: 14px 6px;
    }

    .country-grid {
        gap: 8px;
    }

    .country-card {
        padding: 12px 6px 10px;
        gap: 6px;
    }

    .country-name {
        font-size: 0.72rem;
    }

    .country-grid .flag-icon {
        width: 32px;
    }

    .footer-offices-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }

    .service-card,
    .projects-track .project-card {
        flex-basis: 100%;
    }

    .services-track,
    .projects-track {
        gap: 16px;
    }

    .services-nav,
    .projects-nav {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    .services-prev,
    .projects-prev {
        left: -4px;
    }

    .services-next,
    .projects-next {
        right: -4px;
    }

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

    .timeline::before { display: none; }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .section-heading span::before,
    .section-heading span::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-enter {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-scroll {
        opacity: 1;
        animation: none;
    }

    .hero-scroll-line {
        animation: none;
    }
}
