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

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


html {
    scroll-behavior: smooth;
}


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

    color: #1d2430;
    background: #ffffff;
    line-height: 1.7;

    overflow-x: hidden;
}


body.menu-active {
    overflow: hidden;
}


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


a {
    text-decoration: none;
}


button,
input,
textarea {
    font: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


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

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

    background: #ffffff;

    border-bottom:
        1px solid #ececec;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.05);
}


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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


.logo {
    flex-shrink: 0;
}


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


/* =========================================
   MAIN NAV
========================================= */

.main-nav {
    display: flex;

    align-items: center;

    gap: 24px;

    margin-left: auto;
}


.main-nav > a,
.mega-toggle {
    color: #1d2430;

    font-size: 14px;

    font-weight: 700;

    background: transparent;

    border: none;

    cursor: pointer;

    white-space: nowrap;

    transition: 0.25s;
}


.main-nav > a:hover,
.mega-toggle:hover {
    color: #d71920;
}


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

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}


.header-phone {
    font-weight: 800;

    color: #1d2430;

    white-space: nowrap;
}


.header-whatsapp {
    background: #25d366;

    color: #ffffff;

    padding: 11px 17px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s;
}


.header-whatsapp:hover {
    transform: translateY(-2px);
}


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

.nav-dropdown {
    position: relative;
}


.mega-toggle {
    display: flex;

    align-items: center;

    gap: 7px;
}


.mega-arrow {
    transition: 0.25s;
}


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


.mega-menu {
    position: absolute;

    top: calc(100% + 25px);

    left: 50%;

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

    width: 760px;

    background: #ffffff;

    padding: 25px;

    border-radius: 14px;

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

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: 0.25s;

    border:
        1px solid #eeeeee;
}


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

    visibility: visible;

    pointer-events: auto;

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


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

    margin-bottom: 18px;

    border-bottom:
        1px solid #eeeeee;
}


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

    font-size: 18px;

    color: #1d2430;

    margin-bottom: 3px;
}


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

    color: #6c7480;
}


.mega-menu-grid {
    display: grid;

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

    gap: 10px;
}


.mega-menu-grid a {
    display: block;

    padding: 11px 12px;

    border-radius: 8px;

    background: #f6f7f9;

    color: #2b3440;

    font-size: 13px;

    font-weight: 600;

    transition: 0.25s;
}


.mega-menu-grid a:hover,
.mega-menu-grid .active-city {
    background: #d71920;

    color: #ffffff;
}


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

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


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

.inner-hero {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #ffffff;
}


.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(12, 18, 32, 0.94),
            rgba(12, 18, 32, 0.72),
            rgba(12, 18, 32, 0.28)
        );
}


.inner-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


.breadcrumb {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    margin-bottom: 35px;

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


.breadcrumb a {
    color: #ffffff;
}


.section-kicker {
    display: inline-block;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: #d71920;

    margin-bottom: 15px;
}


.hero-kicker {
    color: #ffffff;

    background: #d71920;

    padding: 8px 14px;

    border-radius: 5px;
}


.inner-hero h1 {
    font-size: clamp(42px, 6vw, 74px);

    line-height: 1.08;

    margin-bottom: 22px;
}


.inner-hero p {
    font-size: 20px;

    max-width: 720px;

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


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 7px;

    font-weight: 800;

    transition: 0.25s;
}


.button-primary {
    background: #d71920;

    color: #ffffff;
}


.button-primary:hover {
    background: #b80e15;

    transform: translateY(-2px);
}


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

    color: #ffffff;
}


/* =========================================
   GENERAL SECTION
========================================= */

.section {
    padding: 95px 0;
}


.light-section {
    background: #f6f7f9;
}


.section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.section-heading.center {
    text-align: center;

    margin-left: auto;

    margin-right: auto;
}


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

    line-height: 1.2;

    margin-bottom: 20px;

    color: #1b2230;
}


.section-heading p,
.content-block p,
.route-grid p,
.contact-information p {
    color: #626b78;

    font-size: 17px;
}


/* =========================================
   TWO COLUMN
========================================= */

.two-column,
.route-grid,
.contact-grid {
    display: grid;

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

    align-items: center;

    gap: 65px;
}


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


.content-image,
.route-image {
    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);
}


.content-image img,
.route-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}


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


/* =========================================
   CHECK LIST
========================================= */

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

    display: grid;

    gap: 15px;
}


.check-list > div {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 16px;

    background: #f7f8fa;

    border-radius: 9px;
}


.check-list span {
    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #d71920;

    color: #ffffff;

    font-weight: 900;
}


