/* 
   EQDAM Customs Clearance Est. - Premium Light Theme Stylesheet
   Theme: Mostly White Content, Royal Blue & Safety Orange Highlights, with Immersive Dark Headers
*/

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

:root {
    /* Color Palette - White Theme with Orange & Blue */
    --primary-navy: #0D1B4B;       /* Deep professional navy */
    --accent-blue: #0066FF;        /* Vibrant Royal Blue */
    --accent-orange: #FF6B00;      /* Safety Orange */
    --accent-orange-hover: #E05E00;
    --neutral-dark: #18181B;       /* Dark charcoal for body text */
    --neutral-light: #FFFFFF;      /* Base background */
    --neutral-bg-soft: #F8FAFC;    /* Soft light slate for alternating sections */
    --neutral-gray: #71717A;       /* Slate grey for descriptions */
    --border-light: #E4E4E7;       /* Thin borders */
    
    /* Liquid Glass Pill Nav variables */
    --nav-bg-dark: rgba(11, 25, 44, 0.8);
    --nav-bg-light: rgba(255, 255, 255, 0.9);
    --nav-border-dark: rgba(255, 255, 255, 0.08);
    --nav-border-light: rgba(0, 0, 0, 0.08);
    --nav-shadow: rgba(13, 27, 75, 0.05);

    /* Fonts */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Styling parameters */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 2rem;       /* 32px - TFS Style */
    --max-width: 1200px;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--neutral-light);
}

body {
    font-family: var(--font-body);
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== HOMEPAGE HERO-FRAME LAYOUT ===== */
/* The homepage uses a framed hero card with white body border */
.home-page {
    background-color: #ffffff;
}

/* Framed Hero Card */
.hero-scroll-wrapper {
    position: relative;
    height: 130vh;
}

.hero-frame {
    position: sticky;
    top: 0;
    margin: 0;
    border-radius: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-navy);
    background-image: url('home.webp');
    background-size: 112%;
    background-position: center 15%;
    color: #ffffff;
    padding: 0;
}

/* Mountain foreground — same image clipped from mountain-line down, sits above text */
.hero-mountain-fg {
    position: absolute;
    inset: 0;
    background-image: url('assets/home_foreground.webp');
    background-size: 112%;
    background-position: center 15%;
    z-index: 3;
    pointer-events: none;
}

.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 40px;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-header .nav-container {
    pointer-events: auto;
}

/* Make nav-left, nav-btn translate up and fade out when scrolled */
.hero-header .nav-left,
.hero-header .nav-btn {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

header.scrolled .nav-left,
header.scrolled .nav-btn {
    transform: translateY(-120px);
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: auto;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-inline-end: auto;
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.08em;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.lang-switch-btn .globe-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.3s;
}

.lang-switch-btn:hover {
    color: var(--accent-orange, #ff6b00);
    opacity: 1;
    transform: translateY(-1px);
}

.lang-switch-btn:hover .globe-icon {
    transform: rotate(25deg);
}

.nav-container #mainNavigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}



/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Center Nav Links - Pill Container */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0 auto;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
}

/* Logo centered inside pill */
.nav-logo-item {
    padding: 0 16px;
    margin: 0 4px;
    display: flex;
    align-items: center;
}

.nav-logo-item .logo {
    gap: 8px;
}

.nav-links li a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy, #0B192C);
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 9999px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-container #mainNavigation.orange-text .nav-links li a:not(.logo) {
    color: var(--accent-orange, #ff6b00);
}

.nav-links li a:hover {
    color: var(--accent-orange);
    background: none;
}

.nav-links li a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Right side: CTA + mobile toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-inline-start: auto;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 9999px;
    text-decoration: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 0;
    background: transparent;
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px auto;
    transition: var(--transition-smooth);
}

.mobile-nav-toggle {
    z-index: 1001; /* Ensure hamburger stays above the drawer */
    position: relative;
}

/* Animate hamburger to X when active */
.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--primary-navy);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--primary-navy);
}

/* Hero Center Text */
.hero-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 85px));
    text-align: center;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.15s ease-out;
}

.hero-h1 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange, #ff6b00);
    margin: 0 0 12px 0;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1;
}

/* Hero Content - Bottom Left */
.hero-frame .hero-content {
    position: absolute;
    bottom: 130px;
    left: 0;
    right: 0;
    padding: 60px 60px;
    margin: 0 auto;
    max-width: 700px;
    z-index: 10;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-frame .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
    font-style: italic;
}

