
:root {
    --primary: #f37b20;
    --primary-dk: #d4640d;
    --primary-lt: rgba(243, 123, 32, 0.1);
    --navy: #202c5d;
    --navy-dk: #171f43;
    --blue: #292561;
    --white: #ffffff;
    --light: #f4f6fb;
    --muted: #8892a4;
    --text: #1c2340;
    --border: #e2e8f4;

    --font: "Exo", sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 40px rgba(32, 44, 93, 0.12);
    --shadow-lg: 0 20px 70px rgba(32, 44, 93, 0.18);
    --tx: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════
       BASE
    ═══════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: var(--font);
        color: var(--text);
        background: var(--white);
        overflow-x: hidden;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font);
        font-weight: 700;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    img {
        max-width: 100%;
    }

/* ═══════════════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════════════ */
    .text-orange {
        color: var(--primary) !important;
    }
    .text-navy {
        color: var(--navy) !important;
    }
    .bg-navy {
        background: var(--navy) !important;
    }
    .bg-navy-dk {
        background: var(--navy-dk) !important;
    }

    .sec-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 1rem;
    }
    .sec-label::before {
        content: "";
        display: block;
        width: 24px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
    }

    .sec-heading {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        line-height: 1.08;
        color: var(--navy);
    }
    .sec-heading.light {
        color: var(--white);
    }

/* Scroll reveal */
[data-r] {
    opacity: 0;
    transform: translateY(36px);
    transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-r="left"] {
    transform: translateX(-36px);
}
[data-r="right"] {
    transform: translateX(36px);
}
[data-r="scale"] {
    transform: scale(0.93);
}
[data-r].on {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════════ */
    .btn-v {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.78rem 1.8rem;
        border-radius: 6px;
        font-family: var(--font);
        font-weight: 800;
        font-size: 0.9rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: var(--tx);
        cursor: pointer;
        border: 2px solid transparent;
    }
    .btn-v-primary {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }
    .btn-v-primary:hover {
        background: var(--primary-dk);
        border-color: var(--primary-dk);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(243, 123, 32, 0.38);
    }
    .btn-v-outline {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
    }
    .btn-v-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
        transform: translateY(-2px);
    }
    .btn-v-outline-dk {
        background: transparent;
        color: var(--navy);
        border-color: var(--navy);
    }
    .btn-v-outline-dk:hover {
        background: var(--navy);
        color: #fff;
        transform: translateY(-2px);
    }

/* ═══════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════ */
    #nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1060;
        padding: 1.1rem 0;
        transition:
        background var(--tx),
        box-shadow var(--tx),
        padding var(--tx);
    }
    #nav.scrolled {
        background: rgba(23, 31, 67, 0.97);
        backdrop-filter: blur(18px);
        box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
        padding: 0.55rem 0;
    }

    .nav-logo {
        height: 36px;
        display: block;
        transition: var(--tx);
    }
    #nav.scrolled .nav-logo {
        height: 30px;
    }

    .nav-link-v {
        font-family: var(--font);
        font-weight: 700;
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.82) !important;
        padding: 1.4rem 0.85rem !important;
        transition: color var(--tx);
        position: relative;
    }
    .nav-link-v::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0.85rem;
        right: 0.85rem;
        height: 2px;
        background: var(--primary);
        transform: scaleX(0);
        transition: transform var(--tx);
    }
    .nav-link-v:hover,
    .nav-link-v.active {
        color: var(--primary) !important;
    }
    .nav-link-v:hover::after,
    .nav-link-v.active::after {
        transform: scaleX(1);
    }

/* Language */
.lang-sw {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    padding: 5px 8px;
}
.lang-btn {
    color: rgba(255, 255, 255, 0.55);
    padding: 6px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition: var(--tx);
}
.lang-btn.active,
.lang-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ── MEGA MENU ── */
.mega-wrap {
    position: relative;
}
.mega-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}
.mega-trigger .ti-chevron-down {
    font-size: 0.7rem;
    transition: transform var(--tx);
}
.mega-wrap:hover .mega-trigger .ti-chevron-down {
    transform: rotate(180deg);
}

.mega-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 760px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 70px rgba(23, 31, 67, 0.2);
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition:
    opacity 0.25s ease,
    transform 0.25s ease;
    border-top: 4px solid var(--primary);
    top: 64px;
}
.mega-wrap:hover .mega-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light);
    margin-bottom: 1rem;
}
.mega-col-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

