/* =========================================================
   VIP KARGO KURYE - UÇAK KARGO
   TEK CSS DOSYASI
   FILE: ucak-kargo.css
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --navy: #071a33;
    --navy-light: #0c2d57;
    --navy-soft: #123d70;

    --blue: #1677ff;
    --blue-dark: #075fd6;
    --blue-light: #eaf3ff;

    --orange: #ff9d2e;
    --orange-dark: #eb8514;

    --green: #25d366;

    --white: #ffffff;

    --text: #26364a;
    --muted: #66758a;

    --border: #e4e9f0;
    --background: #f6f8fb;

    --container: 1240px;

    --shadow-sm:
        0 10px 30px rgba(7, 26, 51, 0.06);

    --shadow-md:
        0 20px 60px rgba(7, 26, 51, 0.12);

    --shadow-lg:
        0 35px 100px rgba(7, 26, 51, 0.20);

    --radius: 20px;

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    padding: 0;

    color: var(--text);

    background: var(--white);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;

}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
}


button,
input,
textarea {
    font: inherit;
}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


.section-space {
    padding: 115px 0;
}


h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


h1,
h2,
h3 {

    font-family:
        "Manrope",
        sans-serif;

}


.section-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.14em;

}


.section-eyebrow.light {
    color: #8bc0ff;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    background: #041326;

    color: rgba(255, 255, 255, 0.68);

    font-size: 12px;

}


.topbar-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 42px;

}


.topbar-left,
.topbar-right {

    display: flex;

    align-items: center;

    gap: 20px;

}


.top-item {

    display: flex;

    align-items: center;

    gap: 7px;

}


.top-item i {

    color: #6fb2ff;

    font-style: normal;

}


.top-divider {

    width: 1px;

    height: 15px;

    background: rgba(255, 255, 255, 0.15);

}


.topbar-right a {

    color: rgba(255, 255, 255, 0.75);

    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;

}


.topbar-right a:hover {
    color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid rgba(7, 26, 51, 0.07);

    backdrop-filter: blur(14px);

}


.header-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 88px;

    gap: 30px;

}


.logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--navy);

    text-decoration: none;

    white-space: nowrap;

}


.logo-icon {

    display: grid;

    place-items: center;

    width: 48px;

    height: 48px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--navy-light)
        );

    color: var(--white);

    font-size: 22px;

    box-shadow:
        0 10px 25px rgba(22, 119, 255, 0.25);

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {

    font-size: 21px;

    font-weight: 900;

    letter-spacing: 0.03em;

}


.logo-text small {

    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.16em;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.desktop-nav > a,
.nav-dropdown-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 33px 0;

    border: 0;

    background: transparent;

    color: #334155;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: 0.2s ease;

}


.desktop-nav > a:hover,
.nav-dropdown-button:hover {

    color: var(--blue);

}


.nav-dropdown {
    position: relative;
}


.nav-dropdown-button span {

    font-size: 12px;

    transition: 0.2s ease;

}


.nav-dropdown:hover
.nav-dropdown-button span {
    transform: rotate(180deg);
}


/* =========================================================
   MEGA MENU
========================================================= */

.mega-menu {

    position: absolute;

    top: calc(100% - 5px);

    left: 50%;

    display: grid;

    grid-template-columns: repeat(2, 260px);

    gap: 8px;

    width: 550px;

    padding: 15px;

    transform:
        translateX(-50%)
        translateY(15px);

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: var(--white);

    box-shadow: var(--shadow-lg);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: 0.25s ease;

}


.nav-dropdown:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);

}


.mega-card {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    border-radius: 13px;

    text-decoration: none;

    transition: 0.2s ease;

}


.mega-card:hover {

    background: #f4f8fd;

}


.active-mega {

    background: var(--blue-light);

}


.mega-icon {

    display: grid;

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    place-items: center;

    border-radius: 11px;

    background: var(--navy);

    color: var(--white);

}


.active-mega .mega-icon {
    background: var(--blue);
}


.mega-card strong {

    display: block;

    color: var(--navy);

    font-size: 13px;

}