.hero-frame .hero-content p {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    max-width: 520px;
    margin: 0 auto 18px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-frame .hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Semi-frosted orange CTA */
.btn-hero.btn-frost-orange {
    background: rgba(255, 107, 0, 0.32);
    border: 1px solid rgba(255, 107, 0, 0.55);
}

.btn-hero.btn-frost-orange:hover {
    background: rgba(255, 107, 0, 0.5);
    border-color: rgba(255, 107, 0, 0.75);
}

/* Hero Get Started Button - glass/outline pill */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Scroll to Explore Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 15;
    text-decoration: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.hero-scroll-indicator:hover {
    color: var(--accent-orange);
}

.hero-scroll-indicator:active {
    transform: translateX(-50%) scale(0.92);
}

.scroll-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--font-body);
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    animation: scrollArrowBounce 1.8s ease-in-out infinite;
}

.hero-scroll-indicator:hover .scroll-arrow {
    animation-play-state: paused;
    transform: translateY(6px);
}

@keyframes scrollArrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ===== FIXED HEADER FOR NON-HOME PAGES ===== */
/* These styles apply to about, services, contact pages that use the old header structure */
body:not(.home-page) header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    padding: 0 24px;
    z-index: 1000;
    pointer-events: none;
    transition: var(--transition-smooth);
}

body:not(.home-page) header.nav-hidden {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
}

body:not(.home-page) .nav-container {
    pointer-events: auto;
    background: var(--nav-bg-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--nav-border-dark);
    border-radius: 9999px;
    padding: 10px 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

body:not(.home-page) .nav-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 18px;
}

body:not(.home-page) .nav-links li a:hover {
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
}

body:not(.home-page) .nav-links li a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

body:not(.home-page) .nav-btn {
    font-size: 13px;
    padding: 10px 22px;
}

/* Non-home scrolled states */
body:not(.home-page) header.scrolled .nav-container {
    background: var(--nav-bg-light);
    border-color: var(--nav-border-light);
    box-shadow: 0 15px 40px rgba(13, 27, 75, 0.08);
}

body:not(.home-page) header.scrolled .nav-links li a {
    color: var(--neutral-gray);
}

body:not(.home-page) header.scrolled .nav-links li a:hover {
    color: var(--accent-blue);
    background: rgba(0, 102, 255, 0.05);
}

body:not(.home-page) header.scrolled .nav-links li a.active {
    color: var(--accent-blue);
}

body:not(.home-page) header.scrolled .logo-title {
    color: var(--primary-navy);
}

body:not(.home-page) header.scrolled .nav-btn {
    color: var(--primary-navy);
    background: var(--neutral-bg-soft);
    border: 1px solid var(--border-light);
}

body:not(.home-page) header.scrolled .mobile-nav-toggle span {
    background-color: var(--neutral-dark);
}

/* ===== LEGACY HERO (fallback for non-home pages) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px 24px;
    background-color: var(--primary-navy);
    background-image: linear-gradient(rgba(11, 25, 44, 0.8), rgba(11, 25, 44, 0.88)), url('assets/hero_background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
}

.hero .hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hero-tag span {
    width: 6px;
    height: 6px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero h1 span.highlight {
    background: linear-gradient(120deg, #5BC8D0, var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
    margin: 0 auto 44px auto;
    line-height: 1.7;
}

.hero .hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 9999px; /* Pill buttons */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-2px) scale(0.98);
}

/* Sections General */
section {
    padding: 120px 24px;
    position: relative;
    background-color: var(--neutral-light);
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background-color: var(--neutral-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg); /* 2rem rounded */
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 27, 75, 0.015);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 50px rgba(13, 27, 75, 0.05);
}

.value-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(0, 102, 255, 0.05);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background-color: var(--accent-blue);
    color: #ffffff;
    transform: rotate(360deg);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.value-card p {
    font-size: 14px;
    color: var(--neutral-gray);
    line-height: 1.7;
}

/* Why Choose Us Section */
.strengths-bg {
    background-color: var(--neutral-bg-soft);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.strengths-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.strengths-text p.lead {
    font-size: 18px;
    color: var(--neutral-gray);
    margin-bottom: 36px;
    max-width: 600px;
}

.strengths-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.strength-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.strength-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 0, 0.08);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
    margin-top: 4px;
}

.strength-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-navy);
}

