:root {

    --primary-color: #0B1F3A;
    --secondary-color: #102A43;

    --accent-color: #F97316;

    --dark-bg: #081120;

    --text-dark: #0F172A;
    --text-light: #64748B;

    --white: #FFFFFF;

    --light-bg: #F8FAFC;

    --transition: all 0.3s ease;

    --section-padding: 100px 0;

    --border-radius: 14px;
}

/* Global Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ====================================
   NAVBAR
==================================== */

/* ====================================
   PREMIUM GLASS NAVBAR
==================================== */

.custom-navbar {
    padding-top: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent !important;
    z-index: 1040 !important;
}

/* Navbar Container */

.custom-navbar .container {
    background: rgba(8, 17, 32, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo */

.navbar-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-top: 0;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Navigation Links */

.nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 15px;
    font-weight: 600;
    margin: 0 12px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover & Active Effect */

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

/* Animated Underline */

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Quote Button */

.quote-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 60px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
    display: inline-block;
}

/* Button Hover */

.quote-btn:hover {
    transform: translateY(-3px);
    background: #ff8c32;
    color: var(--white);
}

/* Navbar Scroll Effect */

.custom-navbar.scrolled {
    padding-top: 8px;
}

.custom-navbar.scrolled .container {
    background: rgba(8, 17, 32, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 6px 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

.custom-navbar.scrolled .navbar-brand img {
    height: 42px;
    margin-top: 0;
    margin-bottom: 0;
}

/* Navbar Toggler (Mobile Hamburger) */

.custom-navbar .navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: all 0.3s ease;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-navbar .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.12);
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-width='2.2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive Overrides */

@media (max-width: 991.98px) {
    .custom-navbar {
        padding-top: 10px;
    }

    .custom-navbar .container {
        padding: 8px 16px;
        border-radius: 14px;
    }

    .custom-navbar .navbar-brand img {
        height: 46px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .custom-navbar.scrolled .navbar-brand img {
        height: 38px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .custom-navbar .navbar-collapse {
        background: rgba(8, 17, 32, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .custom-navbar .nav-link {
        margin: 8px 0;
        padding: 6px 0;
        font-size: 15px;
    }

    .custom-navbar .nav-link::after {
        display: none;
    }

    .custom-navbar .quote-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
        padding: 10px 20px;
    }
}

/* ====================================
   HERO SECTION
==================================== */

.hero-section {
    min-height: 100vh;

    background: linear-gradient(135deg,
            #081120 0%,
            #0B1F3A 50%,
            #102A43 100%);

    position: relative;
    overflow: visible;

    margin-top: -120px;

    padding-top: 260px;
    padding-bottom: 120px;
}

/* Hero Content */

.hero-content {
    color: var(--white);
}



.hero-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #CBD5E1;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Hero Buttons */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.primary-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.secondary-btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Hero Visual */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tracking Card */

.tracking-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    color: var(--white);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.tracking-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
}

.tracking-top p {
    margin: 0;
    font-size: 14px;
    color: #CBD5E1;
}

.tracking-card h4 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* Route */

.tracking-route {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.route-point {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #334155;
}

.route-point.active {
    background: var(--accent-color);
}

.route-line {
    flex: 1;
    height: 4px;
    background: #334155;
}

.tracking-locations {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #CBD5E1;
}

/* Metric Card */

.metric-card {
    position: sticky;
    bottom: -40px;
    right: 20px;
    background: var(--white);
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.metric-card h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-card p {
    margin: 0;
    color: var(--text-light);
}

/* ====================================
   TRUST METRICS
==================================== */

.metrics-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
    margin-top: -80px;
}

.metric-box {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
    height: 100%;
}

.metric-box:hover {
    transform: translateY(-8px);
}

.metric-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.metric-box p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

/* ====================================
   SERVICES SECTION
==================================== */

.services-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* Section Heading */

.section-header {
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Service Cards */

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 35px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* Service Icon */

.service-icon {
    width: 75px;
    height: 75px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

/* Service Title */

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

/* Service Text */

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* ====================================
   WHY SECTION
==================================== */

.why-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* Image Wrapper */

.why-image-wrapper {
    position: relative;
    padding-right: 40px;
}

/* Main Image */

.why-main-image {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

/* Floating Card */

.floating-info-card {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    max-width: 280px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.floating-info-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.floating-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Right Content */

.why-content {
    padding-left: 40px;
}

/* Features */

.why-features {
    margin-top: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

/* Feature Icon */

.feature-icon {
    min-width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 700;
}

/* Feature Text */

.why-feature h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-feature p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* ====================================
   LIVE TRACKING PREVIEW
==================================== */
.tracking-preview-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.dashboard-mockup {
    background: var(--secondary-color);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

/* Mockup Header Controls */
.mockup-header {
    background: #0b1f3a;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.mockup-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 260px;
}

.mockup-search input {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
    outline: none;
    width: 100%;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-pulse {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseIndicator 2s infinite;
}

.status-text {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

/* Visualization Panels */
.panel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.route-map-panel,
.timeline-log-panel {
    background: rgba(11, 31, 58, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 18px;
    height: 100%;
}

/* Route Line Visualization */
.visual-route-line-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
}

.visual-route-line-container::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-fill-line {
    position: absolute;
    left: 0;
    height: 4px;
    background: var(--accent-color);
    z-index: 2;
}

.node {
    position: relative;
    z-index: 3;
    text-align: center;
}

.node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #334155;
    border: 3px solid var(--secondary-color);
    margin: 0 auto;
    transition: var(--transition);
}

.node.completed .node-dot {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.node.active .node-dot {
    background: var(--white);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

.node-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    white-space: nowrap;
}

.node.active .node-label {
    color: var(--white);
}

/* Timeline Logs */
.timeline-logs {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.log-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 25px;
}

.log-item::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.log-item:last-child::before {
    display: none;
}

.log-time {
    min-width: 65px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    padding-top: 2px;
}

.log-details h5 {
    font-size: 15px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.log-item.current .log-details h5 {
    color: var(--white);
}

.log-details p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

/* Glowing Indicator Keyframes */
@keyframes pulseIndicator {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ====================================
   TRACKING PREVIEW SECTION
==================================== */

.tracking-preview-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg,
            #081120 0%,
            #0B1F3A 100%);
    color: var(--white);
}

/* Override Text Colors */

.tracking-preview-section .section-title {
    color: var(--white);
}

.tracking-preview-section .section-text {
    color: #CBD5E1;
}

/* Dashboard */

.tracking-dashboard {
    margin-top: 70px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(20px);
}

/* Map */

.dashboard-map {
    position: relative;
}

.dashboard-map img {
    width: 100%;
    opacity: 0.95;
}

/* Route Indicators */

.route-indicator {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
}

/* Route Positions */

.route-1 {
    top: 42%;
    left: 28%;
}

.route-2 {
    top: 50%;
    left: 48%;
}

.route-3 {
    top: 36%;
    right: 18%;
}

/* Info Panel */

.tracking-info-panel {
    padding-left: 30px;
}

/* Shipment Card */

.shipment-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
}

/* Shipment Header */

.shipment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shipment-header h4 {
    font-size: 24px;
    margin: 0;
}

/* Status Badge */

.status-badge {
    background: rgba(34, 197, 94, 0.18);
    color: #22C55E;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Progress */

.progress-line {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    width: 72%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50px;
}

/* Route Items */

.route-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.route-item strong {
    font-size: 15px;
    margin-bottom: 5px;
}

.route-item span {
    color: #CBD5E1;
}

/* Metrics */

.operation-metrics {
    display: flex;
    gap: 20px;
}

.operation-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
}

.operation-box h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.operation-box p {
    margin: 0;
    color: #CBD5E1;
}

/* ====================================
   INDUSTRIES SECTION
==================================== */

.industries-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* Industry Card */

.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 420px;
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Image */

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Overlay */

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 17, 32, 0.92),
            rgba(8, 17, 32, 0.15));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: var(--white);
}

/* Hover Zoom */

.industry-card:hover img {
    transform: scale(1.08);
}

/* Industry Title */

.industry-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Industry Text */

.industry-overlay p {
    font-size: 16px;
    line-height: 1.8;
    color: #CBD5E1;
    margin: 0;
}

/* ====================================
   PROCESS SECTION
==================================== */

.process-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* Process Card */

.process-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
    z-index: 1;
}

/* Hover Effect */

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 45px rgba(11, 31, 58, 0.09);
}

/* Process Number Watermark */

.process-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(11, 31, 58, 0.035);
    line-height: 1;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-feature-settings: "tnum";
}

.process-card:hover .process-number {
    color: rgba(249, 115, 22, 0.08);
    transform: scale(1.08) translateY(-2px);
}

/* Process Icon Container */

.process-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(11, 31, 58, 0.03);
    border: 1px solid rgba(11, 31, 58, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-icon {
    width: 36px;
    height: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover .process-icon-container {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

/* Process Title */

.process-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

/* Process Text */

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Timeline Sequential Connectors */

@media (min-width: 992px) {
    .process-timeline-col {
        position: relative;
    }

    .process-timeline-col:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 80px;
        /* Aligns with center of process-icon-container */
        left: calc(100% - 20px);
        width: 40px;
        height: 2px;
        background-image: linear-gradient(to right, rgba(11, 31, 58, 0.15) 50%, transparent 50%);
        background-size: 8px 2px;
        background-repeat: repeat-x;
        z-index: 0;
        pointer-events: none;
    }
}

/* ====================================
   CTA SECTION
==================================== */

.cta-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

/* CTA Wrapper */

.cta-wrapper {
    background: linear-gradient(135deg,
            #081120 0%,
            #0B1F3A 100%);
    border-radius: 36px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

/* Optional Glow Effect */

.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    filter: blur(80px);
}

/* CTA Content */

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 25px;
    max-width: 700px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #CBD5E1;
    margin: 0;
    max-width: 650px;
}

/* CTA Button */

.cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
    text-decoration: none;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Premium CTA Elements & Buttons (About Page) */

.cta-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.cta-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: #CBD5E1;
    margin: 0;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
    border: 2px solid var(--accent-color);
}

.cta-btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-actions {
        margin-top: 30px;
        justify-content: flex-start;
    }
}

/* ====================================
   TESTIMONIALS
==================================== */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 35px;
}

.testimonial-user h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-user span {
    color: var(--text-light);
}

/* ====================================
   FOOTER
==================================== */

.footer-section {
    background: #081120;
    padding: 100px 0 40px;
    color: var(--white);
}

.footer-brand img {
    height: 90px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: #CBD5E1;
    line-height: 1.9;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 22px;
}

.footer-links ul {
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
    color: #CBD5E1;
}

.footer-links ul li a {
    color: #CBD5E1;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #94A3B8;
}

/* ====================================
   QUOTE MODAL
==================================== */

.quote-modal-content {
    background: #081120;
    border-radius: 30px;
    border: none;
}

.quote-form-wrapper {
    padding: 40px;
}

.quote-form-wrapper h2 {
    color: var(--white);
    font-weight: 800;
}

.custom-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 60px;
    color: var(--white) !important;
    border-radius: 16px;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1;
    /* Firefox */
}

.custom-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.custom-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1;
}

.custom-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: none;
    color: var(--white);
}

textarea.custom-input {
    height: auto;
}

.submit-btn {
    width: 100%;
    border: none;
    background: var(--accent-color);
    color: var(--white);
    height: 60px;
    border-radius: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ====================================
   ABOUT PAGE STYLES
==================================== */

.about-hero {
    background: linear-gradient(180deg, rgba(8, 17, 32, 0.85) 0%, rgba(8, 17, 32, 0.95) 100%),
        url('../images/about/about-hero.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-subtitle {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.about-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .about-hero-title {
        font-size: 34px;
    }

    .about-hero-text {
        font-size: 16px;
    }
}

/* Story Section */

.about-story-section {
    padding: 100px 0;
    background: var(--white);
}

.bg-light-section {
    background: var(--light-bg) !important;
}

.story-image-wrapper {
    position: relative;
    border-radius: 24px;
}

.rounded-24 {
    border-radius: 24px !important;
}

.story-overlay-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 24px 30px;
    box-shadow: 0 20px 40px rgba(8, 17, 32, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 220px;
    z-index: 10;
}

.story-overlay-badge h3 {
    color: var(--accent-color);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}

.story-overlay-badge p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Mission & Vision Section */

.about-mv-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.mv-card {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
}

.mv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 45px rgba(11, 31, 58, 0.08);
}

.mv-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(11, 31, 58, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.mv-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.mv-card:hover .mv-icon-wrapper {
    background: rgba(249, 115, 22, 0.08);
    color: var(--accent-color);
}

.mv-subtitle {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Core Values Section */

.about-values-section {
    padding: 100px 0;
    background: var(--white);
}

.value-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 45px rgba(11, 31, 58, 0.08);
}

.value-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    background: rgba(249, 115, 22, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Why We Exist Features */

.exist-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.exist-check-icon {
    width: 32px;
    height: 32px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.exist-check-icon svg {
    width: 16px;
    height: 16px;
}

.exist-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.exist-feature-text p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Operations Capabilities */

.about-ops-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.ops-card {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
}

.ops-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 45px rgba(11, 31, 58, 0.08);
}

.ops-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.ops-icon-container svg {
    width: 100%;
    height: 100%;
}

.ops-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.ops-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Timeline/Journey Section */

.about-timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline-container {
    position: relative;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .timeline-container::after {
        content: "";
        position: absolute;
        top: 41px;
        left: 0;
        width: 100%;
        height: 2px;
        background-image: linear-gradient(to right, rgba(11, 31, 58, 0.12) 60%, transparent 40%);
        background-size: 10px 2px;
        background-repeat: repeat-x;
        z-index: 1;
    }
}

.timeline-card {
    position: relative;
    height: 100%;
    text-align: left;
    z-index: 2;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    background: var(--white);
}

.timeline-node {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    flex-shrink: 0;
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-node {
    transform: scale(1.2);
    background: var(--accent-color);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2);
}

.timeline-year {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.timeline-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 991px) {
    .timeline-header {
        margin-bottom: 12px;
    }

    .timeline-node {
        width: 18px;
        height: 18px;
        border-width: 3px;
    }

    .timeline-year {
        font-size: 22px;
    }
}

/* ====================================
   SERVICES PAGE STYLING
==================================== */

/* Services Hero */

.services-hero {
    background: url('../images/services/services-hero.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 17, 32, 0.92) 0%, rgba(11, 31, 58, 0.85) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.services-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    max-width: 800px;
}

.services-text {
    font-size: 18px;
    line-height: 1.8;
    color: #CBD5E1;
    margin-bottom: 35px;
    max-width: 700px;
}

.services-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Overview */

.services-overview {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.section-header-left {
    position: relative;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-top: 10px;
}

.overview-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Services Main Grid */

.services-grid-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.service-grid-card {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
    display: flex;
    flex-direction: column;
}

.service-grid-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.08);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-grid-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(8, 17, 32, 0.85);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.service-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.service-card-link svg {
    transition: transform 0.3s ease;
}

.service-grid-card:hover .service-card-link {
    color: var(--primary-color);
}

.service-grid-card:hover .service-card-link svg {
    transform: translateX(5px);
}

/* Detailed Service Sections */

.detailed-services-section {
    background: var(--white);
}

.detail-service-block {
    padding: 110px 0;
    position: relative;
}

.detail-service-block.alt-bg {
    background: var(--light-bg);
}

.detail-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.detail-service-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 20px;
}

.detail-service-content .lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.detail-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.metric-item .metric-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.metric-item .metric-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

.detail-bullet-list {
    padding: 0;
    margin: 0;
}

.detail-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.bullet-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-service-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8, 17, 32, 0.12);
}

.detail-service-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-accent-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(8, 17, 32, 0.45) 100%);
    pointer-events: none;
}

/* Operational Advantages */

.advantages-section {
    padding: var(--section-padding);
    background: #081120;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(249, 115, 22, 0.06);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    filter: blur(100px);
    pointer-events: none;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.advantage-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.text-accent {
    color: var(--accent-color);
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #94A3B8;
    margin: 0;
}

/* Services Workflow */

.services-workflow-section {
    padding: var(--section-padding);
    background: var(--white);
}

.workflow-steps-container {
    position: relative;
    margin-top: 60px;
}

.workflow-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, rgba(11, 31, 58, 0.12) 60%, transparent 40%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    z-index: 1;
}

.relative-row {
    position: relative;
    z-index: 2;
}

.workflow-step-card {
    position: relative;
    text-align: left;
    height: 100%;
}

.step-num-watermark {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 54px;
    font-weight: 800;
    color: rgba(11, 31, 58, 0.04);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.step-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.workflow-step-card:hover .step-icon-wrapper {
    transform: scale(1.15);
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2);
}

.workflow-step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.workflow-step-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */

.faq-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.faq-header {
    padding-right: 30px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.06) !important;
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.01);
}