.mega-item-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    transition: background var(--tx);
    margin-bottom: 2px;
}
.mega-item-link:hover {
    background: var(--light);
}
.mega-item-link .mega-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--primary-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 1px;
    transition: background var(--tx);
}
.mega-item-link:hover .mega-icon {
    background: var(--primary);
    color: #fff;
}
.mega-item-link strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
}
.mega-item-link span {
    display: block;
    font-size: 0.73rem;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 1px;
}

.mega-divider {
    width: 1px;
    background: var(--light);
    align-self: stretch;
    margin: 0 1rem;
}

/* Mobile nav */
.nav-toggle {
    border: none;
    background: transparent;
    padding: 4px 6px;
    cursor: pointer;
}
.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--tx);
    margin: 5px 0;
}
#mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
#mobileMenu a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.85rem;
}


/* Alt Menü Paneli Genel Yapısı */
.sub-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--tx);
    z-index: 1000;
    transition: opacity 0.25s ease, transform 0.25s ease;
    border-top: 4px solid var(--primary);
    top: 60px;
}

/* Hover durumunda göster */
.mega-wrap:hover .sub-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Alt Menü Link Stilleri */
.sub-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1.5rem;
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.sub-item-link i {
    font-size: 1.1rem;
    color: var(--muted);
    transition: color 0.2s ease;
}

.sub-item-link:hover {
    background-color: var(--light);
    color: var(--primary);
    padding-left: 1.75rem; /* Hafif kayma efekti */
}

.sub-item-link:hover i {
    color: var(--primary);
}

/* Ayırıcı Çizgi */
.sub-divider {
    height: 1px;
    background-color: var(--border);
    margin: 0.5rem 1.5rem;
}

/* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    #hero {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 680px;
        overflow: hidden;
        background: var(--navy-dk);
    }

/* Vimeo background */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;

    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000; /* Görsel yüklenene kadar alternatif renk */
}
.hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    transition: opacity 0.5s ease-in;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        108deg,
        rgba(23, 31, 67, 0.9) 0%,
        rgba(23, 31, 67, 0.65) 50%,
        rgba(41, 37, 97, 0.3) 100%
    );
}

/* Slide text areas */
.hero-slides-content {
    position: absolute;
    inset: 0;
    z-index: 10;
}
.hero-slide-ct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide-ct.active {
    opacity: 1;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-title .accent {
    color: var(--primary);
}

.hero-motto {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
}

.hero-desc {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 500px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}
.h-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.h-stat-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Slide dots */
.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--tx);
}
.hero-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
}

/* Floating mouse icon */
.mouse-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floatMouse 2.2s ease-in-out infinite;
    cursor: pointer;
}
.mouse-body {
    width: 26px;
    height: 42px;
    border: 2.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}
.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: wheelScroll 1.6s ease-in-out infinite;
}
.mouse-lbl {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes floatMouse {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}
@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

/* ═══════════════════════════════════════════════
       TICKER
    ═══════════════════════════════════════════════ */
    .ticker-bar {
        background: var(--primary);
        padding: 2.6rem 0;
        overflow: hidden;
    }
    .ticker-track {
        display: flex;
        animation: ticker 32s linear infinite;
        white-space: nowrap;
    }
    .ticker-item {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 2.5rem;
        font-size: 1.75rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #fff;
    }
    .ticker-sep {
        opacity: 0.4;
        font-size: 0.6rem;
    }
    @keyframes ticker {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

/* ═══════════════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════════════ */
    .services-sec {
        padding: 7rem 0;
        background: var(--light);
    }

    .svc-card {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 2.2rem 1.8rem;
        height: 100%;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
        transition:
        transform var(--tx),
        box-shadow var(--tx);
        border-bottom: 4px solid transparent;
    }
    .svc-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--tx);
    }
    .svc-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }
    .svc-card:hover::before {
        transform: scaleX(1);
    }

    .svc-icon {
        width: 62px;
        height: 62px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: var(--primary);
        margin-bottom: 1.4rem;
        transition: transform var(--tx);
    }
    .svc-card:hover .svc-icon {
        transform: rotate(-8deg) scale(1.1);
    }
    .svc-card h4 {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 0.6rem;
    }
    .svc-card p {
        font-size: 0.85rem;
        color: var(--muted);
        line-height: 1.75;
    }
    .svc-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 1.2rem;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--primary);
        transition: gap var(--tx);
    }
    .svc-card:hover .svc-more {
        gap: 12px;
    }