.mega-card small {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.4;

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


.header-whatsapp {

    display: flex;

    flex-direction: column;

    padding: 8px 13px;

    border-left:
        1px solid var(--border);

    color: var(--muted);

    font-size: 10px;

    text-decoration: none;

}


.header-whatsapp strong {

    margin-top: 2px;

    color: var(--green);

    font-size: 12px;

}


.header-call {

    display: flex;

    align-items: center;

    gap: 9px;

    text-decoration: none;

}


.call-icon {

    display: grid;

    place-items: center;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

}


.header-call small {

    display: block;

    color: var(--muted);

    font-size: 9px;

    font-weight: 700;

}


.header-call strong {

    display: block;

    margin-top: 3px;

    color: var(--navy);

    font-size: 13px;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {

    display: none;

    width: 45px;

    height: 45px;

    padding: 0;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    cursor: pointer;

}


.mobile-menu-button span {

    display: block;

    width: 20px;

    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    transition: 0.2s ease;

}


.mobile-menu {

    display: none;

}


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

.hero-section {

    position: relative;

    overflow: hidden;

    min-height: 720px;

    background:
        linear-gradient(
            135deg,
            #05172e,
            #092b56 60%,
            #0b3e75
        );

}


.hero-grid-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

}


.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(20px);

}


.hero-glow-one {

    top: -250px;

    right: -150px;

    width: 700px;

    height: 700px;

    background:
        rgba(22, 119, 255, 0.15);

}


.hero-glow-two {

    bottom: -300px;

    left: 20%;

    width: 600px;

    height: 600px;

    background:
        rgba(0, 162, 255, 0.08);

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;

    min-height: 650px;

}


.hero-content {
    padding: 90px 0;
}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.06);

    color: #a9d3ff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.1em;

}


.badge-pulse {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #4db0ff;

    box-shadow:
        0 0 0 6px
        rgba(77, 176, 255, 0.1);

}


.hero-content h1 {

    max-width: 750px;

    margin: 26px 0 0;

    color: var(--white);

    font-size:
        clamp(
            45px,
            5vw,
            74px
        );

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -0.055em;

}


.hero-content h1 span {

    display: block;

    color: #73b9ff;

}


.hero-description {

    max-width: 650px;

    margin: 28px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    font-size: 16px;

    line-height: 1.9;

}


.hero-description strong {
    color: var(--white);
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}


.hero-primary {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 22px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ffb14d
        );

    color: #142033;

    text-decoration: none;

    box-shadow:
        0 15px 35px
        rgba(255, 157, 46, 0.18);

    transition: 0.25s ease;

}


.hero-primary:hover {

    transform:
        translateY(-3px);

}


.button-icon {

    display: grid;

    width: 38px;

    height: 38px;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.35);

}


.hero-primary small {

    display: block;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.1em;

}


.hero-primary strong {

    display: block;

    margin-top: 3px;

    font-size: 16px;

}


.hero-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 0 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 13px;

    color: var(--white);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;

}


.hero-whatsapp:hover {

    background:
        rgba(
            255,
            255,
            255,
            0.07
        );

}


.hero-whatsapp i {

    color: #7dc0ff;

    font-size: 20px;

    font-style: normal;

}


.hero-trust {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 55px;

}


.trust-item {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    color: #79baff;

    font-size: 12px;

    letter-spacing: 0.08em;

}


.trust-item span {

    margin-top: 6px;

    color:
        rgba(
            255,
            255,
            255,
            0.58
        );

    font-size: 11px;

}


.trust-line {

    width: 1px;

    height: 32px;

    background:
        rgba(
            255,
            255,
            255,
            0.15
        );

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 540px;

}


.radar-ring {

    position: absolute;

    top: 50%;

    left: 50%;

    border:
        1px solid
        rgba(
            126,
            190,
            255,
            0.15
        );

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

}


.ring-one {

    width: 520px;

    height: 520px;

}


.ring-two {

    width: 390px;

    height: 390px;

}


.ring-three {

    width: 270px;

    height: 270px;

}


