/* ============================================
   CIRREN GROUP — Modern Corporate Stylesheet
   Brand Color: #004AAD (Dark Blue)
   Font: Montserrat
   ============================================ */

:root {
    --primary: #004AAD;
    --primary-light: #1a6ed8;
    --primary-dark: #003580;
    --secondary: #0077CC;
    --accent: #00B4D8;
    --dark: #0a1628;
    --dark-light: #1a2a44;
    --text: #2d3748;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE & RESET
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

::selection {
    background: var(--primary);
    color: var(--white);
}


/* ============================================
   SPINNER
   ============================================ */

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.4s ease, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    z-index: 99999 !important;
}

.toast {
    border-radius: var(--radius-sm) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
    transition: opacity 0.4s ease, transform 0.4s ease;
    min-width: 320px;
    animation: toastSlideIn 0.4s ease;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.toast-hide {
    opacity: 0 !important;
    transform: translateX(100%) !important;
}


/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.text-center .section-label {
    padding-left: 0;
}

.text-center .section-label::before {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.3);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}


/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    padding: 0;
    background: var(--white);
    transition: var(--transition-slow);
    top: -100px;
    border: none;
    z-index: 9999;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    align-self: flex-end;
    margin-bottom: 2px;
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .btn-primary {
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: 50px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        border-top: 1px solid var(--border);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .btn-primary {
        margin-top: 0.5rem;
        display: inline-block;
        width: auto;
    }
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 20, 60, 0.85) 0%,
        rgba(0, 74, 173, 0.65) 50%,
        rgba(0, 20, 60, 0.80) 100%
    );
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #60d5f7 0%, #94e4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons .btn {
    margin-bottom: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}


/* ============================================
   SECTION PADDING
   ============================================ */

.section-padding {
    padding: 6rem 0;
}

.bg-light-subtle {
    background-color: #f1f5f9 !important;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.875rem;
    }
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about-images {
    position: relative;
    padding: 2rem;
}

.about-img-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 2;
}

.about-img-accent img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.experience-content {
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
    display: block;
    margin-top: 4px;
}

.about-value-card {

}


/* ============================================
   CULTURE & VALUES CARDS
   ============================================ */

.values-card {
    height: 100%;
}

.values-card-inner {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 1.75rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e8ecf1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.values-card-inner:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 74, 173, 0.12);
}

/* Top colored line */
.values-card-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 0 0 4px 4px;
    transition: width 0.4s ease;
}

.values-card-inner:hover .values-card-line {
    width: 100%;
}

/* Icon */
.values-card-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-card-icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 74, 173, 0.06);
    border-radius: 16px;
    transition: all 0.4s ease;
    transform: rotate(0deg);
}

.values-card-inner:hover .values-card-icon-bg {
    background: rgba(0, 74, 173, 0.1);
    border-radius: 50%;
    transform: rotate(45deg) scale(1.1);
}

.values-card-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.65rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.values-card-inner:hover .values-card-icon i {
    transform: scale(1.15);
}

/* Title */
.values-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

/* Description */
.values-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Number watermark */
.values-card-num {
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 74, 173, 0.04);
    line-height: 1;
    transition: color 0.4s ease;
    pointer-events: none;
}

.values-card-inner:hover .values-card-num {
    color: rgba(0, 74, 173, 0.08);
}

