/* =========================================================
   GAZİANTEP UÇAK KARGO
   CSS FILE: css/gaziantep.css
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

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

    color: #1d1d1f;

    background-color: #ffffff;

    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;
}

textarea {
    resize: vertical;
}


/* =========================================================
   2. ROOT
   ========================================================= */

:root {

    --primary:
        #d71920;

    --primary-dark:
        #ad1117;

    --dark:
        #121212;

    --dark-soft:
        #222222;

    --text:
        #333333;

    --text-light:
        #666666;

    --white:
        #ffffff;

    --light:
        #f6f7f9;

    --border:
        #e5e5e5;

    --shadow:
        0 15px 45px rgba(0, 0, 0, 0.08);

    --container:
        1200px;

}


/* =========================================================
   3. GENERAL
   ========================================================= */

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

    margin-inline: auto;
}

.section {
    padding:
        100px 0;
}

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

.section-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color:
        var(--primary);

    margin-bottom: 15px;
}

.section-kicker::before {
    content: "";

    width: 28px;

    height: 3px;

    background:
        var(--primary);
}

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

.section-heading.center {
    max-width: 800px;

    margin-left: auto;

    margin-right: auto;

    text-align: center;
}

.section-heading.center .section-kicker {
    justify-content: center;
}

.section-heading h2,
.content-block h2,
.route-grid h2,
.contact-information h2 {
    font-size:
        clamp(
            30px,
            4vw,
            48px
        );

    line-height: 1.2;

    color:
        var(--dark);

    margin-bottom: 20px;

    font-weight: 800;
}

.section-heading p {
    color:
        var(--text-light);

    font-size: 17px;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 999;

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

    border-bottom:
        1px solid #eeeeee;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.04);
}

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 190px;

    height: auto;
}


/* =========================================================
   5. NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    gap: 24px;

    margin-left: auto;
}

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

    border: 0;

    background: transparent;

    color:
        var(--dark);

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

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


/* =========================================================
   6. MEGA MENU
   ========================================================= */

.nav-dropdown {
    position: relative;
}

.mega-toggle {
    display: flex;

    align-items: center;

    gap: 7px;

    padding: 10px 0;
}

.mega-arrow {
    font-size: 12px;

    transition:
        transform 0.25s ease;
}

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

.mega-menu {
    position: absolute;

    top:
        calc(100% + 20px);

    left: 50%;

    transform:
        translateX(-50%);

    width: 650px;

    padding: 28px;

    background:
        var(--white);

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        all 0.25s ease;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    top:
        calc(100% + 10px);
}

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

    margin-bottom: 20px;

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

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.mega-menu-head strong {
    font-size: 17px;

    color:
        var(--dark);
}

.mega-menu-head span {
    font-size: 13px;

    color:
        var(--text-light);
}

.mega-menu-grid {
    display: grid;

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

    gap: 10px;
}

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

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;

    color:
        var(--text);

    transition:
        all 0.2s ease;
}

.mega-menu-grid a:hover,
.mega-menu-grid .active-city {
    color:
        var(--white);

    background:
        var(--primary);
}


/* =========================================================
   7. HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}

.header-phone {
    font-size: 14px;

    font-weight: 800;

    color:
        var(--dark);

    white-space: nowrap;
}

.header-whatsapp {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding:
        0 20px;

    border-radius: 7px;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 13px;

    font-weight: 800;

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

.header-whatsapp:hover {
    background:
        var(--primary-dark);

    transform:
        translateY(-2px);
}


/* =========================================================
   8. MOBILE MENU
   ========================================================= */

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

.mobile-menu-toggle {
    width: 45px;

    height: 45px;

    border: 0;

    background:
        var(--primary);

    border-radius: 6px;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;
}

.mobile-menu-toggle span {
    width: 22px;

    height: 2px;

    background:
        var(--white);
}

.mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 998;

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

    opacity: 0;

    visibility: hidden;

    transition:
        all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   9. HERO
   ========================================================= */

.inner-hero {
    position: relative;

    min-height: 620px;

    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(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.25) 100%
        );
}

.inner-hero-content {
    position: relative;

    z-index: 2;

    color:
        var(--white);

    padding:
        100px 0;
}

.breadcrumb {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-bottom: 30px;

    font-size: 13px;

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

.breadcrumb a {
    transition:
        color 0.2s ease;
}

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

.hero-kicker {
    color:
        #ffffff;
}

.hero-kicker::before {
    background:
        var(--primary);
}

.inner-hero h1 {
    max-width: 750px;

    font-size:
        clamp(
            42px,
            6vw,
            72px
        );

    line-height: 1.08;

    margin-bottom: 25px;

    font-weight: 900;
}

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

    font-size:
        clamp(
            17px,
            2vw,
            21px
        );

    line-height: 1.7;

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

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}