.aircraft-card {

    position: absolute;

    top: 50%;

    left: 50%;

    width: min(100%, 410px);

    padding: 25px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.16
        );

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 70, 130, 0.8),
            rgba(6, 26, 53, 0.9)
        );

    box-shadow:
        0 35px 100px
        rgba(
            0,
            0,
            0,
            0.35
        );

    backdrop-filter: blur(15px);

}


.aircraft-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #8dc7ff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.12em;

}


.status {

    padding: 6px 8px;

    border-radius: 6px;

    background:
        rgba(
            77,
            176,
            255,
            0.12
        );

    color: #8cc8ff;

    font-size: 8px;

}


.aircraft-plane {

    padding: 40px 0 35px;

    transform:
        rotate(-25deg);

    color: var(--white);

    font-size: 135px;

    text-align: center;

    text-shadow:
        0 25px 45px
        rgba(
            0,
            0,
            0,
            0.25
        );

}


.flight-route {

    display: flex;

    align-items: center;

}


.route-line {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(123, 190, 255, 0.3),
            #79bcff,
            rgba(123, 190, 255, 0.3)
        );

}


.route-point {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #8bc5ff;

    box-shadow:
        0 0 0 6px
        rgba(
            139,
            197,
            255,
            0.08
        );

}


.route-plane {

    margin: 0 8px;

    color: var(--orange);

    font-size: 14px;

    transform:
        rotate(90deg);

}


.flight-info {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-top: 28px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

}


.flight-info small {

    display: block;

    color:
        rgba(
            255,
            255,
            255,
            0.42
        );

    font-size: 8px;

    font-weight: 800;

}


.flight-info strong {

    display: block;

    margin-top: 7px;

    color: var(--white);

    font-size: 12px;

}


.online-status {
    color: #6dd8ff !important;
}


/* FLOATING CARDS */

.hero-floating-card {

    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius: 14px;

    background:
        rgba(
            5,
            24,
            47,
            0.85
        );

    box-shadow:
        var(--shadow-md);

    backdrop-filter: blur(12px);

}


.float-one {

    top: 50px;

    left: -20px;

}


.float-two {

    right: -10px;

    bottom: 55px;

}


.float-icon {

    display: grid;

    width: 38px;

    height: 38px;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(
            22,
            119,
            255,
            0.16
        );

    color: #82c0ff;

}


.float-icon.success {

    background:
        rgba(
            37,
            211,
            102,
            0.12
        );

    color: #61e49a;

}


.hero-floating-card strong {

    display: block;

    color: var(--white);

    font-size: 11px;

}


.hero-floating-card small {

    display: block;

    margin-top: 4px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 9px;

}


/* HERO BOTTOM */

.hero-bottom-bar {

    position: relative;

    z-index: 2;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

}


.hero-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 65px;

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;

}


/* =========================================================
   INTRO
========================================================= */

.intro-grid {

    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    gap: 100px;

    align-items: start;

}


.intro-title h2 {

    margin-bottom: 0;

    color: var(--navy);

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    line-height: 1.13;

    letter-spacing: -0.045em;

}


.intro-title h2 span {

    display: block;

    color: var(--blue);

}


.intro-text {

    padding-top: 12px;

}


.intro-text p {

    color: var(--muted);

    font-size: 15px;

    line-height: 1.95;

}


.intro-text .lead-text {

    color: var(--navy);

    font-size: 19px;

    line-height: 1.75;

}


.intro-link-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 35px;

    padding: 20px;

    border-left:
        4px solid var(--blue);

    background: var(--blue-light);

}


.intro-link-box span {

    color: var(--muted);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.1em;

}


.intro-link-box a {

    color: var(--blue);

    font-size: 14px;

    font-weight: 900;

    text-decoration: none;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--background);
}


.section-heading {

    display: grid;

    grid-template-columns:
        1fr
        0.7fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 55px;

}


.section-heading h2 {

    max-width: 700px;

    margin-bottom: 0;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            3.7vw,
            52px
        );

    line-height: 1.15;

    letter-spacing: -0.04em;

}


.section-heading > p {

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 335px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: var(--white);

    transition: 0.3s ease;

}


.service-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow-md);

}


.service-card.featured {

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-light)
        );

    border-color:
        transparent;

}