/* Color variations per column */
.row > [class*="col-"]:nth-child(1) .values-card-line { background: #004AAD; }
.row > [class*="col-"]:nth-child(2) .values-card-line { background: #0068e0; }
.row > [class*="col-"]:nth-child(3) .values-card-line { background: #00a3e0; }
.row > [class*="col-"]:nth-child(4) .values-card-line { background: #00c6a7; }

.row > [class*="col-"]:nth-child(2) .values-card-icon-bg { background: rgba(0, 104, 224, 0.06); }
.row > [class*="col-"]:nth-child(2) .values-card-icon i { color: #0068e0; }
.row > [class*="col-"]:nth-child(2) .values-card-inner:hover { border-color: #0068e0; }
.row > [class*="col-"]:nth-child(2) .values-card-inner:hover .values-card-icon-bg { background: rgba(0, 104, 224, 0.1); }

.row > [class*="col-"]:nth-child(3) .values-card-icon-bg { background: rgba(0, 163, 224, 0.06); }
.row > [class*="col-"]:nth-child(3) .values-card-icon i { color: #00a3e0; }
.row > [class*="col-"]:nth-child(3) .values-card-inner:hover { border-color: #00a3e0; }
.row > [class*="col-"]:nth-child(3) .values-card-inner:hover .values-card-icon-bg { background: rgba(0, 163, 224, 0.1); }

.row > [class*="col-"]:nth-child(4) .values-card-icon-bg { background: rgba(0, 198, 167, 0.06); }
.row > [class*="col-"]:nth-child(4) .values-card-icon i { color: #00c6a7; }
.row > [class*="col-"]:nth-child(4) .values-card-inner:hover { border-color: #00c6a7; }
.row > [class*="col-"]:nth-child(4) .values-card-inner:hover .values-card-icon-bg { background: rgba(0, 198, 167, 0.1); }

.row > [class*="col-"]:nth-child(2) .values-card-num { color: rgba(0, 104, 224, 0.04); }
.row > [class*="col-"]:nth-child(2) .values-card-inner:hover .values-card-num { color: rgba(0, 104, 224, 0.08); }
.row > [class*="col-"]:nth-child(3) .values-card-num { color: rgba(0, 163, 224, 0.04); }
.row > [class*="col-"]:nth-child(3) .values-card-inner:hover .values-card-num { color: rgba(0, 163, 224, 0.08); }
.row > [class*="col-"]:nth-child(4) .values-card-num { color: rgba(0, 198, 167, 0.04); }
.row > [class*="col-"]:nth-child(4) .values-card-inner:hover .values-card-num { color: rgba(0, 198, 167, 0.08); }

/* Responsive */
@media (max-width: 768px) {
    .values-card-inner {
        padding: 2rem 1.5rem 1.75rem;
    }

    .values-card-icon {
        width: 60px;
        height: 60px;
    }

    .values-card-num {
        font-size: 2.25rem;
    }
}

/* ============================================
   MISSION & VISION CARDS
   ============================================ */

.mv-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Colored top accent bar */
.mv-card-accent {
    height: 5px;
    border-radius: 16px 16px 0 0;
}

.mv-card-mission .mv-card-accent {
    background: linear-gradient(90deg, #004AAD 0%, #0068e0 100%);
}

.mv-card-vision .mv-card-accent {
    background: linear-gradient(90deg, #d4920a 0%, #f0b429 100%);
}

/* Card body */
.mv-card-body {
    padding: 2.5rem 2rem 3.5rem;
    text-align: center;
    flex: 1;
}

.mv-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.mv-card-mission .mv-card-icon {
    background: rgba(0, 74, 173, 0.08);
    color: #004AAD;
}

.mv-card-vision .mv-card-icon {
    background: rgba(212, 146, 10, 0.08);
    color: #d4920a;
}

.mv-card:hover .mv-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* Numbered badge at bottom */
.mv-card-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mv-card-badge span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.mv-card:hover .mv-card-badge span {
    transform: scale(1.15);
}

.mv-badge-mission span {
    background: linear-gradient(135deg, #004AAD 0%, #0068e0 100%);
}

.mv-badge-vision span {
    background: linear-gradient(135deg, #d4920a 0%, #f0b429 100%);
}

/* Left/right colored side accents */
.mv-card::before,
.mv-card::after {
    content: '';
    position: absolute;
    top: 20%;
    width: 4px;
    height: 60%;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mv-card::before {
    left: -2px;
}

.mv-card::after {
    right: -2px;
}

.mv-card:hover::before,
.mv-card:hover::after {
    opacity: 1;
}

.mv-card-mission::before,
.mv-card-mission::after {
    background: #004AAD;
}

.mv-card-vision::before,
.mv-card-vision::after {
    background: #d4920a;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-card-body {
        padding: 2rem 1.5rem 3rem;
    }

    .mv-card-title {
        font-size: 1.25rem;
    }

    .mv-card + .mv-card {
        margin-top: 2rem;
    }
}


/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin: 0;
}


/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
}

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

.service-card-img {
    overflow: hidden;
    height: 220px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 1.75rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 74, 173, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card-body p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}


/* ============================================
   TRANSPORT MODE CARDS
   ============================================ */

.transport-mode-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.transport-mode-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.transport-mode-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.transport-mode-card h5 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.transport-mode-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}


/* ============================================
   CEO / MANAGING DIRECTOR QUOTE SECTION
   ============================================ */

.ceo-quote-section {
    position: relative;
    padding: 7rem 0;
    background: #0a0e1a;
    overflow: hidden;
}

/* ---------- Animated wave background ---------- */
.ceo-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.ceo-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 42%;
    opacity: 0.06;
}

.ceo-wave-1 {
    background: radial-gradient(ellipse at center, var(--primary) 0%, transparent 70%);
    top: -60%;
    left: -50%;
    animation: ceo-wave-rotate 18s linear infinite;
}

.ceo-wave-2 {
    background: radial-gradient(ellipse at center, #00c6fb 0%, transparent 70%);
    top: -80%;
    right: -60%;
    animation: ceo-wave-rotate 24s linear infinite reverse;
}

.ceo-wave-3 {
    background: radial-gradient(ellipse at center, var(--primary) 0%, transparent 60%);
    bottom: -90%;
    left: -30%;
    animation: ceo-wave-rotate 30s linear infinite;
}

@keyframes ceo-wave-rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---------- Text content ---------- */
.ceo-quote-content {
    padding: 2rem 0;
}

.ceo-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.ceo-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.ceo-headline-name {
    /* No gradient needed — crisp white like the reference */
    color: #fff;
}

.ceo-role-line {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ceo-role-highlight {
    color: #00e5a0;
    font-weight: 600;
    font-style: italic;
}

.ceo-role-position {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Quote block */
.ceo-quote-block {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid rgba(255, 255, 255, 0.08);
}

.ceo-quote-mark {
    margin-bottom: 0.75rem;
}

.ceo-quote-mark i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.ceo-quote-block blockquote {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin: 0;
    font-style: italic;
    border: none;
    padding: 0;
}

/* ---------- Round image with glowing ring ---------- */
.ceo-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.ceo-image-ring {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated glowing ring */
.ceo-image-ring-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #00e5a0 0%,
        var(--primary) 25%,
        #00c6fb 50%,
        var(--primary) 75%,
        #00e5a0 100%
    );
    animation: ceo-ring-spin 6s linear infinite;
    z-index: 0;
}

.ceo-image-ring-glow::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #0a0e1a;
}

@keyframes ceo-ring-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Outer glow pulse */
.ceo-image-ring::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 160, 0.12) 0%, transparent 70%);
    animation: ceo-glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes ceo-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

.ceo-image-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 4px solid #0a0e1a;
}

.ceo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.ceo-image-ring:hover .ceo-image-wrapper img {
    transform: scale(1.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .ceo-quote-section {
        padding: 5rem 0;
    }

    .ceo-headline {
        font-size: 2.5rem;
    }

    .ceo-image-ring {
        width: 260px;
        height: 260px;
    }

    .ceo-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .ceo-image-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .ceo-headline {
        font-size: 2rem;
    }

    .ceo-role-line {
        font-size: 1.05rem;
    }

    .ceo-image-ring {
        width: 220px;
        height: 220px;
    }

    .ceo-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .ceo-quote-block {
        padding-left: 1.25rem;
    }

    .ceo-quote-block blockquote {
        font-size: 1rem;
    }
}


/* ============================================
   WHY CHOOSE US
   ============================================ */

.feature-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-image-wrapper:hover img {
    transform: scale(1.03);
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-us-item:hover {
    background: var(--light);
}

.why-icon {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 2px;
}

.why-us-item h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.why-us-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}


/* ============================================
   ROUTE CARDS
   ============================================ */

.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.route-card-img {
    overflow: hidden;
    height: 180px;
}

.route-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.route-card-body {
    padding: 1.5rem;
}

.route-card-body h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.route-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.route-points i {
    font-size: 0.75rem;
}

.route-card-body p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.route-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.route-meta span {
    font-size: 0.8125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.route-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}


/* ============================================
   TEAM SECTION
   ============================================ */

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-img {
    overflow: hidden;
    height: 320px;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

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

.team-card-body {
    padding: 1.5rem;
}

.team-card-body h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--text-light);
    font-size: 0.875rem;
    transition: var(--transition);
}

.team-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.team-group-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-group-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-group-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 20, 60, 0.85));
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.team-group-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-group-overlay p {
    font-size: 0.9375rem;
    opacity: 0.8;
    margin: 0;
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: #fff;
}

/* — Label with dash — */
.section-label-dash {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 2px;
}

/* — Heading — */
.contact-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 0;
}

.contact-intro {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* — Contact Info Cards — */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #eef1f6;
    transition: all 0.35s ease;
}

.contact-info-card:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.08);
    transform: translateX(6px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 74, 173, 0.08);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.35s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

.contact-info-body h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #1a1a2e;
}

.contact-info-body p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* — Form Card — */
.contact-form-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.75rem;
    border: 1px solid #e8ecf1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease;
}

.contact-form-card:hover {
    box-shadow: 0 12px 50px rgba(0, 74, 173, 0.08);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.75rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: #fff;
    border: 1.5px solid #e2e6ed;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.08);
    background: #fff;
}

.contact-form-card .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.contact-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* — Submit Button — */
.contact-submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #004AAD 0%, #0060d4 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #003a8c 0%, #004AAD 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 74, 173, 0.3);
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* — Validation — */
.contact-form-card .form-control.is-invalid,
.contact-form-card .form-select.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

/* — Responsive — */
@media (max-width: 992px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-left {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .contact-heading {
        font-size: 1.75rem;
    }

    .contact-submit-btn {
        padding: 14px;
        border-radius: 12px;
    }
}


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-brand .brand-sub {
    color: rgba(255, 255, 255, 0.5);
    align-self: flex-end;
    margin-bottom: 1px;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}


/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.125rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 74, 173, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 3rem;
    margin-top: 0;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}


/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth card entrance */
.service-card,
.transport-mode-card,
.about-value-card,
.team-card,
.route-card,
.why-us-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Staggered animations */
.row > [class*="col-"]:nth-child(1) .service-card,
.row > [class*="col-"]:nth-child(1) .transport-mode-card,
.row > [class*="col-"]:nth-child(1) .about-value-card,
.row > [class*="col-"]:nth-child(1) .route-card { animation-delay: 0.1s; }
.row > [class*="col-"]:nth-child(2) .service-card,
.row > [class*="col-"]:nth-child(2) .transport-mode-card,
.row > [class*="col-"]:nth-child(2) .about-value-card,
.row > [class*="col-"]:nth-child(2) .route-card { animation-delay: 0.2s; }
.row > [class*="col-"]:nth-child(3) .service-card,
.row > [class*="col-"]:nth-child(3) .transport-mode-card,
.row > [class*="col-"]:nth-child(3) .about-value-card,
.row > [class*="col-"]:nth-child(3) .route-card { animation-delay: 0.3s; }
.row > [class*="col-"]:nth-child(4) .service-card,
.row > [class*="col-"]:nth-child(4) .transport-mode-card,
.row > [class*="col-"]:nth-child(4) .about-value-card,
.row > [class*="col-"]:nth-child(4) .route-card { animation-delay: 0.4s; }

.why-us-item:nth-child(1) { animation-delay: 0.1s; }
.why-us-item:nth-child(2) { animation-delay: 0.2s; }
.why-us-item:nth-child(3) { animation-delay: 0.3s; }
.why-us-item:nth-child(4) { animation-delay: 0.4s; }


/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-images {
        padding: 1rem;
    }

    .about-img-accent {
        display: none;
    }
}

@media (max-width: 992px) {
    .feature-image-wrapper img {
        height: 350px;
    }

    .team-group-photo img {
        height: 280px;
    }
}


/* ============================================
   CARGO INSURANCE SECTION
   ============================================ */

.cargo-insurance-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.cargo-insurance-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cargo-insurance-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2);
}

