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

:root {

    --primary: #071b36;

    --primary-light: #102b50;

    --accent: #f5a623;

    --accent-dark: #d88b00;

    --white: #ffffff;

    --light: #f5f7fa;

    --soft: #eef2f6;

    --text: #182431;

    --muted: #66717c;

    --border: #e4e9ee;

    --success: #16a06d;

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

}


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

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

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

    background: var(--white);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;

}


body.mobile-menu-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


img {

    max-width: 100%;

    display: block;

}


button {

    font: inherit;

}


.container {

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

    margin: 0 auto;

}


.section {

    padding: 110px 0;

}


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

.top-bar {

    background: #051426;

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

    font-size: 12px;

}


.top-bar-inner {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.top-bar-contact {

    display: flex;

    align-items: center;

    gap: 25px;

}


.top-bar-contact a {

    transition: 0.25s ease;

}


.top-bar-contact a:hover {

    color: var(--accent);

}


.top-bar-contact span {

    color: var(--accent);

    margin-right: 5px;

}


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

.site-header {

    position: relative;

    z-index: 1000;

    background: var(--white);

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

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.brand-icon {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: var(--primary);

    color: var(--accent);

    font-size: 22px;

    box-shadow:
        0 8px 25px rgba(7, 27, 54, 0.18);

}


.brand-content {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-content strong {

    color: var(--primary);

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -1px;

}


.brand-content span {

    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


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

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.main-nav > a {

    position: relative;

    padding: 30px 0;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}


.main-nav > a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 2px;

    background: var(--accent);

    transition: 0.25s ease;

}


.main-nav > a:hover::after {

    width: 100%;

}


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

.nav-dropdown {

    position: relative;

}


.nav-dropdown-button {

    display: flex;

    align-items: center;

    gap: 7px;

    border: 0;

    background: transparent;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    padding: 30px 0;

}


.nav-dropdown-button span {

    font-size: 11px;

}


.mega-menu {

    position: absolute;

    top: calc(100% - 10px);

    left: 50%;

    width: 760px;

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

    display: grid;

    grid-template-columns: 280px 1fr;

    background: var(--white);

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

    border-radius: 18px;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: 0.25s ease;

    box-shadow: var(--shadow);

}


.nav-dropdown:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

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

}


.mega-menu-intro {

    padding: 35px;

    background: var(--primary);

    color: var(--white);

}


.mega-label {

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mega-menu-intro h3 {

    margin-top: 15px;

    font-size: 22px;

    line-height: 1.3;

}


.mega-menu-intro p {

    margin-top: 14px;

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

    font-size: 12px;

    line-height: 1.7;

}


.mega-menu-intro a {

    display: inline-flex;

    margin-top: 20px;

    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

}


.mega-menu-links {

    display: grid;

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

    padding: 20px;

}


.mega-menu-links a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border-radius: 10px;

    transition: 0.2s ease;

}


.mega-menu-links a:hover,
.mega-menu-links a.mega-active {

    background: var(--light);

}


.mega-icon {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background: var(--soft);

}


.mega-menu-links strong {

    display: block;

    color: var(--primary);

    font-size: 12px;

}


.mega-menu-links small {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;

}


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

.header-action {

    display: flex;

    align-items: center;

    gap: 18px;

}


.header-phone {

    display: flex;

    align-items: center;

    gap: 9px;

}


.header-phone > span {

    color: var(--accent);

    font-size: 20px;

}


.header-phone small {

    display: block;

    color: var(--muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.header-phone strong {

    display: block;

    color: var(--primary);

    font-size: 13px;

}


.header-cta {

    padding: 13px 20px;

    border-radius: 8px;

    background: var(--primary);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

    transition: 0.25s ease;

}


.header-cta:hover {

    background: var(--accent);

    color: var(--primary);

}


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

.hero-section {

    position: relative;

    overflow: hidden;

    padding: 90px 0 100px;

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

}


.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.06;

    background-image:
        radial-gradient(
            var(--white) 1px,
            transparent 1px
        );

    background-size: 22px 22px;

}


.hero-grid {

    position: relative;

    display: grid;

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

    align-items: center;

    gap: 70px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border: 1px solid rgba(245, 166, 35, 0.30);

    border-radius: 30px;

    color: var(--accent);

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.hero-badge span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--accent);

}


.hero-content h1 {

    max-width: 760px;

    margin-top: 20px;

    color: var(--white);

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.12;

    letter-spacing: -2.5px;

}


.hero-content > p {

    max-width: 690px;

    margin-top: 25px;

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

    font-size: 15px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;

}


.btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 800;

    transition: 0.25s ease;

}


.btn-primary {

    background: var(--accent);

    color: var(--primary);

}


.btn-primary:hover {

    transform: translateY(-2px);

    background: var(--white);

}


.btn-outline {

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

    color: var(--white);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--primary);

}