.service-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.service-number {

    color: #b5c0ce;

    font-size: 12px;

    font-weight: 900;

}


.featured .service-number {
    color: #7fbaff;
}


.service-icon {

    display: grid;

    width: 44px;

    height: 44px;

    place-items: center;

    border-radius: 12px;

    background: var(--blue-light);

}


.featured .service-icon {

    background:
        rgba(
            255,
            255,
            255,
            0.1
        );

    color: #91c8ff;

}


.service-card h3 {

    margin: 45px 0 13px;

    color: var(--navy);

    font-size: 20px;

}


.featured h3 {
    color: var(--white);
}


.service-card p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;

}


.featured p {

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

}


.service-footer {

    position: absolute;

    right: 28px;

    bottom: 25px;

    left: 28px;

    padding-top: 15px;

    border-top:
        1px solid var(--border);

    color: var(--blue);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.1em;

}


.featured .service-footer {

    border-color:
        rgba(
            255,
            255,
            255,
            0.12
        );

    color: #85c0ff;

}


/* =========================================================
   PROCESS
========================================================= */

.process-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #06182f,
            #0a315f
        );

}


.process-section::after {

    content: "";

    position: absolute;

    right: -250px;

    bottom: -300px;

    width: 700px;

    height: 700px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.05
        );

    border-radius: 50%;

}


.process-header {

    position: relative;

    z-index: 2;

    max-width: 800px;

}


.process-header h2 {

    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(
            38px,
            4vw,
            58px
        );

    line-height: 1.13;

    letter-spacing: -0.045em;

}


.process-header h2 span {

    display: block;

    color: #75b9ff;

}


.process-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 70px;

}


.process-grid::before {

    content: "";

    position: absolute;

    top: 76px;

    right: 12%;

    left: 12%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(122, 188, 255, 0.35),
            transparent
        );

}


.process-item {

    position: relative;

}


.process-number {

    display: block;

    color: #7fbaff;

    font-size: 11px;

    font-weight: 900;

}


.process-dot {

    position: relative;

    width: 18px;

    height: 18px;

    margin: 28px 0 28px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 9px
        rgba(
            255,
            157,
            46,
            0.1
        );

}


.process-item h3 {

    margin-bottom: 13px;

    color: var(--white);

    font-size: 19px;

}


.process-item p {

    max-width: 240px;

    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================================
   SHIPMENT
========================================================= */

.shipment-grid {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    align-items: center;

    gap: 100px;

}


.shipment-visual {

    min-height: 540px;

    padding: 32px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #0a2d57,
            #06182f
        );

    box-shadow: var(--shadow-lg);

}


.shipment-visual-header {

    display: flex;

    justify-content: space-between;

    color: #83bfff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.12em;

}


.shipment-big-icon {

    display: grid;

    min-height: 360px;

    place-items: center;

    transform:
        rotate(-25deg);

    color: var(--white);

    font-size: 180px;

}


.shipment-stats {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.shipment-stats div {

    padding: 15px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.1
        );

    border-radius: 10px;

}


.shipment-stats strong {

    display: block;

    color: var(--white);

    font-size: 11px;

}


.shipment-stats span {

    display: block;

    margin-top: 5px;

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    font-size: 9px;

}


.shipment-content h2 {

    max-width: 650px;

    margin-bottom: 20px;

    color: var(--navy);

    font-size:
        clamp(
            35px,
            4vw,
            54px
        );

    line-height: 1.15;

    letter-spacing: -0.04em;

}


.shipment-content > p {

    max-width: 650px;

    color: var(--muted);

    line-height: 1.9;

}


.shipment-list {

    display: grid;

    gap: 10px;

    margin-top: 35px;

}


.shipment-list-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px 0;

    border-bottom:
        1px solid var(--border);

}


.shipment-list-item > span {

    color: var(--blue);

    font-size: 10px;

    font-weight: 900;

}


.shipment-list-item strong {

    display: block;

    color: var(--navy);

    font-size: 14px;

}


.shipment-list-item small {

    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

}


.shipment-button {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    padding: 16px 22px;

    border-radius: 10px;

    background: var(--navy);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition: 0.2s ease;

}