.check-list p {
    margin: 0;
}


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

.process-grid {
    display: grid;

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

    gap: 20px;
}


.process-card {
    position: relative;

    background: #ffffff;

    padding: 32px 25px;

    border-radius: 13px;

    border:
        1px solid #eceff2;

    transition: 0.25s;
}


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

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.09);
}


.process-number {
    display: inline-block;

    color: #d71920;

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 25px;
}


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

    margin-bottom: 12px;
}


.process-card p {
    color: #69717d;

    font-size: 15px;
}


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

.city-links {
    display: grid;

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

    gap: 10px;

    margin-top: 28px;
}


.city-links a {
    display: flex;

    align-items: center;

    min-height: 52px;

    padding: 12px 16px;

    border:
        1px solid #e6e8ec;

    border-radius: 8px;

    color: #293241;

    font-weight: 700;

    transition: 0.25s;
}


.city-links a:hover {
    background: #d71920;

    color: #ffffff;

    border-color: #d71920;

    transform: translateY(-2px);
}


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

.cargo-types-grid {
    display: grid;

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

    gap: 22px;
}


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

    border:
        1px solid #eceef1;

    border-radius: 14px;

    background: #ffffff;

    transition: 0.25s;
}


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

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);
}


.cargo-icon {
    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    background: #fff0f0;

    color: #d71920;

    border-radius: 13px;

    font-size: 25px;

    margin-bottom: 22px;
}


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

    margin-bottom: 12px;
}


.cargo-types-grid p {
    color: #69717d;

    font-size: 15px;
}


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

.reviews-section {
    padding: 95px 0;

    background: #f6f7f9;
}


.reviews-grid {
    display: grid;

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

    gap: 22px;
}


.review-card {
    background: #ffffff;

    padding: 30px;

    border-radius: 14px;

    border:
        1px solid #ebedf0;
}


.review-top {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 20px;
}


.review-avatar {
    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #d71920;

    color: #ffffff;

    font-weight: 800;
}


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


.review-top span {
    font-size: 13px;

    color: #777f8a;
}


.stars {
    color: #f6ae2d;

    margin-bottom: 15px;

    letter-spacing: 2px;
}


.review-card p {
    color: #606976;

    font-style: italic;
}


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

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


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

    margin: 0 auto;

    display: grid;

    gap: 14px;
}


.faq-card {
    border:
        1px solid #e5e8ec;

    border-radius: 10px;

    padding: 0 22px;

    background: #ffffff;
}


.faq-card summary {
    padding: 20px 0;

    cursor: pointer;

    font-weight: 800;

    color: #242c38;
}


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

    color: #68717d;
}


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

.contact-section {
    padding: 95px 0;

    background: #171e2b;

    color: #ffffff;
}


.contact-information h2 {
    color: #ffffff;
}


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


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


.contact-list {
    display: grid;

    gap: 15px;

    margin-top: 30px;
}


.contact-list a {
    display: flex;

    flex-direction: column;

    padding: 18px 20px;

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

    border-radius: 9px;

    color: #ffffff;
}


.contact-list strong {
    font-size: 13px;

    color: #ff656b;

    margin-bottom: 4px;
}


/* =========================================
   FORM
========================================= */

.contact-form {
    background: #ffffff;

    color: #222a35;

    padding: 38px;

    border-radius: 15px;
}


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

    margin-bottom: 25px;
}


.contact-form label {
    display: grid;

    gap: 7px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 17px;
}


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

    border:
        1px solid #dfe3e8;

    border-radius: 7px;

    padding: 13px 14px;

    outline: none;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d71920;
}


.form-row {
    display: grid;

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

    gap: 15px;
}


.form-submit {
    width: 100%;

    min-height: 54px;

    border: none;

    border-radius: 7px;

    background: #25d366;

    color: #ffffff;

    font-weight: 800;

    cursor: pointer;

    transition: 0.25s;
}


.form-submit:hover {
    transform: translateY(-2px);
}


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

    text-align: center;

    color: #747d89;

    font-size: 12px;
}


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

.site-footer {
    background: #10151f;

    color: #ffffff;
}


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


.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 {
    color:
        rgba(255, 255, 255, 0.62);

    margin-bottom: 15px;

    font-size: 15px;
}


.footer-column h3 {
    font-size: 18px;

    margin-bottom: 20px;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


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

    font-size: 14px;

    transition: 0.2s;
}