.faq-item .accordion-button {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 22px 25px;
    background: var(--white) !important;
    box-shadow: none !important;
    border: none;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--accent-color);
}

.faq-item .accordion-button::after {
    background-size: 12px;
}

.faq-item .accordion-body {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
}

/* ====================================
   RESPONSIVE OVERRIDES
==================================== */

@media (max-width: 991px) {
    .services-title {
        font-size: 38px;
    }

    .services-hero {
        padding: 140px 0 80px;
    }

    .section-header-left h2 {
        font-size: 30px;
    }

    .overview-content {
        margin-top: 30px;
    }

    .detail-service-block {
        padding: 70px 0;
    }

    .detail-service-content h2 {
        font-size: 28px;
    }

    .detail-service-content .lead-text {
        font-size: 16px;
    }

    .detail-service-img-wrapper {
        margin-top: 40px;
    }

    .workflow-line {
        display: none;
    }

    .step-num-watermark {
        font-size: 44px;
    }

    .faq-header {
        margin-bottom: 40px;
        padding-right: 0;
    }
}

/* ====================================
   INDUSTRIES GRID FINE-TUNING (4-COLUMN GRID)
==================================== */
.industries-section .col-lg-3 .industry-card {
    height: 395px;
    border-radius: 24px;
}

.industries-section .col-lg-3 .industry-overlay {
    padding: 24px 20px;
    background: linear-gradient(to top,
            rgba(8, 17, 32, 0.96) 0%,
            rgba(8, 17, 32, 0.45) 55%,
            rgba(8, 17, 32, 0.05) 100%);
}

