/* =========================================================
   TEMEL
========================================================= */

:root {

    --primary: #071b36;
    --primary-light: #0d2d59;

    --accent: #f5a623;
    --accent-dark: #df8d0b;

    --text: #182235;
    --muted: #667085;

    --light: #f6f8fb;
    --white: #ffffff;

    --border: #e7ebf0;

    --shadow:
        0 20px 60px rgba(7, 27, 54, 0.10);

    --radius: 18px;

}


* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

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

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

}


a {

    text-decoration: none;

    color: inherit;

}


ul {

    list-style: none;

}


.container {

    width: min(1180px, 92%);

    margin-inline: auto;

}


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

.topbar {

    background: var(--primary);

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

    font-size: 13px;

}


.topbar-inner {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.topbar-contact {

    display: flex;

    gap: 24px;

}


.topbar-contact a {

    color: white;

    transition: 0.25s;

}


.topbar-contact a:hover {

    color: var(--accent);

}


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

.site-header {

    background: white;

    position: relative;

    z-index: 100;

    box-shadow:
        0 8px 30px rgba(7, 27, 54, 0.05);

}


.nav-container {

    min-height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: max-content;

}


.logo-icon {

    width: 46px;
    height: 46px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background: var(--primary);

    color: var(--accent);

    font-size: 23px;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.logo-text strong {

    color: var(--primary);

    font-size: 19px;

    letter-spacing: 1px;

}


.logo-text small {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--muted);

    margin-top: 4px;

}


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

.main-nav > ul {

    display: flex;

    align-items: center;

    gap: 28px;

}


.main-nav > ul > li {

    position: relative;

}


.main-nav > ul > li > a {

    display: flex;

    align-items: center;

    gap: 5px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.25s;

}


.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {

    color: var(--accent-dark);

}


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

.mega-menu {

    position: absolute;

    top: calc(100% + 28px);

    left: 50%;

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

    width: 900px;

    padding: 28px;

    background: white;

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

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(7, 27, 54, 0.16);

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.1fr;

    gap: 25px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: 0.25s;

}


.has-mega-menu:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

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

}