.strength-info p {
    font-size: 14px;
    color: var(--neutral-gray);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 36px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.005);
}

.stat-box:hover {
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.05);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 6px;
    display: block;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neutral-gray);
    font-weight: 600;
}

/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 44px 36px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.005);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(13, 27, 75, 0.04);
    border-color: rgba(0, 102, 255, 0.15);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.04);
    color: var(--accent-blue);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-navy);
}

.service-card p {
    font-size: 14px;
    color: var(--neutral-gray);
    margin-bottom: 28px;
    flex-grow: 1;
    line-height: 1.65;
}

.service-card-link {
    text-decoration: none;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-card-link:hover {
    color: var(--accent-orange-hover);
    gap: 12px;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 60px 0 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-orange), var(--border-light));
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step-badge {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-blue);
    border: 4px solid var(--neutral-light);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(13, 27, 75, 0.08);
}

.timeline-step:nth-child(even) .timeline-step-badge {
    background: var(--accent-orange);
}

.timeline-content {
    width: 44%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.005);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(13, 27, 75, 0.035);
    border-color: rgba(0, 102, 255, 0.1);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.timeline-content p {
    font-size: 14px;
    color: var(--neutral-gray);
    line-height: 1.65;
}

/* Partners Ticker */
.partners-ticker-section {
    background-color: #000000;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: ticker-fwd 35s linear infinite;
}

@keyframes ticker-fwd {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-badge {
    font-family: monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 26px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.partner-badge:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-navy), #12286A);
    border-radius: var(--border-radius-lg);
    padding: 90px 60px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(13, 27, 75, 0.15);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

/* Footer Section */
footer {
    background-color: #0A0A0C;
    color: rgba(255, 255, 255, 0.5);
    padding: 90px 24px 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.contact-info-list li span.icon {
    color: var(--accent-orange);
}

.contact-info-list li a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-list li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Page Headers (Dark Immersive Overlays) */
.page-header {
    background: linear-gradient(rgba(11, 25, 44, 0.82), rgba(11, 25, 44, 0.9)), url('assets/about_banner.webp');
    background-size: cover;
    background-position: center;
    padding: 200px 24px 100px 24px;
    text-align: center;
    color: #ffffff;
    position: relative;
    border-bottom: 2px solid var(--accent-orange);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

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

/* About page - Mission/Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.005);
}

.mv-card h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-card h2 span {
    color: var(--accent-orange);
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--neutral-gray);
}

/* Services Page Filter */
.services-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--neutral-gray);
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
}

/* Service Detailed Cards */
.service-detailed-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.005);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.service-detailed-card:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-detailed-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 18px;
}

.service-detailed-info p {
    font-size: 15px;
    color: var(--neutral-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-bullet-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.service-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-navy);
}

.service-bullet-list li span.bullet {
    width: 22px;
    height: 22px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.service-illustration {
    background: var(--neutral-bg-soft);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--accent-blue);
    border: 1px dashed rgba(0, 102, 255, 0.15);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
}

.contact-info-panel {
    background: var(--primary-navy);
    color: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info-panel p.lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
    margin-bottom: 50px;
}

.contact-details li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.contact-details-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details-text h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.contact-details-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.contact-details-text a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.contact-details-text a:hover {
    color: var(--accent-orange);
}

.contact-form-panel {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.005);
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    background-color: var(--neutral-bg-soft);
    color: var(--neutral-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-feedback {
    margin-top: 20px;
    padding: 14px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(46, 204, 113, 0.08);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.form-feedback.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.08);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.15);
}

/* Map Mockup Container */
.map-container {
    height: 360px;
    border-radius: var(--border-radius-lg);
    background-color: #e5e9f2;
    overflow: hidden;
    margin-top: 50px;
    border: 1px solid var(--border-light);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.94)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400"><rect width="800" height="400" fill="%23f8fafc"/><path d="M 0,100 L 800,100 M 0,200 L 800,200 M 0,300 L 800,300 M 200,0 L 200,400 M 400,0 L 400,400 M 600,0 L 600,400" stroke="%23e4e4e7" stroke-width="1.5"/><circle cx="450" cy="180" r="150" fill="none" stroke="%23ff6b00" stroke-width="1.5" stroke-dasharray="8 4"/><circle cx="450" cy="180" r="8" fill="%230066ff"/></svg>');
    background-size: cover;
    color: var(--primary-navy);
    text-align: center;
    padding: 24px;
}

