/* =========================================
   KAPTEIN HOLDINGS — GLOBAL STYLES (v2)
   Template: City skyline, teal accents, mixed light/dark
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
    --teal: #009fbe;
    --teal-dark: #007a92;
    --teal-light: #00c6e8;
    --teal-xlight: #e8f9fd;
    --navy: #0a1628;
    --navy-2: #0d1f3c;
    --navy-3: #112448;
    --dark-overlay: rgba(8, 18, 38, 0.72);
    --white: #ffffff;
    --off-white: #f5f7fa;
    --gray-50: #f8fafc;
    --gray-100: #f0f4f8;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --gradient-teal: linear-gradient(135deg, #009fbe 0%, #00c6e8 100%);
    --gradient-navy: linear-gradient(135deg, #0a1628 0%, #112448 100%);
    --gradient-hero: linear-gradient(to bottom, rgba(8, 18, 38, 0.55) 0%, rgba(8, 18, 38, 0.35) 40%, rgba(8, 18, 38, 0.82) 100%);
    --nav-height: 76px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
    --shadow-teal: 0 8px 30px rgba(0, 159, 190, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    padding: 0 2rem;
    /* Start transparent over hero */
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 159, 190, 0.18);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

/* On light pages (about-light, contact, etc.) - always show solid */
.navbar.solid {
    background: var(--navy);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.nav-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nav-logo img:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-light);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: var(--gradient-teal);
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff !important;
    transition: var(--transition);
    box-shadow: var(--shadow-teal);
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 159, 190, 0.5);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--teal-light);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-image.jpg');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

/* Teal scan line accent at bottom of hero */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 1.5rem;
    margin-top: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.5rem;
    animation: fadeDown 0.7s ease both;
}

.hero-eyebrow span {
    display: inline-block;
    width: 30px;
    height: 1.5px;
    background: var(--teal-light);
    border-radius: 1px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--teal-light);
}

.hero p {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
}

/* Feature tiles row inside hero */
.hero-tiles {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: auto;
}

.hero-tile {
    padding: 2rem 1.5rem;
    background: rgba(0, 159, 190, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.hero-tile:last-child {
    border-right: none;
}

.hero-tile:first-child {
    background: rgba(0, 100, 130, 0.9);
}

.hero-tile:hover {
    background: rgba(0, 159, 190, 0.95);
}

.hero-tile i {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.75rem;
    display: block;
}

.hero-tile p {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    animation: none;
    max-width: none;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient-teal);
    color: #fff;
    box-shadow: var(--shadow-teal);
}

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

.btn-white {
    background: #fff;
    color: var(--teal-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--off-white);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
}

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

.btn-outline-teal:hover {
    background: var(--teal);
    color: #fff;
}

/* =========================================
   SECTION COMMONS
   ========================================= */
.section {
    padding: 6rem 2rem;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-navy {
    background: var(--navy);
}

.section-teal {
    background: var(--teal);
}

/* === Logo Watermark on light sections === */
.section-light,
.section-white,
.section-gray {
    position: relative;
    overflow: hidden;
}

.section-light::before,
.section-white::before,
.section-gray::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 680px;
    background: url('assets/Logo222.png') center / contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(1) contrast(2);
}

.section-light>.container,
.section-white>.container,
.section-gray>.container {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gradient-teal);
    border-radius: 1px;
}

/* On dark sections, eyebrow is lighter */
.section-navy .section-eyebrow,
.hero .section-eyebrow {
    color: var(--teal-light);
}

.section-navy .section-eyebrow::before {
    background: var(--teal-light);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.section-navy .section-title,
.section-teal .section-title {
    color: #fff;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 540px;
}

.section-navy .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.section-teal .section-sub {
    color: rgba(255, 255, 255, 0.85);
}

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

.text-center .section-eyebrow {
    justify-content: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* =========================================
   DIVIDER LINE
   ========================================= */
.divider {
    height: 1px;
    background: var(--gray-200);
}

.divider-teal {
    height: 3px;
    background: var(--gradient-teal);
}

/* =========================================
   STAT STRIP
   ========================================= */
.stat-strip {
    background: var(--navy);
    padding: 3.5rem 2rem;
}

.stat-strip-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-item {
    background: var(--navy);
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

/* =========================================
   OVERVIEW / SPLIT SECTION
   ========================================= */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-grid.flip {
    direction: rtl;
}

.split-grid.flip>* {
    direction: ltr;
}

.split-img-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.split-img-wrap:hover img {
    transform: scale(1.03);
}

/* Teal corner accent */
.split-img-wrap::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    z-index: -1;
    border-radius: 12px;
}

.split-content {}

.split-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* =========================================
   ICON FEATURE CARDS (horizontal icon + text)
   ========================================= */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid transparent;
}

.feature-card:hover {
    border-color: var(--gray-200);
    border-left-color: var(--teal);
    box-shadow: var(--shadow-teal);
    transform: translateY(-5px);
}

/* Alternating teal cards */
.feature-card:nth-child(even) {
    background: var(--teal);
    border-color: var(--teal-dark);
    border-left-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.feature-card:nth-child(even) h4 {
    color: #fff;
}

.feature-card:nth-child(even) p {
    color: rgba(255, 255, 255, 0.82);
}

.feature-card:nth-child(even):hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    border-left-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 36px rgba(0, 100, 130, 0.45);
}

.feature-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 0;
    background: var(--teal-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 159, 190, 0.15);
}