.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 42px;

}


.hero-features div {

    position: relative;

    padding-left: 15px;

}


.hero-features div::before {

    content: "";

    position: absolute;

    left: 0;

    top: 5px;

    width: 3px;

    height: 35px;

    background: var(--accent);

}


.hero-features strong {

    display: block;

    color: var(--white);

    font-size: 11px;

}


.hero-features span {

    display: block;

    margin-top: 4px;

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

    font-size: 10px;

}


/* HERO IMAGE */

.hero-image-wrap {

    position: relative;

}


.hero-image-card {

    overflow: hidden;

    border-radius: 20px;

    border: 8px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);

}


.hero-image-card img {

    width: 100%;

    height: 520px;

    object-fit: cover;

}


.hero-floating-card {

    position: absolute;

    left: -35px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);

}


.floating-icon {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background: var(--soft);

}


.hero-floating-card small {

    display: block;

    color: var(--muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.hero-floating-card strong {

    display: block;

    margin-top: 3px;

    color: var(--primary);

    font-size: 12px;

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-kicker {

    display: inline-block;

    color: var(--accent-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.section-heading h2 {

    max-width: 720px;

    margin-top: 14px;

    color: var(--primary);

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

    line-height: 1.2;

    letter-spacing: -1.5px;

}


.section-heading p {

    max-width: 700px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

}


.section-heading.center {

    text-align: center;

}


.section-heading.center h2,
.section-heading.center p {

    margin-left: auto;

    margin-right: auto;

}


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

.intro-section {

    background: var(--white);

}


.two-column {

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    align-items: center;

    gap: 90px;

}


.intro-card {

    padding: 40px;

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

    border-radius: 18px;

    background: var(--light);

}


.intro-card-top {

    display: flex;

    align-items: center;

    gap: 10px;

}


.intro-card-top span {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: var(--primary);

    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

}


.intro-card-top small {

    color: var(--muted);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.intro-card h3 {

    margin-top: 25px;

    color: var(--primary);

    font-size: 24px;

    line-height: 1.35;

}


.intro-card ul {

    list-style: none;

    margin-top: 25px;

}


.intro-card li {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 0;

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

    color: var(--muted);

    font-size: 12px;

}


.intro-card li:last-child {

    border-bottom: 0;

}


.intro-card li span {

    width: 24px;

    height: 24px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: rgba(22, 160, 109, 0.12);

    color: var(--success);

    font-size: 11px;

}


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

.service-section {

    background: var(--light);

}


.service-grid {

    display: grid;

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

    gap: 20px;

    margin-top: 55px;

}


.service-card {

    position: relative;

    min-height: 350px;

    padding: 32px;

    background: var(--white);

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

    border-radius: 16px;

    transition: 0.3s ease;

}


.service-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(245, 166, 35, 0.5);

    box-shadow: var(--shadow);

}


.service-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: #d9e0e7;

    font-size: 12px;

    font-weight: 800;

}


.service-icon {

    width: 54px;

    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--soft);

    font-size: 24px;

}


.service-card h3 {

    margin-top: 25px;

    color: var(--primary);

    font-size: 18px;

    line-height: 1.4;

}


.service-card p {

    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;

}


.service-card a {

    position: absolute;

    bottom: 30px;

    color: var(--accent-dark);

    font-size: 11px;

    font-weight: 800;

}


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

.process-section {

    background: var(--primary);

}


.process-layout {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;

}


.process-content .section-kicker {

    color: var(--accent);

}


.process-content h2 {

    margin-top: 15px;

    color: var(--white);

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

    line-height: 1.2;

}


.process-content p {

    margin-top: 20px;

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

    font-size: 14px;

}


.process-steps {

    display: grid;

    gap: 16px;

}


.process-step {

    display: flex;

    gap: 25px;

    padding: 25px;

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

    border-radius: 12px;

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

}


.process-step > span {

    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

}


.process-step h3 {

    color: var(--white);

    font-size: 15px;

}


.process-step p {

    margin-top: 5px;

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

    font-size: 12px;

}


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

.shipment-grid {

    display: grid;

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

    gap: 15px;

    margin-top: 50px;

}


.shipment-item {

    min-height: 90px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

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

    border-radius: 12px;

    background: var(--white);

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    transition: 0.25s ease;

}


.shipment-item:hover {

    transform: translateY(-3px);

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

}


.shipment-item span {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: var(--light);

    font-size: 21px;

}


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

.advantage-section {

    background: var(--light);

}


.advantage-grid {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;

}


.advantage-main h2 {

    margin-top: 15px;

    color: var(--primary);

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

    line-height: 1.2;

}


.advantage-main p {

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

}


.advantage-main .btn {

    margin-top: 30px;

}


.advantage-list {

    display: grid;

    gap: 15px;

}


.advantage-item {

    display: flex;

    gap: 20px;

    padding: 24px;

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

    border-radius: 12px;

    background: var(--white);

}


.advantage-item > div:first-child {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 8px;

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

    color: var(--accent-dark);

    font-size: 13px;

    font-weight: 800;

}


.advantage-item h3 {

    color: var(--primary);

    font-size: 15px;

}


.advantage-item p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;

}


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

.cta-section {

    padding: 0 0 110px;

    background: var(--light);

}


.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 55px 60px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #0e315c
        );

}