.shipment-button:hover {

    transform:
        translateY(-3px);

    background: var(--blue);

}


/* ========================================
   UÇAK KARGO - ŞEHİRLER
======================================== */

.cities-section {
    position: relative;
    padding: 110px 0;
    background: #f6f8fb;
    overflow: hidden;
}


.cities-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -200px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.05);
}


.cities-section .container {
    position: relative;
    z-index: 2;
}


/* ========================================
   HEADER
======================================== */

.cities-header {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}


.section-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(0, 102, 204, 0.08);
    color: #0066cc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}


.cities-header h2 {
    margin: 0 0 20px;
    color: #102033;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 800;
}


.cities-header p {
    margin: 0 auto;
    max-width: 700px;
    color: #5f6d7d;
    font-size: 17px;
    line-height: 1.8;
}


/* ========================================
   FEATURED CITIES
======================================== */

.featured-cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 55px;
}


.featured-city {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 30px;
    overflow: hidden;
    border-radius: 20px;
    background: #102033;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}


.featured-city:hover {
    transform: translateY(-8px);
    background: #0066cc;
    box-shadow: 0 20px 40px rgba(0, 52, 104, 0.18);
}


.city-number {
    margin-bottom: auto;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}


.city-content h3 {
    margin: 25px 0 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.35;
}


.city-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}


.city-arrow {
    position: absolute;
    right: 25px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s ease;
}


.featured-city:hover .city-arrow {
    background: #ffffff;
    color: #0066cc;
}


/* ========================================
   REGION GRID
======================================== */

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


.city-region {
    padding: 32px;
    border: 1px solid #e4e9ef;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.3s ease;
}


.city-region:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 204, 0.25);
    box-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
}


/* ========================================
   REGION HEADER
======================================== */

.region-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}


.region-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #eef6ff;
    color: #0066cc;
    font-size: 20px;
}


.region-heading span:not(.region-icon) {
    display: block;
    margin-bottom: 5px;
    color: #8a96a3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


.region-heading h3 {
    margin: 0;
    color: #102033;
    font-size: 20px;
}


/* ========================================
   CITY LINKS
======================================== */

.city-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}


.city-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 45px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f7f9fb;
    color: #4e5b68;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}


.city-links a::after {
    content: "→";
    margin-left: auto;
    color: #a7b1bb;
    transition: 0.25s ease;
}


.city-links a:hover {
    padding-left: 18px;
    background: #0066cc;
    color: #ffffff;
}


.city-links a:hover::after {
    color: #ffffff;
}


/* ========================================
   INFO BOX
======================================== */

.cities-info-box {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    align-items: center;
    gap: 60px;
    margin-top: 65px;
    padding: 55px;
    border-radius: 28px;
    background: #102033;
    color: #ffffff;
}


.cities-info-content .section-eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}


.cities-info-content h3 {
    margin: 0 0 18px;
    max-width: 700px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
}


.cities-info-content p {
    margin: 0;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}


/* ========================================
   ACTIONS
======================================== */

.cities-info-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.cities-phone,
.cities-whatsapp {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}


.cities-phone {
    background: #ffffff;
    color: #102033;
}


.cities-phone span {
    margin-bottom: 5px;
    color: #7c8792;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.cities-phone strong {
    color: #102033;
    font-size: 22px;
}


.cities-whatsapp {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
}


.cities-whatsapp span {
    font-size: 20px;
}


.cities-phone:hover,
.cities-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {

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


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


    .cities-info-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .cities-section {
        padding: 75px 0;
    }


    .cities-header {
        margin-bottom: 40px;
    }


    .cities-header h2 {
        font-size: 32px;
    }


    .cities-header p {
        font-size: 15px;
    }


    .featured-cities {
        grid-template-columns: 1fr;
    }


    .featured-city {
        min-height: 200px;
    }


    .cities-wrapper {
        grid-template-columns: 1fr;
    }


    .city-region {
        padding: 25px;
    }


    .cities-info-box {
        margin-top: 40px;
        padding: 35px 25px;
        border-radius: 22px;
    }


    .cities-info-content h3 {
        font-size: 27px;
    }

}


