/* =========================================================
   SAMSUN UÇAK KARGO
   VIP KARGO - PAGE STYLES
========================================================= */

:root {
    --primary: #d71920;
    --primary-dark: #ab0e15;
    --dark: #111827;
    --dark-soft: #1f2937;
    --text: #4b5563;
    --muted: #6b7280;
    --light: #f6f7f9;
    --white: #ffffff;
    --border: #e5e7eb;
    --container: 1240px;
    --shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}


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

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}


body.menu-active {
    overflow: hidden;
}


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


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


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

    margin-inline: auto;
}


.section {
    padding: 100px 0;
}


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


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

h1,
h2,
h3 {
    color: var(--dark);
    line-height: 1.25;
}


h1 {
    font-size: clamp(
        2.5rem,
        5vw,
        4.8rem
    );

    font-weight: 800;
}


h2 {
    font-size: clamp(
        2rem,
        3vw,
        3rem
    );

    font-weight: 800;
}


h3 {
    font-size: 1.2rem;
}


.section-kicker {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.8px;
}


.section-heading {
    max-width: 800px;
    margin-bottom: 55px;
}


.section-heading.center {
    margin-inline: auto;
    text-align: center;
}


.section-heading p {
    margin-top: 18px;
    color: var(--muted);
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}


.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.logo {
    flex-shrink: 0;
}


.logo img {
    width: 190px;
    height: auto;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-left: auto;
}


.menu-link,
.mega-toggle {
    position: relative;

    border: 0;
    background: transparent;

    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 700;

    white-space: nowrap;
}


.menu-link:hover,
.mega-toggle:hover {
    color: var(--primary);
}


.nav-dropdown {
    position: relative;
}


.mega-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}


.mega-arrow {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}


.nav-dropdown:hover .mega-arrow {
    transform: rotate(180deg);
}


.mega-menu {
    position: absolute;
    top: calc(100% + 26px);
    left: 50%;

    width: min(
        850px,
        90vw
    );

    padding: 25px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

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

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.14);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

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


.mega-menu-head {
    padding-bottom: 20px;
    margin-bottom: 20px;

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


.mega-menu-head strong {
    display: block;

    color: var(--dark);
    font-size: 1rem;
}


.mega-menu-head span {
    display: block;
    margin-top: 4px;

    color: var(--muted);
    font-size: 0.85rem;
}


.mega-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}


.mega-menu-grid a {
    padding: 10px 12px;

    border-radius: 8px;

    color: var(--dark);
    font-size: 0.87rem;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.mega-menu-grid a:hover,
.mega-menu-grid a.active-city {
    background: #fff1f2;
    color: var(--primary);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.header-phone {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}


.header-whatsapp {
    padding: 11px 18px;

    border-radius: 8px;

    background: var(--primary);
    color: var(--white);

    font-size: 0.86rem;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.header-whatsapp:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


.mobile-menu-toggle,
.mobile-nav-head,
.mobile-contact,
.mobile-overlay {
    display: none;
}


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

.inner-hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--dark);
}


.inner-hero > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.inner-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 15, 25, 0.9) 0%,
            rgba(10, 15, 25, 0.72) 45%,
            rgba(10, 15, 25, 0.28) 100%
        );
}


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

    padding-top: 50px;
    padding-bottom: 50px;

    color: var(--white);
}


.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 9px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 0.86rem;
}


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


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


.hero-kicker {
    color: #ffffff;
}


.inner-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;

    color: var(--white);
}


.inner-hero p {
    max-width: 720px;

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

    font-size: 1.08rem;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 35px;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 8px;

    font-size: 0.92rem;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.button:hover {
    transform: translateY(-3px);
}


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


.button-primary:hover {
    background: var(--primary-dark);
}


.button-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}


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

.two-column {
    display: grid;
    grid-template-columns:
        1.05fr 0.95fr;

    align-items: center;
    gap: 75px;
}


.content-block h2 {
    margin-bottom: 25px;
}


.content-block p {
    margin-bottom: 18px;
}


.check-list {
    display: grid;
    gap: 15px;

    margin-top: 30px;
}


.check-list > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 16px;

    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: 10px;
}


.check-list span {
    flex-shrink: 0;

    display: grid;
    place-items: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-weight: 800;
}


.check-list p {
    margin: 0;
}