.footer-column a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.footer-contact-boxes {
    display: grid;

    gap: 10px;

    margin-top: 24px;
}


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

    gap: 10px;

    align-items: center;

    color: #ffffff;

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

    padding: 13px 15px;

    border-radius: 7px;

    font-size: 14px;
}


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

.footer-cta {
    background: #d71920;

    padding: 40px 0;
}


.footer-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-cta span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


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

    margin-top: 7px;
}


.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: 52px;

    padding: 0 20px;

    border-radius: 7px;

    font-weight: 800;
}


.footer-call-button {
    background: #ffffff;

    color: #d71920;
}


.footer-whatsapp-button {
    background: #25d366;

    color: #ffffff;
}


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

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding: 22px 0;
}


.footer-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

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

    font-size: 13px;
}


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

    gap: 18px;
}


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


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

.floating-whatsapp {
    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 900;

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 24px;

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

    transition: 0.25s;
}


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


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

@media (max-width: 1100px) {


    .mobile-menu-toggle {
        display: flex;

        width: 46px;

        height: 46px;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 5px;

        border: none;

        background: #d71920;

        border-radius: 8px;

        cursor: pointer;

        margin-left: auto;
    }


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

        height: 2px;

        background: #ffffff;

        display: block;
    }


    .header-actions {
        display: none;
    }


    .main-nav {
        position: fixed;

        top: 0;

        right: 0;

        width: min(420px, 88vw);

        height: 100vh;

        background: #ffffff;

        z-index: 1200;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 20px;

        overflow-y: auto;

        transform: translateX(110%);

        transition: transform 0.3s ease;

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


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


    .mobile-nav-head {
        display: flex;

        align-items: center;

        justify-content: space-between;

        padding-bottom: 20px;

        margin-bottom: 10px;

        border-bottom:
            1px solid #eeeeee;

        font-size: 20px;
    }


    .mobile-menu-close {
        display: grid;

        place-items: center;

        width: 42px;

        height: 42px;

        border: none;

        background: #f1f2f4;

        border-radius: 50%;

        font-size: 28px;

        cursor: pointer;
    }


    .main-nav > a,
    .mega-toggle {
        width: 100%;

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 16px 5px;

        border-bottom:
            1px solid #eeeeee;

        font-size: 16px;
    }


    .nav-dropdown {
        width: 100%;
    }


    .mega-menu {
        position: static;

        transform: none;

        width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        box-shadow: none;

        border: none;

        padding: 15px 0;

        background: transparent;
    }


    .nav-dropdown:hover .mega-menu {
        transform: none;
    }


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


    .mega-menu-head {
        display: none;
    }


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

        gap: 7px;
    }


    .mega-menu-grid a {
        padding: 13px 15px;

        background: #f5f6f8;

        border-radius: 7px;
    }


    .mobile-contact {
        display: grid;

        gap: 10px;

        margin-top: 25px;
    }


    .mobile-contact a {
        display: flex;

        align-items: center;

        justify-content: center;

        min-height: 52px;

        border-radius: 7px;

        background: #d71920;

        color: #ffffff;

        font-weight: 800;
    }


    .mobile-contact a:last-child {
        background: #25d366;
    }


    .mobile-overlay {
        position: fixed;

        inset: 0;

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

        z-index: 1100;

        opacity: 0;

        visibility: hidden;

        transition: 0.3s;
    }


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

@media (max-width: 768px) {


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


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


    .logo img {
        width: 145px;
    }


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


    .inner-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(12, 18, 32, 0.93),
                rgba(12, 18, 32, 0.75)
            );
    }


    .breadcrumb {
        margin-bottom: 25px;
    }


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


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


    .button {
        width: 100%;
    }


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


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

        gap: 40px;
    }


    .route-image {
        order: 2;
    }


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


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


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


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


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

        gap: 35px;
    }


    .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 15px;
    }


    .floating-whatsapp {
        width: 54px;

        height: 54px;

        right: 15px;

        bottom: 15px;
    }

}


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

@media (max-width: 480px) {


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


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


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

}

/* =========================================
   MOBILE MENU INTERACTION FIX
   Existing HTML/JS state classes: .open
========================================= */
@media (max-width: 1100px) {
    .main-nav {
        z-index: 1200;
        pointer-events: none;
        visibility: hidden;
    }

    .main-nav.open {
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
    }

    .main-nav.open > a,
    .main-nav.open .mega-toggle,
    .main-nav.open .mega-menu a,
    .main-nav.open .mobile-contact a,
    .main-nav.open .mobile-menu-close {
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

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

    .mobile-overlay {
        pointer-events: none;
    }

    .mobile-overlay.active {
        pointer-events: auto;
    }
}