@media (max-width: 480px) {

    .city-links {
        grid-template-columns: 1fr;
    }


    .featured-city {
        padding: 25px;
    }


    .cities-phone strong {
        font-size: 19px;
    }

}
/* =========================================================
   WHY VIP
========================================================= */

.why-vip-section {

    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

}


.why-vip-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 100px;

}


.why-vip-content h2 {

    margin-bottom: 22px;

    color: var(--white);

    font-size:
        clamp(
            36px,
            4vw,
            56px
        );

    line-height: 1.12;

    letter-spacing: -0.045em;

}


.why-vip-content h2 span {

    display: block;

    color: #7dbbff;

}


.why-vip-content > p {

    max-width: 560px;

    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    line-height: 1.9;

}


.why-vip-list {

    display: grid;

    gap: 18px;

}


.why-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );

    border-radius: 16px;

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );

}


.why-item > span {

    color: #75b9ff;

    font-size: 11px;

    font-weight: 900;

}


.why-item strong {

    display: block;

    color: var(--white);

    font-size: 15px;

}


.why-item p {

    margin: 7px 0 0;

    color:
        rgba(
            255,
            255,
            255,
            0.52
        );

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    background: var(--white);
}


.reviews-header {

    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 50px;

}


.reviews-header h2 {

    margin-bottom: 0;

    color: var(--navy);

    font-size:
        clamp(
            35px,
            4vw,
            52px
        );

    letter-spacing: -0.04em;

}


.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.review-card {

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: var(--white);

    transition: 0.25s ease;

}


.review-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow-md);

}


.review-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.quote {

    color: var(--blue);

    font-family: Georgia, serif;

    font-size: 52px;

    line-height: 0.7;

}


.stars {

    color: var(--orange);

    font-size: 13px;

    letter-spacing: 2px;

}


.review-card > p {

    min-height: 130px;

    margin: 25px 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;

}


.review-user {

    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 18px;

    border-top:
        1px solid var(--border);

}


.user-letter {

    display: grid;

    width: 38px;

    height: 38px;

    place-items: center;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 13px;

    font-weight: 900;

}


.review-user strong {

    display: block;

    color: var(--navy);

    font-size: 12px;

}


.review-user small {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--background);
}


.faq-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 100px;

    align-items: start;

}


.faq-intro {

    position: sticky;

    top: 120px;

}


.faq-intro h2 {

    margin-bottom: 18px;

    color: var(--navy);

    font-size:
        clamp(
            35px,
            4vw,
            52px
        );

    line-height: 1.15;

    letter-spacing: -0.04em;

}


.faq-intro p {

    color: var(--muted);

    line-height: 1.85;

}


.faq-intro a {

    display: inline-block;

    margin-top: 20px;

    color: var(--green);

    font-size: 13px;

    font-weight: 900;

    text-decoration: none;

}


.faq-list {

    display: grid;

    gap: 12px;

}


.faq-list details {

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: var(--white);

    overflow: hidden;

}


.faq-list summary {

    position: relative;

    padding: 22px 55px 22px 22px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 800;

    line-height: 1.5;

    list-style: none;

    cursor: pointer;

}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary::after {

    content: "+";

    position: absolute;

    top: 50%;

    right: 22px;

    transform:
        translateY(-50%);

    display: grid;

    width: 28px;

    height: 28px;

    place-items: center;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 18px;

}


.faq-list details[open]
summary::after {
    content: "−";
}


.faq-list p {

    margin: 0;

    padding:
        0
        22px
        22px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section {

    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #0a315f,
            #06182f
        );

}


.cta-background-plane {

    position: absolute;

    top: -70px;

    right: 6%;

    transform:
        rotate(-25deg);

    color:
        rgba(
            255,
            255,
            255,
            0.04
        );

    font-size: 400px;

}


.final-cta-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 70px;

}


.final-cta-grid h2 {

    max-width: 750px;

    margin-bottom: 18px;

    color: var(--white);

    font-size:
        clamp(
            36px,
            4vw,
            58px
        );

    line-height: 1.12;

    letter-spacing: -0.045em;

}


