/*
 * hci-theme.css — HCI Global Logistics Design System
 * Bootstrap 5 compatible | Modern Logistics Theme
 */

/* ────────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
──────────────────────────────────────────────────────────────── */
:root {
    --hci-navy: #0a1628;
    --hci-navy-mid: #112040;
    --hci-blue: #1e5fbe;
    --hci-blue-light: #2d7dd2;
    --hci-gold: #f0a500;
    --hci-gold-dark: #d4900a;
    --hci-white: #ffffff;
    --hci-grey-bg: #f4f6fb;
    --hci-grey-mid: #e2e8f0;
    --hci-text: #1a2340;
    --hci-muted: #64748b;
    --hci-border: #dde3f0;
    --hci-shadow: 0 4px 24px rgba(10, 22, 40, 0.10);
    --hci-shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.16);
    --hci-radius: 10px;
    --hci-radius-lg: 16px;
    --hci-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ────────────────────────────────────────────────────────────────
   GLOBAL BASE
──────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--hci-text);
    background: var(--hci-white);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--hci-navy);
}

p {
    color: var(--hci-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--hci-blue);
    transition: var(--hci-transition);
}

a:hover {
    color: var(--hci-gold);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

/* ────────────────────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────────────────────── */
.hci-navbar {
    background: transparent;
    transition: var(--hci-transition);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.hci-navbar.scrolled {
    background: var(--hci-white);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(10, 22, 40, 0.10);
}

.hci-navbar .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--hci-white) !important;
    transition: var(--hci-transition);
}

.hci-navbar.scrolled .navbar-brand {
    color: var(--hci-navy) !important;
}

.hci-navbar .brand-hci {
    color: var(--hci-gold);
}

.hci-navbar.scrolled .brand-hci {
    color: var(--hci-blue);
}

.hci-navbar .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--hci-transition);
}

.hci-navbar .nav-link:hover,
.hci-navbar .nav-link.active {
    color: var(--hci-gold) !important;
    background: rgba(255, 255, 255, 0.08);
}

.hci-navbar.scrolled .nav-link {
    color: var(--hci-navy) !important;
}

.hci-navbar.scrolled .nav-link:hover,
.hci-navbar.scrolled .nav-link.active {
    color: var(--hci-blue) !important;
    background: var(--hci-grey-bg);
}

.hci-navbar .btn-quote {
    background: var(--hci-gold);
    color: var(--hci-navy) !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 22px !important;
    border-radius: 50px;
    border: none;
    transition: var(--hci-transition);
    letter-spacing: 0.03em;
}

.hci-navbar .btn-quote:hover {
    background: var(--hci-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 165, 0, 0.35);
}

.hci-navbar.scrolled .btn-quote {
    background: var(--hci-blue);
    color: var(--hci-white) !important;
}

.hci-navbar.scrolled .btn-quote:hover {
    background: var(--hci-navy);
    box-shadow: 0 6px 20px rgba(30, 95, 190, 0.3);
}

/* Hamburger */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
    border-radius: 6px;
}

.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.9%29' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hci-navbar.scrolled .navbar-toggler {
    border-color: var(--hci-navy);
}

.hci-navbar.scrolled .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%2810,22,40,0.9%29' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ────────────────────────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────────────────────────── */
.hci-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hci-navy) 0%, #0f2a5c 50%, #0a1628 100%);
    overflow: hidden;
}

.hci-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('images/depot_hero_1.jpg') center/cover no-repeat;
    opacity: 0.18;
}

.hci-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(30, 95, 190, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 165, 0, 0.15) 0%, transparent 40%);
}

.hci-hero-content {
    position: relative;
    z-index: 2;
}

.hci-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 165, 0, 0.15);
    border: 1px solid rgba(240, 165, 0, 0.4);
    color: var(--hci-gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hci-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--hci-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hci-hero h1 .highlight {
    background: linear-gradient(90deg, var(--hci-gold), #ffcc44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hci-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 540px;
}

.hci-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating shapes */
.hci-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--hci-gold);
    animation: floatShape 8s ease-in-out infinite;
}