.industries-section .col-lg-3 .industry-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.industries-section .col-lg-3 .industry-overlay p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #CBD5E1;
}

@media (max-width: 991px) {
    .industries-section .col-md-6 .industry-card {
        height: 370px;
    }

    .industries-section .col-md-6 .industry-overlay h3 {
        font-size: 19px;
    }
}

/* ====================================
   INDUSTRIES PAGE
====================================== */

/* Industries Hero */
.industries-hero {
    min-height: 75vh;
    background: linear-gradient(rgba(8, 17, 32, 0.88), rgba(8, 17, 32, 0.95)),
        url('../images/industries-page/industries-hero.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    z-index: 1;
}

.industries-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.industries-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.industries-subtitle {
    font-size: 19px;
    line-height: 1.75;
    color: #CBD5E1;
    max-width: 720px;
    margin-bottom: 0;
}

/* Industries Overview Section */
.industries-overview-section {
    padding: 90px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.overview-lead {
    font-size: 21px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.overview-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Alternating Detail Blocks */
.industry-detail-block {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.industry-detail-block:nth-child(odd) {
    background: var(--light-bg);
}

.industry-detail-block:nth-child(even) {
    background: var(--white);
}

.detail-block-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(8, 17, 32, 0.08);
    height: 480px;
    border: 1px solid rgba(11, 31, 58, 0.06);
}

.detail-block-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-block-img-wrapper:hover .detail-block-img {
    transform: scale(1.05);
}

.detail-block-content {
    padding-top: 15px;
}

.industry-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.detail-block-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.detail-block-content .lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Challenges Grid */
.challenges-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.challenge-list {
    margin-bottom: 35px;
}

.challenge-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.challenge-item::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Solutions Highlight Card */
.solution-highlight-card {
    background: linear-gradient(135deg, #0B1F3A 0%, #081120 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 18px;
    padding: 25px 30px;
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 30px rgba(8, 17, 32, 0.15);
}

.solution-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 18px 0 0 18px;
}

.solution-highlight-card h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.solution-highlight-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #CBD5E1;
    margin-bottom: 0;
}

/* Capabilities Grid */
.capabilities-section {
    padding: var(--section-padding);
    background: var(--white);
}

.capability-card {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.07);
}

.capability-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(11, 31, 58, 0.03);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover .capability-icon-wrap {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.capability-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.capability-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Regional Coverage Map Section */
.regional-coverage-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #081120 0%, #0B1F3A 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.regional-coverage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    z-index: -1;
}

.country-grid-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.country-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.country-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #CBD5E1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-tag:hover {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.country-tag .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.corridor-map-graphic {
    position: relative;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-node-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.corridor-map-bg {
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.map-corridor-line {
    position: absolute;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
    height: 1px;
}

.map-city-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-city-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color);
    position: relative;
}