.content-image {
    overflow: hidden;

    border-radius: 18px;

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


.content-image img {
    width: 100%;
    min-height: 550px;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantage-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


.advantage-card {
    position: relative;

    min-height: 280px;
    padding: 32px 28px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


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


.advantage-number {
    margin-bottom: 28px;

    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 800;
}


.advantage-card h3 {
    margin-bottom: 15px;
}


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

.process-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


.process-card {
    position: relative;

    padding: 32px 25px;

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

    background: var(--white);
}


.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 0.9rem;
    font-weight: 800;
}


.process-card h3 {
    margin-bottom: 12px;
}


/* =========================================================
   ROUTES
========================================================= */

.route-section {
    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );
}


.route-content {
    max-width: 900px;
}


.route-section h2 {
    margin-bottom: 20px;
    color: var(--white);
}


.route-section p {
    max-width: 800px;

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


.route-section .section-kicker {
    color: #f87171;
}


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

    gap: 14px;

    margin-top: 38px;
}


.city-links a {
    position: relative;

    padding: 17px 45px 17px 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

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

    color: var(--white);
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}


.city-links a::after {
    content: "→";

    position: absolute;
    right: 20px;
    top: 50%;

    transform: translateY(-50%);
}


.city-links a:hover {
    transform: translateX(5px);

    background: var(--primary);

    border-color: var(--primary);
}


/* =========================================================
   CARGO TYPES
========================================================= */

.cargo-types-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


.cargo-types-grid article {
    padding: 35px 28px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;

    text-align: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.cargo-types-grid article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}


.cargo-icon {
    display: grid;
    place-items: center;

    width: 62px;
    height: 62px;

    margin: 0 auto 24px;

    border-radius: 50%;

    background: #fff1f2;
    color: var(--primary);

    font-size: 1.7rem;
}


.cargo-types-grid h3 {
    margin-bottom: 12px;
}


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

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


.why-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.why-grid article {
    position: relative;

    padding: 40px 32px;

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

    background: #f8fafc;
}


.why-grid h3 {
    margin-bottom: 15px;
}


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

.reviews-section {
    padding: 100px 0;

    background: var(--light);
}


.reviews-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.review-card {
    padding: 30px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;

    box-shadow:
        0 10px 30px
        rgba(15, 23, 42, 0.04);
}


.review-top {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;
}


.review-avatar {
    display: grid;
    place-items: center;

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-size: 0.88rem;
    font-weight: 800;
}


.review-top h3 {
    margin-bottom: 2px;
    font-size: 1rem;
}


.review-top span {
    color: var(--muted);
    font-size: 0.82rem;
}


.stars {
    margin-bottom: 18px;

    color: #f59e0b;
    letter-spacing: 2px;
}


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

.faq-section {
    padding: 100px 0;
}


.faq-wrapper {
    max-width: 900px;
    margin-inline: auto;

    display: grid;
    gap: 14px;
}


.faq-card {
    padding: 0 24px;

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

    background: var(--white);

    transition:
        box-shadow 0.2s ease;
}


.faq-card[open] {
    box-shadow: var(--shadow);
}


.faq-card summary {
    position: relative;

    padding: 21px 35px 21px 0;

    cursor: pointer;

    color: var(--dark);
    font-weight: 800;

    list-style: none;
}


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


.faq-card summary::after {
    content: "+";

    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);
    font-size: 1.5rem;
}


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


.faq-card p {
    padding-bottom: 22px;
}


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

.contact-section {
    padding: 100px 0;

    background: var(--dark);
}


.contact-grid {
    display: grid;
    grid-template-columns:
        0.9fr 1.1fr;

    align-items: center;
    gap: 80px;
}


.contact-information {
    color: rgba(255, 255, 255, 0.75);
}


.contact-information h2 {
    margin-bottom: 20px;
    color: var(--white);
}


.contact-information .section-kicker {
    color: #f87171;
}


.contact-list {
    display: grid;
    gap: 15px;

    margin-top: 35px;
}


.contact-list a {
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

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

    transition:
        background 0.2s ease;
}


.contact-list a:hover {
    background: rgba(255, 255, 255, 0.08);
}


.contact-list strong,
.contact-list span {
    display: block;
}


.contact-list strong {
    margin-bottom: 4px;
    color: var(--white);
}


.contact-form {
    padding: 40px;

    background: var(--white);
    border-radius: 18px;
}


.contact-form h3 {
    margin-bottom: 25px;
}


.contact-form label {
    display: block;

    margin-bottom: 18px;

    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
}


.contact-form input,
.contact-form textarea {
    width: 100%;

    margin-top: 8px;
    padding: 14px 15px;

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

    outline: none;

    color: var(--dark);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.contact-form textarea {
    resize: vertical;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(215, 25, 32, 0.1);
}


.form-row {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.form-submit {
    width: 100%;
    min-height: 52px;

    border: 0;
    border-radius: 8px;

    background: var(--primary);
    color: var(--white);

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


.form-note {
    margin-top: 15px;

    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}


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

.site-footer {
    background: #090f1a;
    color: rgba(255, 255, 255, 0.65);
}


.footer-main {
    padding: 80px 0 60px;
}


.footer-grid {
    display: grid;
    grid-template-columns:
        1.5fr repeat(3, 1fr);

    gap: 55px;
}


.footer-logo img {
    width: 190px;
    height: auto;
}


.footer-brand p {
    max-width: 380px;

    margin-top: 22px;
}


.footer-contact-boxes {
    display: grid;
    gap: 12px;

    margin-top: 28px;
}


.footer-contact-boxes a {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--white);
}


.footer-contact-boxes span {
    color: #f87171;
}


.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}


.footer-column h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 1rem;
}