.hci-hero-shape.s1 {
    width: 400px;
    height: 400px;
    right: -100px;
    top: -100px;
    animation-delay: 0s;
}

.hci-hero-shape.s2 {
    width: 250px;
    height: 250px;
    right: 200px;
    bottom: 100px;
    animation-delay: 3s;
    background: var(--hci-blue-light);
}

.hci-hero-shape.s3 {
    width: 120px;
    height: 120px;
    left: 5%;
    top: 30%;
    animation-delay: 1.5s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-24px) scale(1.05);
    }
}

/* Hero service tags */
.hci-hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.hci-hero-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.8);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.hci-hero-tag i {
    color: var(--hci-gold);
    font-size: 1rem;
}

/* ────────────────────────────────────────────────────────────────
   STATS BAR
──────────────────────────────────────────────────────────────── */
.hci-stats-bar {
    background: var(--hci-blue);
    padding: 36px 0;
}

.hci-stat {
    text-align: center;
    padding: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hci-stat:last-child {
    border-right: none;
}

.hci-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--hci-white);
    line-height: 1;
    display: block;
}

.hci-stat-number span.gold {
    color: var(--hci-gold);
}

.hci-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ────────────────────────────────────────────────────────────────
   SECTION HEADERS
──────────────────────────────────────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hci-blue);
    background: rgba(30, 95, 190, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--hci-navy);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--hci-muted);
    max-width: 560px;
    margin: 0 auto;
}

.hci-divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--hci-gold), var(--hci-blue));
    border-radius: 2px;
    margin: 16px 0 24px;
}

.hci-divider.centered {
    margin: 16px auto 24px;
}

/* ────────────────────────────────────────────────────────────────
   SERVICE CARDS
──────────────────────────────────────────────────────────────── */
.hci-service-card {
    background: var(--hci-white);
    border-radius: var(--hci-radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--hci-border);
    transition: var(--hci-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hci-service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hci-blue), var(--hci-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--hci-transition);
}

.hci-service-card:hover {
    box-shadow: var(--hci-shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.hci-service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--hci-radius);
    background: linear-gradient(135deg, rgba(30, 95, 190, 0.1), rgba(30, 125, 210, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--hci-transition);
}

.hci-service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-blue-light));
}

.service-icon-wrap i {
    font-size: 2rem;
    color: var(--hci-blue);
    transition: var(--hci-transition);
}

.hci-service-card:hover .service-icon-wrap i {
    color: var(--hci-white);
}

.hci-service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--hci-navy);
}

.hci-service-card p {
    font-size: 0.9rem;
    color: var(--hci-muted);
    margin: 0;
    line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────────
   WHY US / FEATURE ITEMS
──────────────────────────────────────────────────────────────── */
.hci-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.4rem;
    color: var(--hci-white);
}

.feature-body h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hci-navy);
    margin-bottom: 6px;
}

.feature-body p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--hci-muted);
}