.map-city-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    animation: pulseNode 2s infinite;
}

.map-city-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
    white-space: nowrap;
}

@keyframes pulseNode {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Case Study Section */
.case-study-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.case-study-card {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.04);
}

.case-study-meta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-study-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.case-parameter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(11, 31, 58, 0.08);
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.case-parameter-grid .case-parameter-item {
    flex: 1;
    min-width: 140px;
}

.case-parameter-item h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.case-parameter-item p {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Trust Pillars */
.industries-trust-section {
    padding: var(--section-padding);
    background: var(--white);
}

.trust-pillar-card {
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(11, 31, 58, 0.06);
    background: var(--light-bg);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-pillar-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.05);
}

.trust-pillar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-pillar-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-pillar-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.trust-pillar-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .industries-title {
        font-size: 36px;
    }

    .industries-hero {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .detail-block-img-wrapper {
        height: 350px;
        margin-top: 40px;
    }

    .industry-detail-block {
        padding: 60px 0;
    }

    .detail-block-content h2 {
        font-size: 28px;
    }

    .case-study-card {
        padding: 30px 20px;
    }

    .case-study-card h3 {
        font-size: 24px;
    }

    .country-grid-panel {
        padding: 25px;
    }

    .corridor-map-graphic {
        margin-top: 40px;
        min-height: 320px;
    }
}