.final-cta-grid p {

    max-width: 650px;

    margin-bottom: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.6
        );

    line-height: 1.85;

}


.final-cta-actions {

    display: grid;

    gap: 12px;

}


.final-phone {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 95px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.13
        );

    border-radius: 15px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );

    color: var(--white);

    text-decoration: none;

}


.final-phone small {

    color: #89c4ff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.1em;

}


.final-phone strong {

    margin-top: 7px;

    font-size: 26px;

}


.final-whatsapp {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 60px;

    padding: 0 25px;

    border-radius: 12px;

    background: var(--green);

    color: var(--white);

    font-size: 13px;

    font-weight: 900;

    text-decoration: none;

    transition: 0.2s ease;

}


.final-whatsapp:hover {

    transform:
        translateY(-3px);

}


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

.site-footer {

    background: #031020;

    color: rgba(255, 255, 255, 0.6);

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.8fr
        1fr;

    gap: 60px;

    padding: 80px 0 60px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    text-decoration: none;

}


.footer-logo span {

    display: grid;

    width: 38px;

    height: 38px;

    place-items: center;

    border-radius: 10px;

    background: var(--blue);

}


.footer-logo strong {

    font-size: 16px;

    letter-spacing: 0.04em;

}


.footer-brand-column > p {

    max-width: 340px;

    margin: 22px 0;

    font-size: 12px;

    line-height: 1.9;

}


.footer-contact-box {

    display: inline-flex;

    flex-direction: column;

    padding: 15px 18px;

    border-left:
        2px solid var(--blue);

    background:
        rgba(
            255,
            255,
            255,
            0.03
        );

}


.footer-contact-box small {

    color: #73b8ff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 0.12em;

}


.footer-contact-box a {

    margin-top: 7px;

    color: var(--white);

    font-size: 16px;

    font-weight: 800;

    text-decoration: none;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.footer-column h3 {

    margin-bottom: 8px;

    color: var(--white);

    font-size: 13px;

}


.footer-column > a {

    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 12px;

    text-decoration: none;

    transition: 0.2s ease;

}


.footer-column > a:hover {

    color: #7abaff;

}


.footer-last p {

    margin: 0 0 18px;

    font-size: 12px;

    line-height: 1.8;

}


.footer-whatsapp {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 16px;

    border-radius: 9px;

    background:
        rgba(
            37,
            211,
            102,
            0.12
        );

    color: #67e89c !important;

    font-weight: 800;

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 70px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );

    font-size: 10px;

}


.footer-bottom div {

    display: flex;

    gap: 20px;

}


.footer-bottom a {

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    text-decoration: none;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 1001;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 18px 11px 11px;

    border-radius: 100px;

    background: var(--green);

    color: var(--white);

    text-decoration: none;

    box-shadow:
        0 15px 40px
        rgba(
            37,
            211,
            102,
            0.35
        );

    transition: 0.25s ease;

}


.floating-whatsapp:hover {

    transform:
        translateY(-4px);

}


.whatsapp-icon {

    display: grid;

    width: 40px;

    height: 40px;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.2
        );

    font-size: 20px;

}


.whatsapp-text {

    display: flex;

    flex-direction: column;

}


.whatsapp-text small {

    font-size: 8px;

    font-weight: 800;

    opacity: 0.8;

}