/* ────────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────────── */
.btn-hci-primary {
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-blue-light));
    color: var(--hci-white);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.03em;
    transition: var(--hci-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hci-primary:hover {
    background: linear-gradient(135deg, var(--hci-navy), var(--hci-blue));
    color: var(--hci-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 95, 190, 0.4);
}

.btn-hci-outline {
    background: transparent;
    color: var(--hci-white);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
    transition: var(--hci-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hci-outline:hover {
    background: var(--hci-white);
    color: var(--hci-navy);
    border-color: var(--hci-white);
    transform: translateY(-3px);
}

.btn-hci-gold {
    background: linear-gradient(135deg, var(--hci-gold), var(--hci-gold-dark));
    color: var(--hci-navy);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.03em;
    transition: var(--hci-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hci-gold:hover {
    background: linear-gradient(135deg, #ffcc44, var(--hci-gold));
    color: var(--hci-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.4);
}

/* ────────────────────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────────────────────── */
.hci-testimonial {
    background: var(--hci-white);
    border-radius: var(--hci-radius-lg);
    padding: 36px;
    border: 1px solid var(--hci-border);
    position: relative;
    height: 100%;
}

.hci-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 5rem;
    color: var(--hci-blue);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.hci-testimonial p {
    font-style: italic;
    color: var(--hci-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.t-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--hci-navy);
    display: block;
}

.t-role {
    font-size: 0.78rem;
    color: var(--hci-muted);
}

.stars {
    color: var(--hci-gold);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* ────────────────────────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────────────────────────── */
.hci-cta {
    background: linear-gradient(135deg, var(--hci-navy) 0%, #0f2a5c 100%);
    position: relative;
    overflow: hidden;
}

.hci-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--hci-blue);
    border-radius: 50%;
    right: -150px;
    top: -200px;
    opacity: 0.12;
}

.hci-cta h2 {
    color: var(--hci-white);
}

.hci-cta p {
    color: rgba(255, 255, 255, 0.7);
}

/* ────────────────────────────────────────────────────────────────
   CONTACT INFO CARDS
──────────────────────────────────────────────────────────────── */
.hci-contact-card {
    background: var(--hci-white);
    border-radius: var(--hci-radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--hci-border);
    transition: var(--hci-transition);
    text-align: center;
}

.hci-contact-card:hover {
    box-shadow: var(--hci-shadow-lg);
    transform: translateY(-4px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.6rem;
    color: var(--hci-white);
}

.hci-contact-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hci-navy);
    margin-bottom: 8px;
}

.hci-contact-card p {
    font-size: 0.88rem;
    color: var(--hci-muted);
    margin: 0;
    line-height: 1.6;
}

.hci-contact-card a {
    color: var(--hci-blue);
    text-decoration: none;
    font-weight: 500;
}

.hci-contact-card a:hover {
    color: var(--hci-gold);
}

/* ────────────────────────────────────────────────────────────────
   FORMS
──────────────────────────────────────────────────────────────── */
.hci-form-card {
    background: var(--hci-white);
    border-radius: var(--hci-radius-lg);
    padding: 44px 40px;
    box-shadow: var(--hci-shadow-lg);
}

.form-floating .form-control,
.form-floating .form-select {
    border: 1.5px solid var(--hci-border);
    border-radius: var(--hci-radius);
    font-size: 0.95rem;
    color: var(--hci-text);
    background: var(--hci-grey-bg);
    transition: var(--hci-transition);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--hci-blue);
    box-shadow: 0 0 0 3px rgba(30, 95, 190, 0.12);
    background: var(--hci-white);
}

.form-floating label {
    color: var(--hci-muted);
    font-size: 0.9rem;
}

/* ────────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────────── */
.hci-footer {
    background: var(--hci-navy);
    color: rgba(255, 255, 255, 0.72);
    padding: 70px 0 0;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--hci-white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand .brand-hci {
    color: var(--hci-gold);
}

.hci-footer p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hci-gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--hci-transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--hci-gold);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--hci-blue-light);
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--hci-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--hci-gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 48px 0 0;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--hci-gold);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--hci-transition);
}

.social-link:hover {
    background: var(--hci-gold);
    color: var(--hci-navy);
    border-color: var(--hci-gold);
}

/* ────────────────────────────────────────────────────────────────
   PAGE HERO (Inner Pages)
──────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--hci-navy) 0%, #0f2a5c 100%);
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/depot_delivery_1.jpg') center/cover no-repeat;
    opacity: 0.10;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--hci-blue);
    right: -100px;
    top: -150px;
    opacity: 0.12;
}

.page-hero h1 {
    color: var(--hci-white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb-item {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item a {
    color: var(--hci-gold);
    text-decoration: none;
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ────────────────────────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────────────────────────── */
.mission-card {
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-navy));
    border-radius: var(--hci-radius-lg);
    padding: 36px;
    color: white;
    height: 100%;
}

.mission-card h4 {
    color: var(--hci-gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.mission-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--hci-grey-bg);
    border-radius: 10px;
    border-left: 4px solid var(--hci-blue);
    margin-bottom: 12px;
    transition: var(--hci-transition);
}