.cta-box > div:first-child {

    max-width: 700px;

}


.cta-box span {

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.cta-box h2 {

    margin-top: 12px;

    color: var(--white);

    font-size: 32px;

    line-height: 1.3;

}


.cta-box p {

    margin-top: 12px;

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

    font-size: 13px;

}


.cta-actions {

    min-width: 190px;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.cta-phone {

    padding: 14px;

    text-align: center;

    color: var(--white);

    font-size: 16px;

    font-weight: 800;

}


.cta-button {

    min-height: 50px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background: var(--accent);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

}


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

.faq-container {

    max-width: 900px;

}


.faq-list {

    margin-top: 50px;

}


.faq-list details {

    margin-bottom: 12px;

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

    border-radius: 10px;

    background: var(--white);

}


.faq-list summary {

    position: relative;

    padding: 20px 55px 20px 22px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    list-style: none;

}


.faq-list summary::-webkit-details-marker {

    display: none;

}


.faq-list summary::after {

    content: "+";

    position: absolute;

    top: 50%;

    right: 22px;

    transform: translateY(-50%);

    color: var(--accent-dark);

    font-size: 22px;

    font-weight: 500;

}


.faq-list details[open] summary::after {

    content: "−";

}


.faq-list details p {

    padding:
        0 22px 22px;

    color: var(--muted);

    font-size: 13px;

}


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

.site-footer {

    background: #051426;

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

}


.footer-top {

    padding: 80px 0 60px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr;

    gap: 50px;

}


.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

}


.footer-brand .brand-content strong {

    color: var(--white);

}


.footer-brand .brand-content span {

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

}


.footer-about p {

    max-width: 330px;

    margin-top: 20px;

    font-size: 12px;

}


.footer-phone {

    display: inline-flex;

    flex-direction: column;

    margin-top: 25px;

    color: var(--white);

    font-size: 19px;

    font-weight: 800;

}


.footer-phone span {

    margin-bottom: 4px;

    color: var(--accent);

    font-size: 9px;

    letter-spacing: 1.5px;

}


.footer-column h3 {

    margin-bottom: 20px;

    color: var(--white);

    font-size: 14px;

}


.footer-column ul {

    list-style: none;

}


.footer-column li {

    margin-bottom: 10px;

    font-size: 12px;

}


.footer-column a {

    transition: 0.2s ease;

}


.footer-column a:hover {

    color: var(--accent);

}


.footer-contact li {

    display: flex;

    align-items: center;

    gap: 8px;

}


.footer-contact li > span {

    color: var(--accent);

}


.footer-whatsapp {

    display: inline-flex;

    margin-top: 18px;

    padding: 12px 16px;

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

    border-radius: 7px;

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

}


.footer-bottom {

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

}


.footer-bottom-inner {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 10px;

}


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

.mobile-menu-btn {

    display: none;

    width: 46px;

    height: 46px;

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

    border-radius: 9px;

    background: var(--white);

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}


.mobile-menu-btn span {

    width: 22px;

    height: 2px;

    border-radius: 2px;

    background: var(--primary);

}


.mobile-menu-overlay {

    position: fixed;

    inset: 0;

    z-index: 9998;

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

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: 0.3s ease;

}


.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


.mobile-menu-panel {

    position: fixed;

    top: 0;

    right: 0;

    z-index: 9999;

    width: 380px;

    max-width: 90%;

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: var(--white);

    transform: translateX(105%);

    transition: transform 0.35s ease;

    overflow-y: auto;

    box-shadow:
        -20px 0 70px rgba(0, 0, 0, 0.25);

}


.mobile-menu-panel.active {

    transform: translateX(0);

}


.mobile-menu-header {

    min-height: 82px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

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

}


.mobile-menu-logo {

    display: flex;

    align-items: center;

    gap: 10px;

}


.mobile-logo-icon {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: var(--primary);

    color: var(--accent);

}


.mobile-logo-text {

    display: flex;

    flex-direction: column;

}


.mobile-logo-text strong {

    color: var(--primary);

    font-size: 20px;

    line-height: 1;

}


.mobile-logo-text span {

    margin-top: 4px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mobile-menu-close {

    width: 42px;

    height: 42px;

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

    border-radius: 8px;

    background: var(--white);

    color: var(--primary);

    font-size: 27px;

    cursor: pointer;

}


.mobile-menu-navigation {

    padding: 15px 20px;

}


.mobile-menu-navigation > a {

    min-height: 55px;

    display: flex;

    align-items: center;

    padding: 0 15px;

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

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

}


.mobile-services {

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

}


.mobile-services-button {

    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 15px;

    border: 0;

    background: transparent;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

}


.mobile-services-plus {

    width: 26px;

    height: 26px;

    display: grid;

    place-items: center;

    border-radius: 6px;

    background: var(--soft);

    font-size: 19px;

    transition: 0.25s ease;

}


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

    transform: rotate(45deg);

    background: var(--primary);

    color: var(--accent);

}


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

}