.whatsapp-text strong {

    margin-top: 3px;

    font-size: 12px;

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1150px) {

    .desktop-nav {
        gap: 18px;
    }


    .desktop-nav > a,
    .nav-dropdown-button {
        font-size: 12px;
    }


    .header-actions {
        display: none;
    }


    .hero-container,
    .intro-grid,
    .shipment-grid,
    .why-vip-grid,
    .faq-grid,
    .final-cta-grid {

        grid-template-columns: 1fr;

    }


    .hero-container {

        min-height: auto;

        gap: 0;

    }


    .hero-content {

        max-width: 850px;

        padding-bottom: 30px;

    }


    .hero-visual {

        width: min(100%, 650px);

        margin: 0 auto;

    }


    .intro-grid,
    .shipment-grid,
    .why-vip-grid,
    .faq-grid {
        gap: 60px;
    }


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


    .city-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }


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

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 850px) {

    .topbar {
        display: none;
    }


    .site-header {
        position: relative;
    }


    .header-inner {
        min-height: 72px;
    }


    .desktop-nav {
        display: none;
    }


    .mobile-menu-button {
        display: block;
    }


    .mobile-menu {

        position: absolute;

        top: 100%;

        right: 0;

        left: 0;

        padding: 15px 20px 25px;

        border-top:
            1px solid var(--border);

        background: var(--white);

        box-shadow:
            0 20px 50px
            rgba(
                7,
                26,
                51,
                0.12
            );

    }


    .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }


    .mobile-menu > a {

        padding: 13px;

        border-radius: 9px;

        color: var(--navy);

        font-size: 13px;

        font-weight: 700;

        text-decoration: none;

    }


    .mobile-active {

        background: var(--blue-light);

        color: var(--blue) !important;

    }


    .mobile-call {

        margin-top: 10px;

        background: var(--navy);

        color: var(--white) !important;

        text-align: center;

    }


    .mobile-whatsapp {

        background: var(--green);

        color: var(--white) !important;

        text-align: center;

    }


    .hero-section {
        min-height: auto;
    }


    .hero-content {
        padding: 75px 0 20px;
    }


    .hero-content h1 {

        font-size:
            clamp(
                42px,
                11vw,
                60px
            );

    }


    .hero-visual {
        min-height: 480px;
    }


    .hero-bottom-inner {

        justify-content: center;

        gap: 15px;

        flex-wrap: wrap;

        padding: 15px 0;

    }


    .section-space {
        padding: 80px 0;
    }


    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .process-grid::before {
        display: none;
    }


    .reviews-grid {

        grid-template-columns:
            1fr;

    }


    .review-card > p {
        min-height: auto;
    }


    .faq-intro {
        position: static;
    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 40px;

    }


    .footer-brand-column {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .logo-text strong {
        font-size: 17px;
    }


    .logo-text small {
        font-size: 7px;
    }


    .logo-icon {

        width: 42px;

        height: 42px;

    }


    .hero-content h1 {

        font-size: 42px;

        letter-spacing: -0.05em;

    }


    .hero-description {
        font-size: 14px;
    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-primary,
    .hero-whatsapp {

        width: 100%;

        min-height: 60px;

        justify-content: center;

    }


    .hero-trust {

        gap: 12px;

        justify-content: space-between;

    }


    .trust-line {
        display: none;
    }


    .hero-visual {

        min-height: 410px;

    }


    .ring-one {

        width: 380px;

        height: 380px;

    }


    .ring-two {

        width: 290px;

        height: 290px;

    }


    .ring-three {

        width: 200px;

        height: 200px;

    }


    .aircraft-card {

        width: 300px;

        padding: 20px;

    }


    .aircraft-plane {

        padding: 25px 0;

        font-size: 100px;

    }


    .float-one {

        top: 10px;

        left: -5px;

    }


    .float-two {

        right: -5px;

        bottom: 15px;

    }


    .hero-floating-card {

        padding: 10px;

    }


    .hero-floating-card small {
        font-size: 8px;
    }


    .intro-link-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .services-grid,
    .process-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {
        min-height: 300px;
    }


    .shipment-visual {

        min-height: 420px;

        padding: 22px;

    }


    .shipment-big-icon {

        min-height: 270px;

        font-size: 130px;

    }


    .city-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-vip-section {
        padding: 80px 0;
    }


    .why-item {
        padding: 20px;
    }


    .faq-list summary {
        font-size: 13px;
    }


    .final-cta-section {
        padding: 75px 0;
    }


    .final-phone strong {
        font-size: 22px;
    }


    .footer-main {

        grid-template-columns:
            1fr;

    }


    .footer-brand-column {
        grid-column: auto;
    }


    .footer-bottom {

        flex-direction: column;

        justify-content: center;

        gap: 12px;

        padding: 20px 0;

        text-align: center;

    }


    .floating-whatsapp {

        right: 15px;

        bottom: 15px;

        padding: 10px;

    }


    .whatsapp-text {
        display: none;
    }

}