/* ═══════════════════════════════════════════════
       COUNTER BAND
    ═══════════════════════════════════════════════ */
    .counter-sec {
        background: linear-gradient(130deg, var(--navy) 0%, var(--blue) 100%);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    .counter-sec::before {
        content: "";
        position: absolute;
        inset: 0;
        background: 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' fill-rule='evenodd'%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");
    }
    .ctr-num {
        font-size: 3.4rem;
        font-weight: 900;
        color: var(--primary);
        line-height: 1;
    }
    .ctr-sfx {
        font-size: 1.8rem;
        font-weight: 900;
        color: var(--primary);
    }
    .ctr-lbl {
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 0.5rem;
    }
    .ctr-divider {
        width: 1px;
        background: rgba(255, 255, 255, 0.14);
        align-self: stretch;
    }

/* ═══════════════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════════════ */
    .about-sec {
        padding: 7rem 0;
    }
    .about-img-wrap {
        position: relative;
        height: 480px;
    }
    .img-main {
        position: absolute;
        top: 0;
        left: 0;
        width: 80%;
        height: 86%;
        border-radius: var(--radius-lg);
        object-fit: cover;
        box-shadow: var(--shadow-lg);
    }
    .img-sub {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 52%;
        height: 52%;
        border-radius: var(--radius-lg);
        object-fit: cover;
        box-shadow: var(--shadow-lg);
        border: 5px solid #fff;
    }
    .exp-badge {
        position: absolute;
        bottom: 28%;
        left: -18px;
        background: var(--primary);
        color: #fff;
        border-radius: 14px;
        padding: 1.2rem 1.5rem;
        box-shadow: 0 8px 28px rgba(243, 123, 32, 0.38);
        text-align: center;
        z-index: 5;
    }
    .exp-badge-num {
        font-size: 2.4rem;
        font-weight: 900;
        line-height: 1;
    }
    .exp-badge-lbl {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.85;
    }

    .feat-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.4rem;
    }
    .feat-icon {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        background: var(--primary-lt);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
    }
    .feat-item h6 {
        font-size: 0.92rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 0.25rem;
    }
    .feat-item p {
        font-size: 0.82rem;
        color: var(--muted);
        margin: 0;
        line-height: 1.65;
    }

/* ═══════════════════════════════════════════════
       FLEET / TRANSPORT MODES
    ═══════════════════════════════════════════════ */
    .fleet-sec {
        padding: 7rem 0;
    }
    .fleet-tabs {
        display: flex;
        gap: 6px;
        background: var(--light);
        padding: 6px;
        border-radius: 50px;
        width: fit-content;
        margin: 0 auto 3rem;
        flex-wrap: wrap;
    }
    .ftab {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 0.55rem 1.3rem;
        border-radius: 40px;
        border: none;
        background: transparent;
        font-family: var(--font);
        font-weight: 800;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--muted);
        cursor: pointer;
        transition: var(--tx);
    }
    .ftab.active,
    .ftab:hover {
        background: var(--navy);
        color: #fff;
        box-shadow: 0 4px 18px rgba(32, 44, 93, 0.22);
    }
    .ftab.active i,
    .ftab:hover i {
        color: var(--primary);
    }

    .fcard {
        background: var(--navy);
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: relative;
        height: 340px;
    }
    .fcard-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.6s ease;
    }
    .fcard:hover .fcard-bg {
        transform: scale(1.06);
    }
    .fcard-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(23, 31, 67, 0.96) 0%, transparent 60%);
    }
    .fcard-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.8rem;
    }
    .fcard-body h5 {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 0.35rem;
    }
    .fcard-body p {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.6;
    }
    .ftag {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 4px;
        margin-bottom: 0.6rem;
    }

/* ═══════════════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════════════ */
    .process-sec {
        padding: 7rem 0;
        background: var(--light);
    }
    .p-step {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 2rem;
        height: 100%;
        box-shadow: var(--shadow);
        position: relative;
        transition: transform var(--tx);
    }
    .p-step:hover {
        transform: translateY(-6px);
    }
    .p-num {
        font-size: 5rem;
        font-weight: 900;
        color: rgba(32, 44, 93, 0.06);
        line-height: 1;
        position: absolute;
        top: 0.5rem;
        right: 1.2rem;
    }
    .p-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary) 0%, #ff9a4a 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    .p-step h5 {
        font-size: 1.05rem;
        color: var(--navy);
        font-weight: 800;
        margin-bottom: 0.5rem;
    }
    .p-step p {
        font-size: 0.83rem;
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
    }