.value-item:hover {
    background: var(--hci-white);
    box-shadow: var(--hci-shadow);
}

.value-item i {
    color: var(--hci-blue);
    font-size: 1.2rem;
}

.value-item span {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--hci-navy);
}

/* ────────────────────────────────────────────────────────────────
   FLOATING ELEMENTS
──────────────────────────────────────────────────────────────── */
/* WhatsApp */
#whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: var(--hci-transition);
}

#whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

#whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hci-blue);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(30, 95, 190, 0.4);
    transition: var(--hci-transition);
}

#back-to-top:hover {
    background: var(--hci-navy);
    transform: translateY(-3px);
}

#back-to-top.visible {
    display: flex;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--hci-navy);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(10, 22, 40, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    min-width: 200px;
}

#cookie-banner a {
    color: var(--hci-gold);
}

.cookie-btn {
    padding: 9px 22px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--hci-transition);
}

.cookie-btn-accept {
    background: var(--hci-gold);
    color: var(--hci-navy);
}

.cookie-btn-accept:hover {
    background: var(--hci-gold-dark);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-left: 8px;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ────────────────────────────────────────────────────────────────
   UTILITIES
──────────────────────────────────────────────────────────────── */
.bg-hci-navy {
    background-color: var(--hci-navy) !important;
}

.bg-hci-blue {
    background-color: var(--hci-blue) !important;
}

.bg-hci-grey {
    background-color: var(--hci-grey-bg) !important;
}

.text-hci-gold {
    color: var(--hci-gold) !important;
}

.text-hci-blue {
    color: var(--hci-blue) !important;
}

.text-hci-navy {
    color: var(--hci-navy) !important;
}

.text-hci-muted {
    color: var(--hci-muted) !important;
}

.section-py {
    padding: 90px 0;
}

.section-py-sm {
    padding: 60px 0;
}

.rounded-hci {
    border-radius: var(--hci-radius) !important;
}

.rounded-hci-lg {
    border-radius: var(--hci-radius-lg) !important;
}

/* Maps */
.hci-map-embed {
    border-radius: var(--hci-radius-lg);
    overflow: hidden;
    box-shadow: var(--hci-shadow-lg);
}

/* Alert feedback */
.alert-success-hci {
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: var(--hci-radius);
    padding: 14px 20px;
}

.alert-danger-hci {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--hci-radius);
    padding: 14px 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.7s ease both;
}

.animate-up-delay-1 {
    animation-delay: 0.15s;
}

.animate-up-delay-2 {
    animation-delay: 0.30s;
}

.animate-up-delay-3 {
    animation-delay: 0.45s;
}

/* ────────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hci-navbar {
        background: var(--hci-navy) !important;
        padding: 14px 0;
    }

    .hci-navbar .nav-link {
        padding: 10px 20px !important;
    }

    .hci-hero {
        min-height: 80vh;
    }

    .hci-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hci-stat:last-child {
        border-bottom: none;
    }

    .hci-form-card {
        padding: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hci-hero h1 {
        font-size: 1.9rem;
    }

    .hci-hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .hci-hero-tags {
        display: none;
    }

    .section-py {
        padding: 60px 0;
    }

    .hci-service-card {
        padding: 28px 22px;
    }
}

/* ────────────────────────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────────────────────────── */
.hiw-card {
    background: var(--hci-white);
    border: 1px solid var(--hci-border);
    border-radius: var(--hci-radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--hci-transition);
    height: 100%;
}

.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hci-shadow-lg);
}

.hiw-card-featured {
    background: var(--hci-navy);
    border-color: var(--hci-navy);
    transform: translateY(-12px);
    box-shadow: var(--hci-shadow-lg);
}

.hiw-card-featured:hover {
    transform: translateY(-16px);
}

.hiw-card-featured h4 {
    color: white !important;
}

.hiw-card-featured p {
    color: rgba(255, 255, 255, 0.70) !important;
}