/* ====================================
   TRACKING PAGE
====================================== */

/* Tracking Hero */
.tracking-hero {
    min-height: 70vh;
    background: linear-gradient(rgba(8, 17, 32, 0.88), rgba(8, 17, 32, 0.95)),
        url('../images/tracking/tracking-hero.png') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    z-index: 1;
}

.tracking-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.tracking-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.tracking-subtitle {
    font-size: 19px;
    line-height: 1.75;
    color: #CBD5E1;
    max-width: 720px;
    margin-bottom: 0;
}

/* Shipment Tracking Console Centerpiece */
.tracking-console-section {
    padding: var(--section-padding);
    background: #081120;
    position: relative;
    z-index: 1;
}

.tracking-console-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, rgba(8, 17, 32, 0) 0%, #081120 100%);
    z-index: -1;
}

.tracking-dashboard-card {
    background: rgba(11, 31, 58, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.console-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.console-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.console-tag {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
}

.console-shipment-id {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.console-route-path {
    font-size: 15px;
    color: #CBD5E1;
    margin-top: 5px;
}

.console-progress-wrap {
    margin-top: 15px;
}

.console-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 8px;
}

.console-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.console-progress-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, #F97316 0%, #ff8c32 100%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
    position: relative;
}

/* Telemetry Logs */
.telemetry-logs-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.panel-header-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.telemetry-table {
    width: 100%;
    margin-bottom: 0;
}

.telemetry-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.telemetry-table tr:last-child {
    border-bottom: none;
}

.telemetry-table td {
    padding: 16px 0;
    vertical-align: top;
    font-size: 14px;
}

.telemetry-time {
    font-weight: 600;
    color: #94A3B8;
    width: 120px;
}

.telemetry-event {
    color: var(--white);
    font-weight: 500;
}

.telemetry-loc {
    color: #64748B;
    font-size: 13px;
    margin-top: 2px;
}

.telemetry-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.telemetry-status-dot.approved {
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.telemetry-status-dot.active {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.telemetry-status-dot.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(249, 115, 22, 0.6);
    border-radius: 50%;
    animation: pulseActive 1.8s infinite;
}

@keyframes pulseActive {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Map Dashboard Wrapper */
.gps-map-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gps-map-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    flex: 1;
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gps-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.gps-node-wrapper {
    position: absolute;
    top: 58%;
    left: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gps-pulse-node {
    width: 14px;
    height: 14px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
    position: relative;
}

.gps-pulse-node::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(249, 115, 22, 0.5);
    border-radius: 50%;
    animation: pulseGPSNode 2.2s infinite;
}

.gps-location-banner {
    background: rgba(8, 17, 32, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    margin-top: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulseGPSNode {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* Shipment Journey Timeline */
.tracking-lifecycle-section {
    padding: var(--section-padding);
    background: var(--white);
}

.journey-timeline-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.journey-timeline-row::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(11, 31, 58, 0.06);
    z-index: 1;
}

.journey-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 2;
}

.journey-node-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid #CBD5E1;
    box-shadow: 0 0 0 4px var(--white);
    transition: all 0.4s ease;
}

.journey-node.completed .journey-node-dot {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 150, 0.4);
}

.journey-node.active .journey-node-dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.45);
    transform: scale(1.15);
}