.mega-column {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


.mega-title {

    font-size: 11px;

    font-weight: 800;

    color: var(--accent-dark);

    letter-spacing: 1.5px;

    margin-bottom: 8px;

}


.mega-column a {

    padding: 10px;

    border-radius: 10px;

    transition: 0.25s;

}


.mega-column a:hover {

    background: var(--light);

}


.mega-column strong {

    display: block;

    font-size: 13px;

}


.mega-column small {

    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;

}


.mega-feature {

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

    color: white;

    border-radius: 16px;

    padding: 28px;

}


.mega-feature span {

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mega-feature h3 {

    font-size: 20px;

    line-height: 1.35;

    margin: 12px 0;

}


.mega-feature p {

    font-size: 12px;

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

}


.mega-feature a {

    display: inline-block;

    margin-top: 18px;

    color: var(--accent);

    font-weight: 800;

    font-size: 13px;

}


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

.nav-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


.phone-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    font-weight: 800;

}


.phone-btn small {

    display: block;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 1px;

}


.whatsapp-btn {

    padding:
        11px
        18px;

    border-radius: 10px;

    background: var(--primary);

    color: white;

    font-size: 12px;

    font-weight: 800;

    transition: 0.25s;

}


.whatsapp-btn:hover {

    background: var(--accent-dark);

}


.mobile-menu-btn {

    display: none;

    border: 0;

    background: transparent;

    font-size: 25px;

}


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

.contact-hero {

    padding:
        85px
        0
        90px;

    background:
        linear-gradient(
            135deg,
            #071b36,
            #0d2d59
        );

    color: white;

}


.breadcrumb {

    display: flex;

    gap: 10px;

    font-size: 12px;

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

    margin-bottom: 45px;

}


.breadcrumb a {

    color: var(--accent);

}


.hero-content {

    max-width: 800px;

}


.section-kicker {

    display: inline-block;

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    margin-bottom: 14px;

}


.hero-content h1 {

    font-size:
        clamp(
            34px,
            5vw,
            62px
        );

    line-height: 1.15;

    max-width: 850px;

}


.hero-content h1 span {

    color: var(--accent);

}


.hero-content p {

    max-width: 700px;

    margin-top: 22px;

    font-size: 17px;

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

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.contact-section,
.service-contact-section {

    padding:
        100px
        0;

}


.form-section {

    padding:
        100px
        0;

    background: var(--light);

}


.section-heading {

    max-width: 680px;

    margin-bottom: 45px;

}


.section-heading.center {

    text-align: center;

    margin:
        0 auto
        45px;

}


.section-heading h2 {

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height: 1.2;

}


.section-heading p {

    color: var(--muted);

    margin-top: 15px;

}


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

.contact-grid {

    display: grid;

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

    gap: 22px;

}


.contact-card {

    display: block;

    padding: 34px;

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

    border-radius: var(--radius);

    background: white;

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border 0.25s;

}


.contact-card:hover {

    transform:
        translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.contact-card.featured {

    background: var(--primary);

    color: white;

    border-color: var(--primary);

}


.contact-icon {

    width: 54px;
    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: var(--light);

    font-size: 24px;

    margin-bottom: 24px;

}


.featured .contact-icon {

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

    color: var(--accent);

}


.contact-card > span {

    display: block;

    font-size: 10px;

    font-weight: 800;

    color: var(--muted);

    letter-spacing: 1.4px;

}


.featured > span {

    color: var(--accent);

}


.contact-card strong {

    display: block;

    margin-top: 8px;

    font-size: 19px;

    word-break: break-word;

}


.contact-card p {

    color: var(--muted);

    font-size: 13px;

    margin:
        12px
        0
        22px;

}


.featured p {

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

}


.contact-card b {

    font-size: 12px;

    color: var(--accent-dark);

}


.featured b {

    color: var(--accent);

}


.email-address {

    font-size: 16px !important;

}


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

.form-layout {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 70px;

    align-items: center;

}


.form-intro h2 {

    font-size:
        clamp(
            32px,
            4vw,
            48px
        );

    line-height: 1.2;

}


.form-intro > p {

    color: var(--muted);

    margin-top: 20px;

}


.contact-highlights {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 24px;

}


.contact-highlights > div {

    display: flex;

    gap: 16px;

}


.contact-highlights > div > span {

    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--primary);

    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

}


.contact-highlights strong {

    font-size: 14px;

}


.contact-highlights p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 3px;

}


.contact-form-box {

    background: white;

    padding: 38px;

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.form-row {

    display: grid;

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

    gap: 18px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 7px;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

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

    border-radius: 10px;

    padding:
        13px
        15px;

    font-family: inherit;

    color: var(--text);

    outline: none;

    transition: 0.2s;

    background: white;

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--accent);

    box-shadow:
        0 0 0 4px
        rgba(245, 166, 35, 0.10);

}


.submit-btn {

    width: 100%;

    border: 0;

    padding: 16px;

    border-radius: 11px;

    background: var(--primary);

    color: white;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.25s;

}


.submit-btn:hover {

    background: var(--accent-dark);

    transform:
        translateY(-2px);

}


.submit-btn span {

    margin-left: 8px;

}


.form-note {

    text-align: center;

    font-size: 10px;

    color: var(--muted);

    margin-top: 14px;

}


/* =========================================================
   SERVICE LINKS
========================================================= */

.service-links {

    display: grid;

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

    gap: 16px;

}


.service-links a {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

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

    border-radius: 14px;

    transition: 0.25s;

}


.service-links a:hover {

    border-color: var(--accent);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px rgba(7, 27, 54, 0.08);

}


.service-links > a > span {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    background: var(--light);

    border-radius: 12px;

    font-size: 21px;

}


.service-links strong {

    display: block;

    font-size: 13px;

}


.service-links small {

    display: block;

    font-size: 11px;

    color: var(--muted);

}


.service-links b {

    margin-left: auto;

    color: var(--accent-dark);

}


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

.final-cta {

    padding:
        80px
        0;

    background: var(--primary);

    color: white;

}


.final-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.final-cta span {

    font-size: 10px;

    color: var(--accent);

    font-weight: 800;

    letter-spacing: 1.5px;

}


.final-cta h2 {

    max-width: 700px;

    font-size:
        clamp(
            28px,
            4vw,
            45px
        );

    line-height: 1.2;

    margin-top: 10px;

}


.final-cta p {

    max-width: 650px;

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

    margin-top: 15px;

}


.cta-buttons {

    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 210px;

}


.cta-buttons a {

    text-align: center;

    padding: 14px 20px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

}


.cta-call {

    background: var(--accent);

    color: var(--primary);

}


.cta-whatsapp {

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

}


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

.site-footer {

    background: #051326;

    color: white;

    padding-top: 75px;

}


.footer-grid {

    display: grid;

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

    gap: 50px;

    padding-bottom: 60px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-logo .logo-icon {

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

}


.footer-logo strong {

    display: block;

    font-size: 17px;

}


.footer-logo small {

    display: block;

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

    font-size: 9px;

    letter-spacing: 1.2px;

}


.footer-about > p {

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

    font-size: 13px;

    margin:
        22px
        0;

}


.footer-contact-mini {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.footer-contact-mini a {

    font-size: 12px;

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

}


.footer-column h3 {

    font-size: 13px;

    margin-bottom: 20px;

}


.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column a {

    font-size: 12px;

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

    transition: 0.2s;

}


.footer-column a:hover {

    color: var(--accent);

}


.footer-bottom {

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

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

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

    font-size: 11px;

}


.footer-bottom div {

    display: flex;

    gap: 20px;

}


.footer-bottom a:hover {

    color: white;

}


/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {

    .main-nav {

        display: none;

    }

    .mobile-menu-btn {

        display: flex;

    }

}
    .mega-menu {

        display: none;

    }

    .contact-grid {

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

    }

    .service-links {

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

    }

    .footer-grid {

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

    }

}


@media (max-width: 850px) {

    .topbar {

        display: none;

    }

    .phone-btn {

        display: none;

    }

    .form-layout {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .final-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

    .cta-buttons {

        width: 100%;

        flex-direction: row;

    }

    .cta-buttons a {

        flex: 1;

    }

}


@media (max-width: 650px) {

    .nav-container {

        min-height: 72px;

    }

    .whatsapp-btn {

        display: none;

    }

    .contact-hero {

        padding:
            60px
            0
            70px;

    }

    .contact-section,
    .form-section,
    .service-contact-section {

        padding:
            70px
            0;

    }

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

    .contact-form-box {

        padding: 22px;

    }

    .service-links {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-bottom {

        padding:
            25px
            0;

        flex-direction: column;

        align-items: flex-start;

    }

    .cta-buttons {

        flex-direction: column;

    }

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

.mobile-menu {

    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 88%);

    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    transform: translateX(105%);

    transition: transform 0.35s ease;

    overflow-y: auto;

    box-shadow:
        -20px 0 60px rgba(7, 27, 54, 0.18);

}


.mobile-menu.active {

    transform: translateX(0);

}


.mobile-menu-inner {

    min-height: 100%;

    display: flex;

    flex-direction: column;

}


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

.mobile-menu-top {

    min-height: 82px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

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

}


.mobile-logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.mobile-logo .logo-icon {

    width: 42px;
    height: 42px;

}


.mobile-close {

    width: 42px;
    height: 42px;

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

    border-radius: 10px;

    background: var(--white);

    color: var(--primary);

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    transition: 0.25s;

}


.mobile-close:hover {

    background: var(--primary);

    color: var(--white);

}


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

.mobile-navigation {

    padding: 15px 20px;

}


.mobile-navigation > a {

    min-height: 55px;

    display: flex;

    align-items: center;

    padding: 0 15px;

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

    font-size: 14px;

    font-weight: 800;

    color: var(--primary);

    transition: 0.25s;

}


.mobile-navigation > a:hover,
.mobile-navigation > a.active {

    color: var(--accent-dark);

}


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

.mobile-menu-group {

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

}


.mobile-dropdown-btn {

    width: 100%;

    min-height: 55px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 0;

    background: transparent;

    color: var(--primary);

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

}


.dropdown-arrow {

    width: 26px;
    height: 26px;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background: var(--light);

    color: var(--accent-dark);

    font-size: 20px;

    line-height: 1;

    transition: 0.25s;

}


.mobile-menu-group.active .dropdown-arrow {

    transform: rotate(45deg);

    background: var(--primary);

    color: var(--accent);

}


.mobile-dropdown {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.25s ease;

}


.mobile-menu-group.active .mobile-dropdown {

    max-height: 500px;

    opacity: 1;

    padding-bottom: 12px;

}


.mobile-dropdown a {

    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 45px;

    padding: 0 15px;

    margin-left: 10px;

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

    color: var(--muted);

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s;

}


.mobile-dropdown a:hover {

    border-left-color: var(--accent);

    color: var(--primary);

    background: var(--light);

}


.mobile-dropdown a span {

    width: 25px;

    text-align: center;

}


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

.mobile-contact {

    margin-top: auto;

    padding: 25px 20px;

    background: var(--primary);

}


.mobile-contact > p {

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mobile-phone {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    margin-bottom: 12px;

    border-radius: 12px;

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

    color: white;

}


.mobile-phone > span {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(245, 166, 35, 0.15);

    color: var(--accent);

    font-size: 20px;

}


.mobile-phone small {

    display: block;

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

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

}


.mobile-phone strong {

    display: block;

    margin-top: 2px;

    font-size: 16px;

}


.mobile-whatsapp {

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--accent);

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

}


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

.mobile-overlay {

    position: fixed;

    inset: 0;

    background:
        rgba(3, 14, 29, 0.55);

    z-index: 9998;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

}


.mobile-overlay.active {

    opacity: 1;

    visibility: visible;

}


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

.mobile-menu-btn {

    width: 46px;
    height: 46px;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

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

    border-radius: 10px;

    background: white;

    cursor: pointer;

}


.mobile-menu-btn span {

    display: block;

    width: 21px;
    height: 2px;

    border-radius: 2px;

    background: var(--primary);

    transition: 0.25s;

}


.mobile-menu-btn.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.mobile-menu-btn.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-btn.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   BODY LOCK
========================================================= */

body.menu-open {

    overflow: hidden;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .mobile-menu-btn {

        display: flex;

    }

}


@media (min-width: 1101px) {

    .mobile-menu,
    .mobile-overlay {

        display: none !important;

    }

}
/* =========================================================
   VIP KARGO KURYE
   MOBIL MENU - GUARANTEED STRUCTURE
========================================================= */


/* MOBIL MENU BUTTON */

.mobile-menu-btn {

    display: none;

    width: 48px;
    height: 48px;

    border: 1px solid #e4e8ed;

    border-radius: 10px;

    background: #ffffff;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    padding: 0;

}


.mobile-menu-btn span {

    display: block;

    width: 22px;
    height: 2px;

    background: #071b36;

    border-radius: 10px;

    transition: 0.3s ease;

}


/* OVERLAY */

.mobile-menu-overlay {

    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;

    height: 100vh;

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

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: 0.3s ease;

    z-index: 9998;

}


.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* MENU PANEL */

.mobile-menu-panel {

    position: fixed;

    top: 0;
    right: 0;

    width: 380px;

    max-width: 88%;

    height: 100vh;

    background: #ffffff;

    transform: translateX(100%);

    transition: transform 0.35s ease;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    overflow-y: auto;

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

}


.mobile-menu-panel.active {

    transform: translateX(0);

}


/* HEADER */

.mobile-menu-header {

    min-height: 82px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #edf0f3;

}


.mobile-menu-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

}


.mobile-logo-icon {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #071b36;

    color: #f5a623;

    border-radius: 10px;

    font-size: 22px;

}


.mobile-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.mobile-logo-text strong {

    color: #071b36;

    font-size: 20px;

    font-weight: 800;

}


.mobile-logo-text span {

    margin-top: 4px;

    color: #6d7782;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mobile-menu-close {

    width: 42px;
    height: 42px;

    border: 1px solid #e4e8ed;

    border-radius: 10px;

    background: #ffffff;

    color: #071b36;

    font-size: 30px;

    cursor: pointer;

    line-height: 1;

}


/* NAVIGATION */

.mobile-menu-navigation {

    width: 100%;

    padding: 15px 20px;

}


.mobile-menu-navigation > a {

    display: flex;

    align-items: center;

    min-height: 56px;

    padding: 0 15px;

    color: #071b36;

    border-bottom: 1px solid #edf0f3;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

}


.mobile-menu-navigation > a.mobile-active {

    color: #d98c00;

}


/* SERVICES */

.mobile-services {

    border-bottom: 1px solid #edf0f3;

}


.mobile-services-button {

    width: 100%;

    min-height: 56px;

    padding: 0 15px;

    border: 0;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #071b36;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

}


.mobile-services-plus {

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f3f6f8;

    color: #071b36;

    border-radius: 7px;

    font-size: 20px;

    transition: 0.3s ease;

}


.mobile-services.open .mobile-services-plus {

    transform: rotate(45deg);

    background: #071b36;

    color: #f5a623;

}


/* SERVICES LIST */

.mobile-services-list {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;

}


.mobile-services.open .mobile-services-list {

    max-height: 500px;

    opacity: 1;

    padding-bottom: 12px;

}


.mobile-services-list a {

    display: block;

    padding: 12px 15px 12px 30px;

    margin-left: 15px;

    color: #66717c;

    border-left: 2px solid #e4e8ed;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

}


.mobile-services-list a:hover {

    color: #071b36;

    border-left-color: #f5a623;

}


/* BOTTOM CONTACT */

.mobile-menu-bottom {

    margin-top: auto;

    padding: 25px 20px;

    background: #071b36;

}


.mobile-menu-contact-title {

    margin-bottom: 15px;

    color: #f5a623;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mobile-menu-phone {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    margin-bottom: 12px;

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

    border-radius: 10px;

    color: #ffffff;

    text-decoration: none;

}


.phone-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(245, 166, 35, 0.15);

    color: #f5a623;

}


.mobile-menu-phone small {

    display: block;

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

    font-size: 9px;

    letter-spacing: 1px;

}


.mobile-menu-phone strong {

    display: block;

    margin-top: 3px;

    font-size: 16px;

}


.mobile-menu-whatsapp {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    background: #f5a623;

    border-radius: 10px;

    color: #071b36;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


/* BODY LOCK */

body.mobile-menu-open {

    overflow: hidden;

}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .main-nav {

        display: none !important;

    }


    .mobile-menu-btn {

        display: flex !important;

    }

}


@media (min-width: 1101px) {

    .mobile-menu-panel,
    .mobile-menu-overlay {

        display: none !important;

    }

}