.cargo-insurance-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.92) 0%, rgba(0, 40, 100, 0.95) 100%);
}

.cargo-insurance-section .container {
    z-index: 2;
}

.cargo-insurance-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.cargo-insurance-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature rows */
.cargo-insurance-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.cargo-insurance-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cargo-insurance-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    backdrop-filter: blur(4px);
}

.cargo-insurance-feature h6 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cargo-insurance-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cargo-insurance-cta {
    background: #fff;
    color: var(--primary);
    border: none;
    font-weight: 700;
    padding: 0.85rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cargo-insurance-cta:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Trust / Stats Card */
.cargo-insurance-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.cargo-insurance-card-header {
    margin-bottom: 2rem;
}

.cargo-insurance-card-header i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.cargo-insurance-card-header h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0;
}

.cargo-insurance-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cargo-insurance-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cargo-insurance-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.cargo-insurance-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    min-width: 80px;
}

.cargo-insurance-stat-number small {
    font-size: 0.55em;
    font-weight: 600;
    opacity: 0.7;
}

.cargo-insurance-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
}

.cargo-insurance-card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cargo-insurance-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cargo-insurance-trust-badges span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cargo-insurance-trust-badges span i {
    color: #4ade80;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .cargo-insurance-section {
        padding: 5rem 0;
    }

    .cargo-insurance-title {
        font-size: 2.25rem;
    }

    .cargo-insurance-card {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .cargo-insurance-title {
        font-size: 1.875rem;
    }

    .cargo-insurance-card {
        padding: 1.75rem;
    }

    .cargo-insurance-stat-number {
        font-size: 1.75rem;
    }
}