.journey-node-content {
    text-align: center;
    margin-top: 20px;
    padding: 0 15px;
}

.journey-node-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.journey-node-content p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Tracking Benefits Section */
.tracking-benefits-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.benefit-pill-card {
    background: var(--white);
    border: 1px solid rgba(11, 31, 58, 0.06);
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.015);
}

.benefit-pill-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.05);
    transform: translateY(-4px);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-pill-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.benefit-pill-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Security & Transparency Section */
.tracking-security-section {
    padding: var(--section-padding);
    background: var(--white);
}

.security-compliance-panel {
    background: var(--light-bg);
    border: 1px solid rgba(11, 31, 58, 0.06);
    border-radius: 24px;
    padding: 45px;
    height: 100%;
}

.security-compliance-panel h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.security-tech-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.security-tech-item:last-child {
    margin-bottom: 0;
}

.security-tech-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(11, 31, 58, 0.04);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-tech-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.security-tech-content p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .tracking-title {
        font-size: 36px;
    }

    .tracking-hero {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .tracking-dashboard-card {
        padding: 25px 20px;
    }

    .console-shipment-id {
        font-size: 20px;
    }

    .gps-map-panel {
        margin-top: 30px;
    }

    .journey-timeline-row {
        flex-direction: column;
        gap: 30px;
    }

    .journey-timeline-row::before {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
    }

    .journey-node {
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
    }

    .journey-node-dot {
        flex-shrink: 0;
        box-shadow: 0 0 0 4px var(--white);
    }

    .journey-node-content {
        text-align: left;
        margin-top: 0;
        padding: 0;
    }

    .security-compliance-panel {
        padding: 30px 20px;
    }
}