.feature-card:nth-child(even) .feature-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-card:hover .feature-card-icon {
    background: var(--gradient-teal);
    color: #fff;
    border-color: transparent;
}

.feature-card:nth-child(even):hover .feature-card-icon {
    background: rgba(255, 255, 255, 0.28);
}

.feature-card h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================
   VALUES GRID (compact, on light bg)
   ========================================= */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.value-row {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid transparent;
}

.value-row:hover {
    border-color: var(--gray-200);
    border-left-color: var(--teal);
    box-shadow: 0 4px 20px rgba(0, 159, 190, 0.15);
    transform: translateY(-3px);
}

/* Alternating teal value rows */
.value-row:nth-child(even) {
    background: var(--teal);
    border-color: var(--teal-dark);
    border-left-color: rgba(255, 255, 255, 0.3);
}

.value-row:nth-child(even) .value-num {
    color: rgba(255, 255, 255, 0.6);
}

.value-row:nth-child(even) .value-row-text h5 {
    color: #fff;
}

.value-row:nth-child(even) .value-row-text p {
    color: rgba(255, 255, 255, 0.8);
}

.value-row:nth-child(even):hover {
    background: var(--teal-dark);
    border-left-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 24px rgba(0, 100, 130, 0.4);
}

.value-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.value-row-text h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.value-row-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   SUBSIDIARY CARDS
   ========================================= */
.sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.sub-card {
    border-radius: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.sub-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-light);
}

/* 2nd sub-card gets teal treatment */
.sub-card:nth-child(even) {
    background: var(--teal);
    border-color: var(--teal-dark);
}

.sub-card:nth-child(even) .sub-card-body h3 {
    color: #fff;
}

.sub-card:nth-child(even) .sub-card-body p {
    color: rgba(255, 255, 255, 0.82);
}

.sub-card:nth-child(even) .sub-card-link {
    color: rgba(255, 255, 255, 0.9);
}

.sub-card:nth-child(even) .sub-card-link:hover {
    color: #fff;
}

.sub-card:nth-child(even):hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    box-shadow: 0 18px 56px rgba(0, 100, 130, 0.45);
}

.sub-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.sub-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sub-card:hover .sub-card-img {
    transform: scale(1.06);
}

.sub-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.3rem 0.85rem;
    background: var(--gradient-teal);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.sub-card-body {
    padding: 1.75rem 2rem 2rem;
}

.sub-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.sub-card-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.sub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-dark);
    transition: var(--transition);
}

.sub-card-link:hover {
    gap: 0.7rem;
    color: var(--teal);
}

/* =========================================
   TEAL CTA BANNER
   ========================================= */
.cta-band {
    background: var(--gradient-teal);
    padding: 5rem 2rem;
}

.cta-band-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.cta-band-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 0.4rem;
    max-width: 460px;
}

.cta-band-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* =========================================
   OBJECTIVES (accordion-style list)
   ========================================= */
.obj-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.obj-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
}

.obj-item:last-child {
    border-bottom: none;
}

.obj-item:hover {
    background: var(--teal-xlight);
}

.obj-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--teal-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--teal-dark);
    margin-top: 2px;
}

.obj-item:hover .obj-icon {
    background: var(--gradient-teal);
    color: #fff;
}

.obj-item h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.obj-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--navy);
    padding: 4.5rem 2rem 2rem;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

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

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient-teal);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h5 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}

.footer-contact {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.footer-contact-item i {
    color: var(--teal-light);
    font-size: 0.82rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--teal-light);
    transition: var(--transition);
}

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