.footer-column a {
    font-size: 0.9rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}


.footer-cta {
    padding: 35px 0;

    background: var(--primary);
}


.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer-cta span {
    display: block;

    margin-bottom: 6px;

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

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.4px;
}


.footer-cta h2 {
    max-width: 650px;

    color: var(--white);
    font-size: clamp(
        1.5rem,
        2.5vw,
        2.2rem
    );
}


.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.footer-call-button,
.footer-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 20px;

    border-radius: 7px;

    font-size: 0.88rem;
    font-weight: 800;
}


.footer-call-button {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
}


.footer-whatsapp-button {
    background: var(--white);
    color: var(--primary);
}


.footer-bottom {
    padding: 22px 0;

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


.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 0.82rem;
}


.footer-bottom-inner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.footer-bottom a:hover {
    color: var(--white);
}


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

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25d366;
    color: var(--white);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.22);

    transition:
        transform 0.2s ease;
}


.floating-whatsapp:hover {
    transform: scale(1.08);
}


.whatsapp-tooltip {
    position: absolute;
    right: 72px;

    width: max-content;

    padding: 8px 12px;

    border-radius: 6px;

    background: var(--dark);
    color: var(--white);

    font-size: 0.78rem;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


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

@media (max-width: 1100px) {

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;

        width: min(
            380px,
            88vw
        );

        padding: 25px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        overflow-y: auto;

        background: var(--white);

        transform: translateX(110%);

        transition: transform 0.3s ease;
    }


    .main-nav.open {
        transform: translateX(0);
    }


    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-bottom: 20px;
        margin-bottom: 15px;

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

        color: var(--dark);
    }


    .mobile-menu-close {
        width: 38px;
        height: 38px;

        border: 0;
        border-radius: 8px;

        background: var(--light);

        color: var(--dark);
        font-size: 1.6rem;
    }


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

        width: 44px;
        height: 44px;

        align-items: center;
        justify-content: center;

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

        background: var(--white);
    }


    .mobile-menu-toggle span {
        width: 21px;
        height: 2px;

        background: var(--dark);
    }


    .menu-link,
    .mega-toggle {
        width: 100%;

        padding: 15px 0;

        text-align: left;

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


    .mega-toggle {
        display: flex;
        justify-content: space-between;
    }


    .nav-dropdown:hover .mega-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }


    .mega-menu {
        position: static;

        width: 100%;

        display: none;

        margin-top: 10px;

        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: none;

        box-shadow: none;
    }


    .nav-dropdown.mega-open .mega-menu {
        display: block;
    }


    .nav-dropdown.mega-open .mega-arrow {
        transform: rotate(180deg);
    }


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


    .mobile-contact {
        display: grid;
        gap: 10px;

        margin-top: 25px;
    }


    .mobile-contact a {
        padding: 14px;

        border-radius: 8px;

        text-align: center;
        font-weight: 800;
    }


    .mobile-contact a:first-child {
        background: var(--dark);
        color: var(--white);
    }


    .mobile-contact a:last-child {
        background: var(--primary);
        color: var(--white);
    }


    .mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 999;

        display: block;

        background: rgba(0, 0, 0, 0.5);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }


    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }


    .main-nav {
        z-index: 1001;
    }


    .header-actions {
        margin-left: auto;
    }


    .advantage-grid,
    .process-grid,
    .cargo-types-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


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


    .contact-grid,
    .two-column {
        gap: 45px;
    }

}


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

@media (max-width: 768px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    .section,
    .reviews-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }


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


    .logo img {
        width: 150px;
    }


    .header-phone,
    .header-whatsapp {
        display: none;
    }


    .inner-hero {
        min-height: 610px;
    }


    .inner-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 15, 25, 0.88),
                rgba(10, 15, 25, 0.58)
            );
    }


    .inner-hero-content {
        padding-top: 70px;
    }


    .inner-hero p {
        font-size: 1rem;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .button {
        width: 100%;
    }


    .two-column,
    .contact-grid,
    .advantage-grid,
    .process-grid,
    .cargo-types-grid,
    .why-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }


    .content-image img {
        min-height: auto;
    }


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


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .contact-form {
        padding: 28px 20px;
    }


    .footer-main {
        padding: 65px 0 45px;
    }


    .footer-cta-inner,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }


    .footer-cta-buttons {
        width: 100%;
    }


    .footer-call-button,
    .footer-whatsapp-button {
        flex: 1;
    }


    .footer-bottom-inner > div {
        gap: 14px;
    }


    .floating-whatsapp {
        right: 16px;
        bottom: 16px;

        width: 54px;
        height: 54px;
    }


    .whatsapp-tooltip {
        display: none;
    }

}


@media (max-width: 480px) {

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }


    .breadcrumb {
        font-size: 0.76rem;
    }


    .section-heading {
        margin-bottom: 38px;
    }


    .advantage-card,
    .process-card,
    .cargo-types-grid article,
    .review-card {
        padding: 25px 20px;
    }


    .footer-cta-buttons {
        flex-direction: column;
    }

}