/* ====================================
   CONTACT PAGE CUSTOM STYLES
==================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 180px 0 110px;
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: url('../images/contact/contact-hero.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 17, 32, 0.95) 0%, rgba(8, 17, 32, 0.8) 50%, rgba(8, 17, 32, 0.4) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-tag {
    font-size: 13.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-btn-secondary {
    display: inline-block;
    padding: 11px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 60px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.contact-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Contact Intro section */
.contact-intro-section {
    padding: 90px 0 50px;
    background: var(--white);
}

/* Contact Cards section */
.contact-cards-section {
    padding: 0 0 90px;
    background: var(--white);
}

.contact-grid-card {
    background: rgba(11, 31, 58, 0.02);
    border: 1px solid rgba(11, 31, 58, 0.06);
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
}

.contact-grid-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.04);
    transform: translateY(-4px);
    background: var(--white);
}

.contact-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-grid-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-detail a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--accent-color);
}

/* Enterprise Intake Form section */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.contact-form-wrapper {
    background: rgba(16, 42, 67, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.form-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-form-wrapper h2 {
    color: var(--white);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-form-wrapper p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 0;
}

.contact-form-wrapper label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    background: rgba(8, 17, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 18px;
    color: var(--white);
    font-size: 14.5px;
    transition: var(--transition);
}

.contact-form-wrapper .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    background: rgba(8, 17, 32, 0.8);
    border-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.15);
    color: var(--white);
}