.map-placeholder h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 14px;
    color: var(--neutral-gray);
    margin-bottom: 20px;
    max-width: 380px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Nav Drawer overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay .nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-navy);
    padding: 10px 30px;
    text-decoration: none; /* Removes underlines */
}

.mobile-nav-overlay .nav-link:hover {
    color: var(--accent-blue);
    background: none;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .strengths-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-detailed-card,
    .service-detailed-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Non-home page header */
    body:not(.home-page) header {
        top: 16px;
    }
    
    /* Homepage hero frame */
    .hero-frame {
        margin: 10px;
        border-radius: 18px;
        height: calc(100vh - 20px);
        background-image: url('assets/mobile_hero.webp');
        background-size: cover;
        background-position: center;
    }
    
    .hero-mountain-fg {
        background-image: url('assets/mobile_foreground.webp?v=3');
        background-size: cover;
        background-position: center;
    }

    /* Raise center text so "Cleared." clears the higher mobile ridge */
    .hero-center-text {
        transform: translate(-50%, calc(-50% - 150px));
    }

    /* Keep "Borders? Cleared." on a single line */
    .hero-tagline {
        font-size: 2rem;
        white-space: nowrap;
    }
    
    .hero-header {
        padding: 16px 20px;
    }
    
    /* Hide nav links on mobile, show hamburger */
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-frame .hero-content {
        padding: 36px 28px;
        max-width: 100%;
    }
    
    .hero-frame .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-frame .hero-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    /* Legacy hero */
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero .hero-btns {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-step {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 50px;
    }
    
    .timeline-step-badge {
        left: 20px;
        transform: translate(-50%, -10px);
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-banner {
        padding: 50px 24px;
    }
    
    .cta-banner h2 {
        font-size: 28px;
    }
}

/* ── About Section — Two-column editorial ── */
#about {
    background: #0E0E0E;
    padding: 140px 60px;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: 80px;
    align-items: end;
}

.about-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-orange);
    margin-bottom: 28px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.8vw, 4.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}

.about-right {
    padding-left: 30px;
}

.about-right p {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 24px;
}

.about-right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #about { padding: 72px 28px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Services Section ── */
#services {
    background: #ffffff;
    padding: 100px 60px;
}

.svc-layout {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-left: 200px;
}

.svc-aside {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-20px);
}

.svc-aside {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-aside-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-orange);
}

.svc-aside-label {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--neutral-gray);
    line-height: 1;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    min-width: 50%;
}

.svc-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #E2E2E2;
}

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

.svc-num {
    font-size: 11px;
    font-weight: 600;
    color: #B0B0B0;
    letter-spacing: 0.06em;
    min-width: 24px;
}

.svc-name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    #services { padding: 72px 28px; }
    .svc-layout { grid-template-columns: 1fr; gap: 40px; padding-left: 0; }
    /* Stack the "Our Services" label above the list instead of absolute overlap */
    .svc-aside { position: static; transform: none; margin-bottom: 28px; }
    .svc-list { width: 100%; min-width: 0; }
    .svc-name { font-size: clamp(1.4rem, 6vw, 2rem); }
    .svc-cta { text-align: center; margin-top: 36px !important; }
}