.hiw-step {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--hci-border);
    line-height: 1;
    margin-bottom: 16px;
}

.hiw-card-featured .hiw-step {
    color: rgba(255, 255, 255, 0.10);
}

.hiw-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--hci-blue), var(--hci-blue-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: white;
    transition: var(--hci-transition);
}

.hiw-card-featured .hiw-icon {
    background: linear-gradient(135deg, var(--hci-gold), var(--hci-gold-dark));
    color: var(--hci-navy);
}

.hiw-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hci-navy);
    margin-bottom: 12px;
}

.hiw-card p {
    font-size: 0.88rem;
    color: var(--hci-muted);
    margin: 0;
    line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────────
   SHIPMENT TRACKING (DUMMY)
──────────────────────────────────────────────────────────────── */
.hci-tracking-section {
    background: linear-gradient(135deg, var(--hci-blue) 0%, #1558b0 100%);
    position: relative;
    overflow: hidden;
}

.hci-tracking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tracking-input-group {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
    max-width: 600px;
}

.tracking-input-group input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    flex: 1;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.tracking-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.50);
}

.tracking-input-group button {
    background: var(--hci-gold);
    color: var(--hci-navy);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--hci-transition);
    white-space: nowrap;
}

.tracking-input-group button:hover {
    background: white;
}

#track-result {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--hci-radius);
    padding: 18px 24px;
    color: white;
    font-size: 0.9rem;
    display: none;
    line-height: 1.6;
}

#track-result.show {
    display: block;
}

/* ────────────────────────────────────────────────────────────────
   INDUSTRIES WE SERVE
──────────────────────────────────────────────────────────────── */
.industry-card {
    background: var(--hci-white);
    border: 1px solid var(--hci-border);
    border-radius: var(--hci-radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--hci-transition);
    height: 100%;
}

.industry-card:hover {
    border-color: var(--hci-blue);
    box-shadow: var(--hci-shadow);
    transform: translateY(-4px);
}

.industry-card i {
    font-size: 2.2rem;
    color: var(--hci-blue);
    margin-bottom: 14px;
    display: block;
    transition: var(--hci-transition);
}

.industry-card:hover i {
    color: var(--hci-gold);
}

.industry-card h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hci-navy);
    margin: 0;
    line-height: 1.35;
}

/* ────────────────────────────────────────────────────────────────
   GLOBAL NETWORK
──────────────────────────────────────────────────────────────── */
.hci-global-section {
    background: linear-gradient(135deg, var(--hci-navy) 0%, #0f2a5c 100%);
    position: relative;
    overflow: hidden;
}

.hci-global-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trade-lane {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--hci-radius);
    padding: 14px 20px;
    margin-bottom: 10px;
    transition: var(--hci-transition);
}

.trade-lane:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(240, 165, 0, 0.5);
}

.trade-lane-flag {
    font-size: 1.3rem;
    min-width: 64px;
    text-align: center;
}

.trade-lane-info {
    flex: 1;
}

.trade-lane-info strong {
    display: block;
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.trade-lane-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.trade-lane-freq {
    background: var(--hci-gold);
    color: var(--hci-navy);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* ────────────────────────────────────────────────────────────────
   CERTIFICATIONS & PARTNERS
──────────────────────────────────────────────────────────────── */
.partners-section {
    background: var(--hci-white);
    padding: 56px 0;
    border-top: 1px solid var(--hci-border);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hci-grey-bg);
    border: 1px solid var(--hci-border);
    border-radius: var(--hci-radius);
    padding: 12px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hci-navy);
    transition: var(--hci-transition);
}

.cert-badge:hover {
    border-color: var(--hci-blue);
    background: white;
    box-shadow: var(--hci-shadow);
}

.cert-badge i {
    color: var(--hci-gold);
    font-size: 1.1rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 20px;
    filter: grayscale(1);
    opacity: 0.40;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--hci-navy);
    transition: var(--hci-transition);
}

.partner-logo:hover {
    filter: none;
    opacity: 1;
}