.contact-form-wrapper select option {
    background: var(--secondary-color);
    color: var(--white);
}

.contact-submit-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 45px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    transition: var(--transition);
}

.contact-submit-btn:hover {
    background: #ff8c32;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

/* Support Trust section */
.contact-support-section {
    padding: var(--section-padding);
    background: var(--white);
}

.support-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.support-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.25;
}

.support-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 20px;
}

.support-stats-list {
    margin: 30px 0 0;
    padding: 0;
}

.support-stats-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14.5px;
    color: var(--text-dark);
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.support-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.05);
}

.support-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.support-img-wrapper:hover .support-img {
    transform: scale(1.02);
}

.support-img-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.support-img-badge h5 {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.support-img-badge p {
    font-size: 11px;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* Map coordinates section */
.contact-map-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.map-card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: 0 20px 40px rgba(11, 31, 58, 0.03);
}

.map-iframe-container {
    width: 100%;
    height: 450px;
}

.map-iframe-container iframe {
    filter: grayscale(0.2) contrast(1.1);
}

.map-details-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(8, 17, 32, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px;
    max-width: 380px;
    color: var(--white);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.map-details-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.map-loc-item {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.map-loc-item:last-child {
    margin-bottom: 0;
}

/* FAQ Accordion section */
.contact-faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-item {
    background: var(--light-bg) !important;
    border: 1px solid rgba(11, 31, 58, 0.06) !important;
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-btn {
    background: transparent !important;
    color: var(--primary-color) !important;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 25px;
    box-shadow: none !important;
    border: none !important;
}

.faq-btn::after {
    filter: brightness(0.2);
}

.faq-btn:not(.collapsed) {
    color: var(--accent-color) !important;
    border-bottom: 1px solid rgba(11, 31, 58, 0.04) !important;
}

.faq-btn:not(.collapsed)::after {
    filter: none;
}

.faq-body {
    padding: 20px 25px 25px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-light);
}

/* CTA strip section */
.contact-cta-section {
    padding: 0 0 90px;
    background: var(--white);
}

.contact-cta-wrapper {
    position: relative;
    background: var(--primary-color);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.15);
}

.contact-cta-wrapper .cta-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0) 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.contact-cta-wrapper .cta-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-cta-wrapper .cta-title {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-cta-wrapper .cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 0;
}

.contact-cta-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.contact-cta-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .contact-title {
        font-size: 36px;
    }

    .contact-hero {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .contact-form-wrapper h2 {
        font-size: 26px;
    }

    .support-title {
        font-size: 28px;
    }

    .map-details-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: 20px;
        background: var(--primary-color);
    }

    .contact-cta-wrapper {
        padding: 40px 25px;
        text-align: center;
    }

    .contact-cta-btn {
        margin-top: 25px;
    }
}