/* Banner */
.banner-section {
    padding: 0;
    background: none;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    display: block;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.banner-headline {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.banner-industries-wrapper {
    height: calc(48px * 1.15 * 5);
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, white 25%, white 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, white 25%, white 75%, transparent 100%);
}

.banner-industries {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-industries li {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    transition: color 0.4s ease, opacity 0.4s ease;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

.banner-industries li.highlighted {
    color: #ffffff;
}

/* Banner Top Right CTA */
.banner-cta-btn {
    position: absolute;
    top: 40px;
    right: 60px;
    transform: none;
    padding: 12px 28px;
    border-radius: 9999px;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    z-index: 10;
    transition: var(--transition-smooth);
}

.banner-cta-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .banner-cta-btn {
        right: 40px;
    }
}

@media (max-width: 768px) {
    .banner-cta-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        transform: none;
        margin: 0;
        display: inline-block;
        padding: 6px 12px;
        font-size: 9px;
    }
    .banner-cta-btn:hover {
        transform: translateY(-2px);
    }
    .banner-section {
        display: block;
        padding: 0;
        background: none;
    }
    .banner-text {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
    }
    .banner-headline {
        font-size: 14px;
        white-space: nowrap;
    }
    .banner-industries li {
        font-size: 14px;
        white-space: nowrap;
    }
    .banner-industries-wrapper {
        height: calc(14px * 1.15 * 5);
    }
}

/* Footer */
.site-footer {
    background: var(--primary-navy);
    padding: 48px 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-logo-arabic {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-orange); }

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Services responsive */
@media (max-width: 900px) {
    .svc-header { padding: 60px 32px 36px; flex-direction: column; gap: 8px; }
    .svc-row { grid-template-columns: 1fr; min-height: auto; }
    .svc-row--img-right .svc-visual,
    .svc-row--img-left  .svc-visual { order: 1; min-height: 260px; }
    .svc-row--img-right .svc-text,
    .svc-row--img-left  .svc-text  { order: 2; border: none; border-top: 1px solid #D8D3CB; }
    .svc-text { padding: 40px 32px; }
    .svc-cta-bar { flex-direction: column; gap: 24px; padding: 48px 32px; text-align: center; }
    .site-footer { padding: 40px 32px; }
    .footer-links { flex-direction: column; gap: 12px; }
}

/* ── Service accordion ── */
.svc-item {
    cursor: pointer;
}

.svc-item-header {
    display: flex;
    align-items: baseline;
    gap: 28px;
    padding: 28px 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-item-header:hover .svc-name {
    color: var(--accent-orange);
}

.svc-arrow {
    margin-left: auto;
    font-size: 20px;
    font-weight: 300;
    color: #B0B0B0;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s;
}

.svc-item.open .svc-arrow {
    transform: rotate(45deg);
    color: var(--accent-orange);
}

.svc-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-item.open .svc-item-body {
    max-height: 600px;
}

.svc-item-body-inner {
    padding-bottom: 32px;
}

.svc-item-desc {
    font-size: 18px;
    line-height: 1.75;
    color: var(--neutral-gray);
    max-width: 560px;
    margin: 0 0 20px;
    padding-left: 52px;
}

.svc-item-bullets {
    list-style: none;
    padding: 0 0 0 52px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-item-bullets li {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-navy);
    padding-left: 16px;
    position: relative;
}

.svc-item-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 400;
}

/* Truck Banner Section with Centered Translucent CTA Card */
.truck-banner-section {
    padding: 120px 40px;
    background: url('assets/truck_banner.webp') no-repeat center bottom;
    background-size: cover;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-glass-card {
    width: 100%;
    max-width: 1050px;
    background: rgba(18, 25, 41, 0.3); /* Translucent dark slate */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #ffffff;
    padding: 56px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    margin-top: -60px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    margin-bottom: 48px;
}

/* Left Column */
.cta-left-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-tag {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.cta-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 440px;
}

.cta-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 32px 0 24px 0;
}

.cta-location {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

.cta-location strong {
    color: #ffffff;
    margin-left: 6px;
    font-weight: 500;
}

/* Right Column (Form) */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-input-group {
    display: flex;
    flex-direction: column;
}

.cta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 0;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.cta-input:focus {
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.cta-textarea {
    min-height: 80px;
    resize: vertical;
}

.cta-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-submit-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    text-transform: uppercase;
    transition: opacity 0.2s, transform 0.2s;
    border-bottom: 1px solid transparent;
}

.cta-submit-btn:hover {
    opacity: 0.85;
    transform: translateX(2px);
}

.cta-reply-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.cta-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.cta-social-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.cta-social-icons {
    display: flex;
    gap: 10px;
}

.cta-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.cta-social-icon:hover {
    background: var(--accent-orange, #ff6b00);
    border-color: var(--accent-orange, #ff6b00);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

/* Card bottom footer */
.cta-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cta-left-info {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .truck-banner-section {
        padding: 60px 20px;
    }
    .cta-glass-card {
        padding: 40px 24px;
        border-radius: 12px;
        margin-top: -100px;
    }
    .cta-form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ── Process Section — Vertical Center-Line Timeline ── */
#process {
    background: #fff;
    padding: 100px 0 160px;
}

.proc-header {
    padding: 0 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.proc-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 12px;
}

.proc-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0;
}

.proc-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.proc-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1a1a1a;
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 9999px;
}

.proc-step {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.proc-step:last-child { margin-bottom: 0; }

/* Text left, visual right */
.proc-step--text-left .proc-text {
    text-align: right;
    padding-right: 48px;
    grid-column: 1;
    grid-row: 1;
}
.proc-step--text-left .proc-dot-wrap {
    grid-column: 2;
    grid-row: 1;
}
.proc-step--text-left .proc-visual {
    grid-column: 3;
    grid-row: 1;
}

/* Visual left, text right */
.proc-step--text-right .proc-visual {
    grid-column: 1;
    grid-row: 1;
}
.proc-step--text-right .proc-dot-wrap {
    grid-column: 2;
    grid-row: 1;
}
.proc-step--text-right .proc-text {
    text-align: left;
    padding-left: 48px;
    grid-column: 3;
    grid-row: 1;
}

.proc-dot-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1px;
    z-index: 2;
    position: relative;
}

.proc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px #ffffff;
    position: relative;
    z-index: 1;
}

.proc-pill {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #1a1a1a;
    border: 1px solid var(--accent-orange);
    border-radius: 9999px;
    padding: 4px 10px;
    white-space: nowrap;
    margin-bottom: 14px;
}

.proc-step-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 10px;
    line-height: 1.2;
}

.proc-step-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--neutral-gray);
    margin: 0;
    max-width: 320px;
}

