/* =====================================================
   DESSIA TRADING - Main Stylesheet
   Brand colors: Navy Blue, Green, White
   ===================================================== */

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

:root {
    --navy: #0B2A4A;
    --navy-light: #13406B;
    --green: #1E8449;
    --green-light: #27AE60;
    --yellow: #FFC107;
    --white: #ffffff;
    --grey-50: #F7F9FB;
    --grey-100: #EEF2F6;
    --grey-300: #C8D0D8;
    --grey-700: #4A5560;
    --text: #1B2733;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(11, 42, 74, 0.08);
    --shadow-lg: 0 10px 30px rgba(11, 42, 74, 0.15);
}

/* Preloader to prevent content flashing */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--grey-100);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    scroll-margin-top: 100px;
}

h1,
h2,
h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--navy);
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-weight: 600;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-lead {
    text-align: center;
    color: var(--grey-700);
    font-size: 18px;
    margin-bottom: 56px;
}

p {
    margin-bottom: 16px;
    color: var(--text);
}

/* TODO: Remove this banner when the site is ready to launch. */
.construction-banner {
    background: var(--yellow);
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 101;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ---------- HEADER ---------- */
.site-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.brand {
    text-decoration: none;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-logo {
    height: 48px;
    width: auto;
    margin-bottom: 4px;
}

.brand-name {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 18px;
}

.brand-tag {
    font-size: 11px;
    color: var(--grey-700);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a {
    margin-left: 22px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s;
}

.main-nav a:hover {
    color: var(--green);
}

.btn-primary {
    background: var(--green);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(30, 132, 73, 0.3);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 132, 73, 0.4);
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.25s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.learn-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.learn-more:hover {
    color: var(--green-light);
}

/* ---------- HOME HERO ---------- */
.home-hero {
    position: relative;
    min-height: 75vh;
    background-image: url('/photos/home/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 42, 74, 0.75);
    z-index: 1;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    max-width: 60%;
}

.home-hero-eyebrow {
    color: var(--green-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.home-hero-karibu {
    color: var(--green-light);
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.home-hero h1 {
    color: var(--white);
    font-size: clamp(36px, 4.8vw, 56px);
    margin-bottom: 24px;
}

.home-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 36px;
}

.home-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- HOME QUICK ACTIONS ---------- */
.home-quick-actions {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 60px 0 80px 0;
    background: var(--grey-50);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quick-action-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-4px);
}

.quick-action-card i {
    font-size: 40px;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
}

.quick-action-card h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.quick-action-card p {
    color: var(--grey-700);
    margin-bottom: 16px;
    font-size: 15px;
}

.quick-action-card a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.quick-action-card a:hover {
    color: var(--green-light);
}

/* ---------- HOME STATS ---------- */
.home-stats {
    background: var(--white);
    padding: 80px 0;
}

.home-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.home-stats .stat-item {
    text-align: center;
}

.home-stats .stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 12px;
}

.home-stats .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--grey-700);
}

/* ---------- HOME SERVICES ---------- */
.home-services {
    background: var(--grey-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image-wrapper {
    height: 200px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 28px 24px;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    color: var(--grey-700);
    font-size: 15px;
    margin-bottom: 0;
}

/* ---------- HOME MARKETS ---------- */
.home-markets {
    background: var(--navy);
    color: var(--white);
}

.home-markets h2 {
    color: var(--white);
}

.home-markets .section-lead {
    color: rgba(255, 255, 255, 0.85);
}

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

.market-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.home-markets .market-card img {
    width: 64px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.market-card h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.market-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 15px;
}

/* Flag image styles */
.flag-img {
    width: 48px;
    height: auto;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Markets We Serve flag styles */
.market-flag-img {
    width: 80px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    display: block;
    margin: 0 auto 20px;
}

/* Global Presence and Our Companies flag styles */
.presence-flag-img {
    width: 64px;
    height: 43px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 16px;
    display: block;
}

/* Global Presence card flag styles (keep for backwards compatibility but we'll use presence-flag-img) */
.global-presence-flag {
    width: 64px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Footer flag styles */
.footer-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Cargo service card flag styles */
.cargo-flag {
    width: 56px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ---------- HOME WHY DESSIA ---------- */
.home-why {
    background: var(--white);
}

.home-why h2 {
    text-align: left;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-content {
    padding-right: 32px;
}

.why-list {
    list-style: none;
    margin: 0;
}

.why-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text);
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 20px;
}

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

.why-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 32px;
    font-size: 14px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}

.site-footer h4 {
    color: var(--green-light);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
}

.site-footer p,
.site-footer address {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: normal;
}

.site-footer a {
    color: var(--green-light);
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit {
    opacity: .8;
    margin-top: 4px;
}

/* FOOTER MOBILE STYLES */
@media (max-width: 768px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ---------- REUSABLE STYLES FOR OTHER PAGES ---------- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--grey-300);
}

.card p {
    color: var(--grey-700);
    font-size: 14.5px;
}

/* ---------- ABOUT PAGE STYLES ---------- */
.about-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 42, 74, 0.78);
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 60%;
}

.about-hero h1 {
    color: var(--white);
    font-size: clamp(36px, 4.8vw, 56px);
    margin-bottom: 24px;
}

.about-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 36px;
}

.about-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-who,
.about-vision,
.about-mission,
.about-apart,
.about-forward {
    padding: 60px 0;
}

.about-who {
    background: var(--white);
}

.about-vision {
    background: var(--grey-100);
}

.about-mission {
    background: var(--white);
}

.about-apart {
    background: var(--grey-100);
}

.about-forward {
    background: var(--white);
}

.about-who .container>p:not(.section-lead),
.about-who .container>ul,
.about-vision .container>p:not(.section-lead),
.about-vision .container>ul,
.about-mission .container>p:not(.section-lead),
.about-mission .container>ul,
.about-forward .container>p:not(.section-lead),
.about-forward .container>ul {
    max-width: 920px;
    margin: 0 auto;
}

.about-who .container>p:not(.section-lead):last-child,
.about-who .container>ul:last-child,
.about-vision .container>p:not(.section-lead):last-child,
.about-vision .container>ul:last-child,
.about-mission .container>p:not(.section-lead):last-child,
.about-mission .container>ul:last-child,
.about-forward .container>p:not(.section-lead):last-child,
.about-forward .container>ul:last-child {
    margin-bottom: 0;
}

.about-who .section-lead,
.about-vision .section-lead,
.about-mission .section-lead,
.about-apart .section-lead,
.about-forward .section-lead {
    margin-bottom: 24px;
}

.about-vision,
.about-forward {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.about-mission ul {
    list-style: none;
    margin-left: 0;
}

.about-mission li {
    position: relative;
    padding-left: 28px;
}

.about-mission li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.about-apart .card {
    border-top: 3px solid var(--green);
}

.about-apart .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(11, 42, 74, 0.12);
}

/* ---------- CARGO & LOGISTICS PAGE STYLES ---------- */
.cargo-overview,
.cargo-services,
.cargo-routes,
.cargo-why,
.cargo-cta {
    padding: 60px 0;
}

.cargo-overview {
    background: var(--white);
}

.cargo-services {
    background: var(--grey-100);
}

.cargo-routes {
    background: var(--white);
}

.cargo-why {
    background: var(--grey-100);
}

.cargo-cta {
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.cargo-overview .container>p:not(.section-lead),
.cargo-overview .container>ul,
.cargo-services .container>p:not(.section-lead),
.cargo-services .container>ul,
.cargo-routes .container>p:not(.section-lead),
.cargo-routes .container>ul,
.cargo-why .container>p:not(.section-lead),
.cargo-why .container>ul,
.cargo-cta .container>p:not(.section-lead),
.cargo-cta .container>ul {
    max-width: 920px;
    margin: 0 auto;
}

.cargo-overview .container>p:not(.section-lead):last-child,
.cargo-overview .container>ul:last-child,
.cargo-services .container>p:not(.section-lead):last-child,
.cargo-services .container>ul:last-child,
.cargo-routes .container>p:not(.section-lead):last-child,
.cargo-routes .container>ul:last-child,
.cargo-why .container>p:not(.section-lead):last-child,
.cargo-why .container>ul:last-child,
.cargo-cta .container>p:not(.section-lead):last-child,
.cargo-cta .container>ul:last-child {
    margin-bottom: 0;
}

.cargo-overview .section-lead,
.cargo-services .section-lead,
.cargo-routes .section-lead,
.cargo-why .section-lead,
.cargo-cta .section-lead {
    margin-bottom: 24px;
}

.cargo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cargo-routes ul {
    list-style: none;
    margin-left: 0;
}

.cargo-routes li {
    position: relative;
    padding-left: 28px;
}

.cargo-routes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.cargo-cta h2 {
    color: var(--white);
}

.cargo-cta .section-lead {
    color: var(--white);
    margin-bottom: 32px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {

    .services-grid,
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .construction-banner {
        font-size: 12px;
        padding: 8px 16px;
    }

    .site-header {
        top: 0;
    }

    .home-global-presence-grid,
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .nav-wrap {
        flex-direction: column;
        gap: 14px;
        padding: 14px 20px;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        margin: 6px 10px;
        font-size: 14px;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .home-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .home-stats .stat-number {
        font-size: 48px;
    }

    .services-grid,
    .markets-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-content {
        padding-right: 0;
    }

    .why-grid .why-image-wrapper {
        order: -1;
    }

    .home-why h2 {
        text-align: center;
    }

    section {
        padding: 56px 0;
    }

    .about-who,
    .about-vision,
    .about-mission,
    .about-apart,
    .about-forward {
        padding: 40px 0;
    }

    .about-vision,
    .about-forward {
        min-height: auto;
        display: block;
    }

    .cargo-overview,
    .cargo-services,
    .cargo-routes,
    .cargo-why,
    .cargo-cta {
        padding: 40px 0;
    }
}

/* ---------- CARGO & LOGISTICS PAGE STYLES ---------- */
.cargo-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.cargo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 42, 74, 0.78);
    z-index: 1;
}

.cargo-hero-inner {
    position: relative;
    z-index: 2;
}

.cargo-hero-content {
    max-width: 60%;
}

.cargo-hero-eyebrow {
    color: var(--green-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cargo-hero h1 {
    color: var(--white);
    font-size: clamp(36px, 4.8vw, 56px);
    margin-bottom: 24px;
}

.cargo-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 36px;
}

.cargo-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cargo-overview {
    padding: 80px 0;
}

.cargo-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cargo-overview-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.cargo-overview-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.cargo-overview-content p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 16px;
}

.cargo-services {
    padding: 80px 0;
    background: var(--grey-50);
}

.cargo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cargo-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border-left: 3px solid var(--green);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cargo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cargo-services .card i,
.cargo-service-card i {
    font-size: 32px;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
}

.cargo-service-card h3 {
    margin-bottom: 10px;
}

.cargo-service-card p {
    color: var(--grey-700);
    font-size: 15px;
    margin-bottom: 16px;
}

.cargo-routes {
    padding: 80px 0;
    background: var(--white);
}

.cargo-routes-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cargo-route-pill {
    padding: 12px 24px;
    border: 1px solid var(--grey-300);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.2s ease;
}

.cargo-route-pill:hover {
    border-color: var(--green);
    background: var(--grey-50);
}

.cargo-why {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.cargo-why h2 {
    color: var(--white);
}

.cargo-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cargo-why-item {
    text-align: center;
}

.cargo-why-icon {
    font-size: 36px;
    color: var(--green);
    margin-bottom: 12px;
}

.cargo-why-item h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.cargo-why-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.cargo-cta {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.cargo-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 42, 74, 0.85);
    z-index: 1;
}

.cargo-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cargo-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cargo-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

/* CARGO & LOGISTICS MOBILE STYLES */
@media (max-width: 768px) {
    .about-hero-content,
    .cargo-hero-content {
        max-width: 100%;
    }

    .about-hero-cta,
    .cargo-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cargo-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cargo-overview-grid .cargo-overview-image {
        order: -1;
    }

    .cargo-overview-content h2 {
        text-align: center;
    }

    .cargo-services-grid {
        grid-template-columns: 1fr;
    }

    .cargo-why-grid {
        grid-template-columns: 1fr;
    }

    .cargo-routes-flex {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .cargo-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}