/* ═══════════════════════════════════════════════
       GLOBAL OFFICES
    ═══════════════════════════════════════════════ */
    .offices-sec {
        padding: 7rem 0;
        background: linear-gradient(130deg, var(--navy-dk) 0%, var(--blue) 100%);
        position: relative;
        overflow: hidden;
    }
    .offices-sec::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E")
        center/100px;
    }

/* World map SVG bg */
.offices-worldmap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg' opacity='.04'%3E%3Cellipse cx='400' cy='200' rx='380' ry='180' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cellipse cx='400' cy='200' rx='280' ry='180' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cellipse cx='400' cy='200' rx='180' ry='180' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cline x1='20' y1='200' x2='780' y2='200' stroke='%23fff' stroke-width='1'/%3E%3Cline x1='400' y1='20' x2='400' y2='380' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E")
    center/cover no-repeat;
}

.office-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--tx);
    position: relative;
    z-index: 1;
}
.office-card:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-6px);
}
.office-flag {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.office-country {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.4rem;
}
.office-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.7rem;
}
.office-detail i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.office-detail p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}
.office-hq {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════
       DIGITAL TRANSFORMATION
    ═══════════════════════════════════════════════ */
    .digital-sec {
        padding: 7rem 0;
        background: var(--white);
    }
    .digital-feature {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.8rem;
    }
    .digital-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.3rem;
    }
    .digital-feature h6 {
        font-size: 0.95rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 0.25rem;
    }
    .digital-feature p {
        font-size: 0.82rem;
        color: var(--muted);
        margin: 0;
        line-height: 1.65;
    }

    .app-dl-wrap {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .app-dl-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--navy);
        color: #fff;
        border-radius: 12px;
        padding: 0.85rem 1.4rem;
        transition: var(--tx);
        border: 2px solid transparent;
    }
    .app-dl-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(243, 123, 32, 0.3);
    }
    .app-dl-btn i {
        font-size: 1.8rem;
    }
    .app-dl-btn span {
        font-size: 0.65rem;
        opacity: 0.7;
        display: block;
    }
    .app-dl-btn strong {
        font-size: 0.92rem;
        font-weight: 800;
        display: block;
    }

    .mockup-container {
        position: relative;
        text-align: center;
        padding: 2rem 0;
    }
    .mockup-phone {
        width: 220px;
        display: inline-block;
        background: var(--navy-dk);
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 24px 70px rgba(23, 31, 67, 0.35);
        border: 3px solid rgba(255, 255, 255, 0.08);
        position: relative;
        z-index: 2;
    }
    .mockup-phone-inner {
        background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
        padding: 1.5rem 1rem;
    }
    .mockup-pill {
        width: 50px;
        height: 6px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 3px;
        margin: 0 auto 0.8rem;
    }
    .mockup-card {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        padding: 0.7rem;
        margin-bottom: 0.6rem;
        text-align: left;
    }
    .mockup-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.4rem;
    }
    .mockup-lbl {
        font-size: 0.55rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
    .mockup-val {
        font-size: 0.85rem;
        color: #fff;
        font-weight: 800;
    }
    .mockup-bar-bg {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    .mockup-bar {
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
    }
    .mockup-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(243, 123, 32, 0.2) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        z-index: 1;
        pointer-events: none;
    }

/* ═══════════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════════ */
    .testi-sec {
        padding: 7rem 0;
        background: linear-gradient(130deg, var(--navy-dk) 0%, var(--blue) 100%);
    }
    .testi-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: 2rem;
        height: 100%;
        transition: var(--tx);
    }
    .testi-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-4px);
    }
    .testi-stars {
        color: var(--primary);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .testi-txt {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.88rem;
        line-height: 1.85;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .testi-au {
        display: flex;
        align-items: center;
        gap: 0.9rem;
    }
    .testi-av {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 0.95rem;
        color: #fff;
        flex-shrink: 0;
    }
    .testi-name {
        font-weight: 700;
        color: #fff;
        font-size: 0.88rem;
    }
    .testi-co {
        font-size: 0.73rem;
        color: rgba(255, 255, 255, 0.42);
    }

    .partner-badge {
        font-family: var(--font);
        font-weight: 900;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.22);
        letter-spacing: 0.04em;
    }

/* ═══════════════════════════════════════════════
       CONTACT / QUOTE
    ═══════════════════════════════════════════════ */
    .contact-sec {
        padding: 7rem 0;
    }
    .fgroup label {
        display: block;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: 0.4rem;
    }
    .finput {
        width: 100%;
        padding: 0.85rem 1.1rem;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-family: var(--font);
        font-size: 0.88rem;
        color: var(--text);
        background: #fff;
        outline: none;
        transition:
        border-color var(--tx),
        box-shadow var(--tx);
    }
    .finput:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(243, 123, 32, 0.12);
    }
    .finput::placeholder {
        color: #b0bad0;
    }

    .cinfo {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.7rem;
    }
    .cinfo-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
    }
    .cinfo h6 {
        font-size: 0.68rem;
        color: var(--muted);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }
    .cinfo p {
        margin: 0;
        color: var(--text);
        font-size: 0.9rem;
        font-weight: 600;
    }
    .social-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        font-size: 1.1rem;
        transition: var(--tx);
    }
    .social-icon:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-3px);
    }
    .map-ph {
        border-radius: var(--radius-lg);
        height: 260px;
        background: var(--light);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px dashed var(--border);
        color: var(--muted);
        font-size: 0.82rem;
        gap: 8px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-top: 1.5rem;
    }
    .map-ph i {
        font-size: 2rem;
        color: var(--primary);
    }

/* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    footer {
        background: var(--navy-dk);
        color: rgba(255, 255, 255, 0.55);
    }
    .footer-top {
        padding: 5rem 0 3rem;
    }
    .footer-logo {
        height: 38px;
        display: block;
        margin-bottom: 1.2rem;
    }
    .footer-desc {
        font-size: 0.83rem;
        line-height: 1.85;
    }
    .footer-social {
        display: flex;
        gap: 8px;
        margin-top: 1.5rem;
    }
    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        transition: var(--tx);
    }
    .footer-social a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-3px);
    }
    .footer-h {
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 1.4rem;
    }
    .footer-links {
        list-style: none;
        padding: 0;
    }
    .footer-links li {
        margin-bottom: 0.55rem;
    }
    .footer-links a {
        font-size: 0.83rem;
        color: rgba(255, 255, 255, 0.48);
        transition: color var(--tx);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .footer-links a:hover {
        color: var(--primary);
    }

/* Footer app store */
.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    color: #fff;
    transition: var(--tx);
    margin-bottom: 0.6rem;
}
.footer-app-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.footer-app-btn i {
    font-size: 1.5rem;
}
.footer-app-btn span {
    font-size: 0.6rem;
    opacity: 0.6;
    display: block;
}
.footer-app-btn strong {
    font-size: 0.82rem;
    display: block;
}

.newsletter-wrap {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.newsletter-wrap input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--font);
    font-size: 0.83rem;
}
.newsletter-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.newsletter-wrap button {
    background: var(--primary);
    border: none;
    padding: 0.75rem 1.2rem;
    color: #fff;
    font-family: var(--font);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--tx);
}
.newsletter-wrap button:hover {
    background: var(--primary-dk);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 0;
    font-size: 0.78rem;
}
.cert-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════
       BACK TO TOP
    ═══════════════════════════════════════════════ */
    #btt {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 46px;
        height: 46px;
        background: var(--primary);
        color: #fff;
        border-radius: 12px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        z-index: 999;
        opacity: 0;
        transform: translateY(20px);
        transition: var(--tx);
        box-shadow: 0 6px 22px rgba(243, 123, 32, 0.38);
    }
    #btt.vis {
        opacity: 1;
        transform: translateY(0);
    }
    #btt:hover {
        transform: translateY(-4px) !important;
    }

/* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 991.98px) {
        .hero-title {
            font-size: clamp(2.4rem, 7vw, 3.5rem);
        }
        .hero-stats {
            gap: 1.2rem;
        }
        .about-img-wrap {
            height: 340px;
            margin-bottom: 2rem;
        }
        .exp-badge {
            left: 0;
        }
        .ctr-divider {
            display: none;
        }
        .mega-panel {
            display: none !important;
        }
    }
    @media (max-width: 767.98px) {
        .fleet-tabs {
            justify-content: center;
        }
        .mouse-scroll {
            display: none;
        }
        .offices-sec {
            padding: 4rem 0;
        }
    }



/* ═══════════════════════════════════════════════
       revizeler
    ═══════════════════════════════════════════════ */
    a.voltim-logo {

    }

    a.voltim-logo img{
        height: 54px;
    }