.proc-step--text-left .proc-step-desc { margin-left: auto; }

.proc-visual {
    width: 100%;
    height: 220px;
    background: var(--primary-navy);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(13, 27, 75, 0.05);
}

.proc-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(13, 27, 75, 0.15);
}

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

.proc-visual-num {
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    user-select: none;
    line-height: 1;
}

@media (max-width: 900px) {
    #process { padding: 72px 0 90px; }
    .proc-header { padding: 0 32px 56px; }
    .proc-timeline { padding: 0 32px; }
    .proc-step { grid-template-columns: 40px 1fr; row-gap: 24px; margin-bottom: 72px; }
    .proc-line { left: calc(32px + 20px); }

    .proc-step--text-left .proc-text,
    .proc-step--text-right .proc-text {
        text-align: left;
        padding: 0 0 0 20px;
        grid-column: 2;
        grid-row: 1;
        max-width: 100%;
    }
    .proc-step--text-left .proc-step-desc,
    .proc-step--text-right .proc-step-desc { margin-left: 0; }

    .proc-step--text-left .proc-dot-wrap,
    .proc-step--text-right .proc-dot-wrap { grid-column: 1; grid-row: 1; }

    .proc-step--text-left .proc-visual,
    .proc-step--text-right .proc-visual {
        display: flex;
        grid-column: 2;
        grid-row: 2;
        padding: 0;
        margin-top: 16px;
        width: 100%;
        max-width: 100%;
        height: 160px;
    }
}

@media (max-width: 600px) {
    .proc-header { padding: 0 28px 60px; }
    .proc-timeline { padding: 0 20px; }
    .proc-line { left: calc(20px + 20px); }
}

/* Sleek Full-Width Cookie Consent Bar */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(11, 25, 44, 0.95); /* Immersive dark theme matching the header */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 32px; /* Super thin height */
    z-index: 9999;
    color: #ffffff;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-direction: row;
}

.cookie-text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px; /* Sleek small button heights to match 20px bar height */
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-accept {
    background: var(--accent-orange);
    border: 1px solid var(--accent-orange);
    color: #ffffff;
}

.cookie-accept:hover {
    background: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
    transform: translateY(-1px);
}

.cookie-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 12px 16px;
    }
    .cookie-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }
}

/* Floating WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9998; /* Under the cookie consent banner/mobile nav drawers but above regular page elements */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
}

/* Radiating Pulse Effect */
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float::before {
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float::after {
    animation: whatsapp-pulse 2s infinite 1s;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    stroke: none;
}

/* Shift WhatsApp button up if Cookie Consent is active to prevent overlapping */
.cookie-consent.show ~ .whatsapp-float {
    bottom: 90px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    .cookie-consent.show ~ .whatsapp-float {
        bottom: 120px; /* Moves higher on mobile where cookie banner stacks taller */
    }

    /* Ensure visibility of hamburger toggle on white scrolled header background */
    .hero-header.scrolled .mobile-nav-toggle span {
        background-color: var(--primary-navy, #0B192C) !important;
    }

    /* Hide other header controls when mobile menu overlay is open to keep it clean */
    .hero-header.menu-open .nav-left,
    .hero-header.menu-open .nav-btn {
        opacity: 0 !important;
        pointer-events: none !important;
    }
}