.mobile-services-list a {

    display: block;

    margin-left: 15px;

    padding: 11px 15px;

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

    color: var(--muted);

    font-size: 12px;

    font-weight: 700;

}


.mobile-menu-bottom {

    margin-top: auto;

    padding: 25px 20px;

    background: var(--primary);

}


.mobile-menu-bottom > p {

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.mobile-menu-phone {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    margin-bottom: 12px;

    border-radius: 10px;

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

    color: var(--white);

}


.mobile-menu-phone > span {

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 8px;

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

    color: var(--accent);

}


.mobile-menu-phone small {

    display: block;

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

    font-size: 8px;

}


.mobile-menu-phone strong {

    display: block;

    margin-top: 3px;

    font-size: 15px;

}


.mobile-whatsapp {

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: var(--accent);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

}


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

@media (max-width: 1100px) {

    .main-nav {

        display: none;

    }


    .header-action {

        margin-left: auto;

    }


    .mobile-menu-btn {

        display: flex;

    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .hero-image-wrap {

        max-width: 650px;

        width: 100%;

        margin: 0 auto;

    }


    .service-grid {

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

    }


    .footer-grid {

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

    }

}


@media (max-width: 800px) {

    .section {

        padding: 75px 0;

    }


    .top-bar-inner {

        justify-content: center;

    }


    .top-bar-inner > p {

        display: none;

    }


    .two-column {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .process-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .advantage-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .shipment-grid {

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

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 40px;

    }


    .cta-actions {

        width: 100%;

    }

}


@media (max-width: 600px) {

    .container {

        width: min(100% - 30px, 1180px);

    }


    .top-bar {

        display: none;

    }


    .site-header {

        position: relative;

    }


    .header-inner {

        min-height: 72px;

    }


    .header-phone,
    .header-cta {

        display: none;

    }


    .hero-section {

        padding: 65px 0 70px;

    }


    .hero-content h1 {

        font-size: 38px;

        letter-spacing: -1.5px;

    }


    .hero-content > p {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .hero-features {

        gap: 20px;

    }


    .hero-image-card img {

        height: 360px;

    }


    .hero-floating-card {

        left: 15px;

        right: 15px;

        bottom: -25px;

    }


    .section-heading h2 {

        font-size: 31px;

    }


    .intro-card {

        padding: 28px;

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 320px;

    }


    .shipment-grid {

        grid-template-columns: 1fr;

    }


    .process-step {

        gap: 15px;

        padding: 20px;

    }


    .advantage-main h2 {

        font-size: 32px;

    }


    .cta-box {

        padding: 30px 25px;

    }


    .cta-box h2 {

        font-size: 27px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom-inner {

        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        text-align: center;

    }


    .mobile-menu-panel {

        max-width: 92%;

    }

}