.button {
    min-height: 54px;

    padding:
        0 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 800;

    transition:
        all 0.25s ease;
}

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

    background:
        var(--primary);
}

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

    transform:
        translateY(-2px);
}

.button-outline {
    color:
        var(--white);

    border:
        1px solid rgba(255, 255, 255, 0.6);
}

.button-outline:hover {
    background:
        var(--white);

    color:
        var(--dark);
}


/* =========================================================
   10. INTRO
   ========================================================= */

.two-column {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;
}

.content-block p {
    color:
        var(--text-light);

    margin-bottom: 20px;

    font-size: 16px;
}

.content-image {
    position: relative;

    overflow: hidden;

    border-radius: 15px;

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

.content-image img {
    width: 100%;

    min-height: 450px;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

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


/* =========================================================
   11. CHECK LIST
   ========================================================= */

.check-list {
    margin-top: 30px;

    display: grid;

    gap: 16px;
}

.check-list > div {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}

.check-list span {
    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(215, 25, 32, 0.1);

    color:
        var(--primary);

    font-weight: 900;
}

.check-list p {
    margin: 0;
}


/* =========================================================
   12. ADVANTAGE GRID
   ========================================================= */

.advantage-grid {
    display: grid;

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

    gap: 22px;
}

.advantage-card {
    position: relative;

    padding: 35px 28px;

    background:
        var(--white);

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

    border-radius: 12px;

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

.advantage-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(215, 25, 32, 0.35);

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

.advantage-number {
    font-size: 14px;

    font-weight: 900;

    color:
        var(--primary);

    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 20px;

    line-height: 1.3;

    margin-bottom: 13px;

    color:
        var(--dark);
}

.advantage-card p {
    color:
        var(--text-light);

    font-size: 15px;
}


/* =========================================================
   13. PROCESS
   ========================================================= */

.process-grid {
    display: grid;

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

    gap: 25px;
}

.process-card {
    position: relative;

    padding: 35px 25px;

    border-radius: 12px;

    background:
        var(--white);

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

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

.process-card:hover {
    transform:
        translateY(-5px);

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

.process-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 46px;

    height: 46px;

    border-radius: 8px;

    margin-bottom: 25px;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 14px;

    font-weight: 900;
}

.process-card h3 {
    font-size: 19px;

    margin-bottom: 12px;

    color:
        var(--dark);
}

.process-card p {
    font-size: 15px;

    color:
        var(--text-light);
}


/* =========================================================
   14. ROUTE SECTION
   ========================================================= */

.route-section {
    background:
        #151515;

    color:
        var(--white);
}

.route-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 70px;
}

.route-section h2 {
    color:
        var(--white);
}

.route-section p {
    color:
        rgba(255, 255, 255, 0.72);

    margin-bottom: 30px;
}

.city-links {
    display: grid;

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

    gap: 10px;
}

.city-links a {
    display: flex;

    align-items: center;

    min-height: 55px;

    padding:
        12px 18px;

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

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

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.25s ease;
}

.city-links a:hover {
    background:
        var(--primary);

    border-color:
        var(--primary);

    transform:
        translateX(4px);
}

.route-image {
    overflow: hidden;

    border-radius: 15px;
}

.route-image img {
    width: 100%;

    min-height: 520px;

    object-fit: cover;
}


/* =========================================================
   15. CARGO TYPES
   ========================================================= */

.cargo-types-grid {
    display: grid;

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

    gap: 22px;
}

.cargo-types-grid article {
    text-align: center;

    padding: 40px 25px;

    border-radius: 12px;

    background:
        var(--white);

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

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

.cargo-types-grid article:hover {
    transform:
        translateY(-7px);

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

.cargo-icon {
    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    margin:
        0 auto 25px;

    border-radius: 50%;

    background:
        rgba(215, 25, 32, 0.1);

    color:
        var(--primary);

    font-size: 30px;
}

.cargo-types-grid h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.cargo-types-grid p {
    color:
        var(--text-light);

    font-size: 15px;
}


/* =========================================================
   16. WHY SECTION
   ========================================================= */

.why-section {
    background:
        #ffffff;
}

.why-grid {
    display: grid;

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

    gap: 25px;
}

.why-grid article {
    position: relative;

    padding: 35px;

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

    background:
        var(--light);

    border-radius:
        0 12px 12px 0;
}

.why-grid h3 {
    font-size: 21px;

    margin-bottom: 15px;

    color:
        var(--dark);
}

.why-grid p {
    color:
        var(--text-light);

    font-size: 15px;
}


/* =========================================================
   17. REVIEWS
   ========================================================= */

.reviews-section {
    padding:
        100px 0;

    background:
        var(--light);
}

.reviews-grid {
    display: grid;

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

    gap: 25px;
}

.review-card {
    padding: 32px;

    background:
        var(--white);

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

    border-radius: 14px;

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

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

.review-card:hover {
    transform:
        translateY(-6px);

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

.review-top {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}

.review-avatar {
    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 14px;

    font-weight: 900;
}

.review-top h3 {
    font-size: 17px;

    color:
        var(--dark);
}

.review-top span {
    display: block;

    color:
        var(--text-light);

    font-size: 13px;
}

.stars {
    color:
        #f5a623;

    font-size: 17px;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.review-card > p {
    color:
        var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   18. FAQ
   ========================================================= */

.faq-section {
    padding:
        100px 0;

    background:
        var(--white);
}

.faq-wrapper {
    max-width: 900px;

    margin: auto;

    display: grid;

    gap: 14px;
}

.faq-card {
    border:
        1px solid var(--border);

    border-radius: 9px;

    overflow: hidden;

    transition:
        border-color 0.25s ease;
}

.faq-card[open] {
    border-color:
        rgba(215, 25, 32, 0.5);
}

.faq-card summary {
    position: relative;

    list-style: none;

    padding:
        22px 65px 22px 24px;

    font-size: 16px;

    font-weight: 800;

    color:
        var(--dark);

    cursor: pointer;
}

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

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

    position: absolute;

    right: 24px;

    top: 50%;

    transform:
        translateY(-50%);

    width: 30px;

    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--light);

    color:
        var(--primary);

    font-size: 22px;

    font-weight: 500;
}

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

    background:
        var(--primary);

    color:
        var(--white);
}

.faq-card p {
    padding:
        0 24px 24px;

    color:
        var(--text-light);

    font-size: 15px;
}


/* =========================================================
   19. CONTACT
   ========================================================= */

.contact-section {
    padding:
        100px 0;

    background:
        var(--dark);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: start;

    gap: 70px;
}

.contact-information h2 {
    color:
        var(--white);
}

.contact-information p {
    color:
        rgba(255, 255, 255, 0.72);

    margin-bottom: 35px;

    font-size: 16px;
}

.contact-list {
    display: grid;

    gap: 15px;
}

.contact-list a {
    padding: 18px 20px;

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

    border-radius: 8px;

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

    transition:
        background 0.25s ease;
}

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

.contact-list strong {
    display: block;

    color:
        var(--white);

    font-size: 13px;

    margin-bottom: 4px;
}

.contact-list span {
    color:
        rgba(255, 255, 255, 0.7);

    font-size: 15px;
}


/* =========================================================
   20. CONTACT FORM
   ========================================================= */

.contact-form {
    padding: 40px;

    border-radius: 14px;

    background:
        var(--white);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-size: 27px;

    color:
        var(--dark);

    margin-bottom: 28px;
}

.contact-form label {
    display: block;

    color:
        var(--dark);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;
}

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

    margin-top: 7px;

    padding: 14px 15px;

    border:
        1px solid #dddddd;

    border-radius: 6px;

    outline: none;

    background:
        #ffffff;

    color:
        var(--dark);

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

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

    box-shadow:
        0 0 0 4px rgba(215, 25, 32, 0.08);
}

.form-row {
    display: grid;

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

    gap: 15px;
}

.form-submit {
    width: 100%;

    min-height: 55px;

    border: 0;

    border-radius: 7px;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 15px;

    font-weight: 800;

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

.form-submit:hover {
    background:
        var(--primary-dark);

    transform:
        translateY(-2px);
}

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

    color:
        var(--text-light);

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   21. FOOTER
   ========================================================= */

.site-footer {
    background:
        #0b0b0b;

    color:
        var(--white);
}

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

.footer-grid {
    display: grid;

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

    gap: 50px;
}

.footer-logo img {
    width: 190px;

    margin-bottom: 22px;
}

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

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

    font-size: 14px;

    margin-bottom: 25px;
}

.footer-contact-boxes {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-contact-boxes a {
    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--white);

    font-size: 14px;
}

.footer-contact-boxes span {
    color:
        var(--primary);
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 10px;

    font-size: 17px;

    color:
        var(--white);
}

.footer-column a {
    color:
        rgba(255, 255, 255, 0.6);

    font-size: 14px;

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

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

    transform:
        translateX(3px);
}


/* =========================================================
   22. FOOTER CTA
   ========================================================= */

.footer-cta {
    padding:
        45px 0;

    background:
        var(--primary);
}

.footer-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-cta span {
    display: block;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 8px;
}

.footer-cta h2 {
    font-size:
        clamp(
            24px,
            3vw,
            36px
        );

    line-height: 1.25;

    color:
        var(--white);
}

.footer-cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.footer-call-button,
.footer-whatsapp-button {
    min-height: 50px;

    padding:
        0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 800;

    transition:
        transform 0.2s ease;
}

.footer-call-button {
    background:
        var(--white);

    color:
        var(--dark);
}

.footer-whatsapp-button {
    border:
        1px solid rgba(255, 255, 255, 0.7);

    color:
        var(--white);
}

.footer-call-button:hover,
.footer-whatsapp-button:hover {
    transform:
        translateY(-3px);
}


/* =========================================================
   23. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    padding:
        22px 0;

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

.footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 13px;
}

.footer-bottom-inner > div {
    display: flex;

    gap: 20px;
}

.footer-bottom a {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 13px;
}

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


/* =========================================================
   24. FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #25d366;

    color:
        var(--white);

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

    transition:
        transform 0.25s ease;
}

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

.whatsapp-tooltip {
    position: absolute;

    right: 72px;

    white-space: nowrap;

    padding:
        8px 13px;

    border-radius: 5px;

    background:
        var(--dark);

    color:
        var(--white);

    font-size: 12px;

    font-weight: 700;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(5px);

    transition:
        all 0.2s ease;
}

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

    visibility: visible;

    transform:
        translateX(0);
}


/* =========================================================
   25. TABLET
   ========================================================= */

@media screen and (max-width: 1100px) {

    .main-nav {
        position: fixed;

        top: 0;

        right: -100%;

        z-index: 1000;

        width:
            min(
                400px,
                88vw
            );

        height: 100vh;

        overflow-y: auto;

        padding:
            25px;

        background:
            var(--white);

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        box-shadow:
            -15px 0 50px rgba(0, 0, 0, 0.15);

        transition:
            right 0.3s ease;
    }

    .main-nav.open,
    .main-nav.menu-open {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-head {
        display: flex;

        align-items: center;

        justify-content: space-between;

        padding-bottom: 22px;

        margin-bottom: 12px;

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

        font-size: 20px;
    }

    .mobile-menu-close {
        display: grid;

        place-items: center;

        width: 40px;

        height: 40px;

        border: 0;

        background:
            var(--light);

        border-radius: 6px;

        font-size: 26px;
    }

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

        padding:
            16px 0;

        border-bottom:
            1px solid #eeeeee;

        text-align: left;
    }

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

    .nav-dropdown:hover .mega-menu {
        opacity: 0;

        visibility: hidden;

        pointer-events: none;
    }

    .nav-dropdown.mega-open .mega-menu {
        position: static;

        width: 100%;

        transform: none;

        margin-top: 10px;

        padding: 15px;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        box-shadow: none;

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

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

    .mobile-contact {
        display: grid;

        gap: 10px;

        margin-top: 25px;
    }

    .mobile-contact a {
        display: flex;

        justify-content: center;

        align-items: center;

        min-height: 50px;

        border-radius: 7px;

        background:
            var(--primary);

        color:
            var(--white);

        font-size: 14px;

        font-weight: 800;
    }

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

    .header-phone {
        display: none;
    }

    .two-column,
    .route-grid,
    .contact-grid {
        grid-template-columns:
            1fr;

        gap: 50px;
    }

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

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

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

    .review-card:last-child {
        grid-column:
            span 2;
    }

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

    .footer-brand {
        grid-column:
            span 2;
    }

}


/* =========================================================
   26. MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {

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

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

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

    .logo img {
        width: 145px;
    }

    .header-actions {
        display: none;
    }

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

    .inner-hero-content {
        padding:
            80px 0;
    }

    .inner-hero-overlay {
        background:
            rgba(0, 0, 0, 0.68);
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .inner-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

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

    .section-heading h2,
    .content-block h2,
    .route-grid h2,
    .contact-information h2 {
        font-size: 31px;
    }

    .content-image img,
    .route-image img {
        min-height: 320px;
    }

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

    .review-card:last-child {
        grid-column: auto;
    }

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

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

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

    .contact-form h3 {
        font-size: 23px;
    }

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

    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

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

    .footer-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

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

        flex-direction: column;
    }

    .footer-call-button,
    .footer-whatsapp-button {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-bottom-inner > div {
        flex-wrap: wrap;

        gap: 10px 18px;
    }

    .floating-whatsapp {
        right: 18px;

        bottom: 18px;

        width: 55px;

        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}


/* =========================================================
   27. SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 420px) {

    .inner-hero h1 {
        font-size: 36px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .section-heading h2,
    .content-block h2,
    .route-grid h2,
    .contact-information h2 {
        font-size: 27px;
    }

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

}