/* =========================================
   SECTION DIVIDERS
   ========================================= */

/* Wrapper that sits between sections */
.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    background: var(--white);
    /* matches section above */
    z-index: 2;
}

/* Angled slice — the dark shadow band */
.section-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--navy);
    transform: skewY(-2.4deg);
    transform-origin: bottom left;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18), 0 -2px 0 rgba(0, 159, 190, 0.6);
}

/* Teal highlight line on the slope */
.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 3px;
    background: var(--gradient-teal);
    transform: skewY(-2.4deg);
    transform-origin: bottom left;
    box-shadow: 0 0 18px rgba(0, 198, 232, 0.6);
}

/* Flipped variant — angled the other way */
.section-divider.flip::before {
    transform: skewY(2.4deg);
    transform-origin: bottom right;
}

.section-divider.flip::after {
    transform: skewY(2.4deg);
    transform-origin: bottom right;
}

/* Light variant — white cut into gray */
.section-divider.light {
    background: var(--gray-50);
}

.section-divider.light::before {
    background: var(--white);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.07), 0 -2px 0 rgba(0, 159, 190, 0.3);
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal {
    transform: translateY(36px);
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-right {
    transform: translateX(36px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.08s;
}

.d2 {
    transition-delay: 0.16s;
}

.d3 {
    transition-delay: 0.24s;
}

.d4 {
    transition-delay: 0.32s;
}

.d5 {
    transition-delay: 0.40s;
}

/* =========================================
   KEYFRAMES
   ========================================= */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
    position: relative;
    padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
    background: var(--navy);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero-image.jpg') center 30% / cover;
    opacity: 0.2;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-teal);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-inner h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1.1rem;
}

.page-hero-inner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--teal-light);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

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

    .split-grid.flip {
        direction: ltr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-tiles {
        grid-template-columns: 1fr 1fr;
    }

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

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-band-inner p {
        margin: 0 auto;
    }

    .cta-band-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 4.5rem 1.25rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .hero-tiles {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-tiles {
        grid-template-columns: 1fr;
    }

    .stat-strip-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ---- Services & Subdirectories (Homepage) ---- */
.svc-sub-section {
    background: var(--gradient-navy);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.svc-sub-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(0,159,190,0.11) 0%, transparent 70%);
    pointer-events: none;
}
.svc-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.svc-sub-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transition: var(--transition);
}
.svc-sub-panel:hover {
    border-color: rgba(0,159,190,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.svc-sub-panel-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.svc-sub-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}
.svc-sub-panel:hover .svc-sub-panel-img img {
    transform: scale(1.05);
}
.svc-sub-panel-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8,18,38,0.45) 0%, rgba(8,18,38,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.1rem 1.4rem;
}
.svc-sub-panel-img-overlay span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.svc-sub-panel-img-overlay span i {
    color: var(--teal-light);
}
/* inner content padding */
.svc-sub-panel .svc-sub-panel-header,
.svc-sub-panel .svc-sub-list,
.svc-sub-panel .svc-sub-cta {
    padding-left: 2rem;
    padding-right: 2rem;
}
.svc-sub-panel .svc-sub-panel-header {
    padding-top: 1.75rem;
}
.svc-sub-panel .svc-sub-cta {
    padding-bottom: 1.75rem;
}
.svc-sub-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.svc-sub-panel-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gradient-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}
.svc-sub-panel-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.svc-sub-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    padding-top: 0.25rem;
    padding-bottom: 1rem;
}
.svc-sub-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    text-decoration: none;
    transition: var(--transition);
}
.svc-sub-item:hover {
    background: rgba(0,159,190,0.08);
    border-color: rgba(0,159,190,0.28);
    transform: translateX(5px);
}
.svc-sub-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0,159,190,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--teal-light);
    flex-shrink: 0;
    transition: var(--transition);
}
.svc-sub-item:hover .svc-sub-item-icon {
    background: var(--gradient-teal);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,159,190,0.35);
}
.svc-sub-item > div h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}
.svc-sub-item > div p {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}
.svc-sub-chevron {
    margin-left: auto;
    color: rgba(255,255,255,0.18);
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.svc-sub-item:hover .svc-sub-chevron {
    color: var(--teal-light);
    transform: translateX(3px);
}
.svc-sub-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-light);
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
    margin-top: auto;
}
.svc-sub-cta:hover {
    color: #fff;
    gap: 0.75rem;
}
@media (max-width: 768px) {
    .svc-sub-grid { grid-template-columns: 1fr; }
}