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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: #f7f7f5;
    color: #17191c;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 110px 0;
}


/* =========================
   COLORS
========================= */

:root {
    --orange: #ff6b00;
    --orange-light: #ff8a2a;
    --black: #101214;
    --dark: #17191c;
    --gray: #73777c;
    --light: #f7f7f5;
    --white: #ffffff;
    --border: #e7e7e5;
}


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

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    height: 82px;

    background: rgba(16, 18, 20, 0.95);

    backdrop-filter: blur(15px);

    z-index: 1000;

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

.header-content {
    height: 100%;

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


/* LOGO */

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

.logo-mark {
    width: 45px;
    height: 45px;

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

    border-radius: 12px;

    position: relative;

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

    transform: rotate(-8deg);
}

.logo-mark span {
    position: absolute;

    width: 22px;
    height: 4px;

    background: var(--orange);

    border-radius: 20px;

    transform: rotate(8deg);
}

.logo-mark span:nth-child(1) {
    top: 12px;
}

.logo-mark span:nth-child(2) {
    top: 20px;
    width: 28px;
}

.logo-mark span:nth-child(3) {
    top: 28px;
    width: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: white;
    font-size: 17px;
    font-weight: 800;
}

.logo-text small {
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
}


/* NAV */

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar a {
    color: #d5d5d5;
    font-size: 13px;
    font-weight: 600;

    position: relative;

    transition: 0.3s;
}

.navbar a::after {
    content: "";

    position: absolute;

    bottom: -10px;
    right: 0;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: white;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}


/* HEADER BUTTONS */

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

.header-whatsapp {
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: white;

    padding: 9px 16px;

    border-radius: 30px;

    font-size: 12px;

    transition: 0.3s;
}

.header-whatsapp:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    background: var(--orange);

    padding: 9px 15px;

    border-radius: 30px;

    color: white;

    font-size: 11px;
}

.header-phone b {
    background: white;
    color: var(--orange);

    padding: 3px 7px;

    border-radius: 20px;

    font-size: 10px;
}


/* MENU */

.menu-btn {
    display: none;

    width: 45px;
    height: 45px;

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

    background: transparent;

    border-radius: 10px;

    cursor: pointer;
}

.menu-btn span {
    display: block;

    width: 22px;
    height: 2px;

    background: white;

    margin: 5px auto;

    transition: 0.3s;
}


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

.hero {
    min-height: 850px;

    padding-top: 82px;

    position: relative;

    background:
        radial-gradient(circle at 85% 30%,
            rgba(255, 107, 0, 0.16),
            transparent 30%),
        radial-gradient(circle at 20% 80%,
            rgba(255, 107, 0, 0.08),
            transparent 25%),
        #101214;

    color: white;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(#fff 1px, transparent 1px),
        linear-gradient(90deg, #fff 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom,
            black,
            transparent);
}


/* SHAPES */

.hero-shape {
    position: absolute;

    border: 1px solid rgba(255, 107, 0, 0.2);

    border-radius: 50%;
}

.shape-one {
    width: 600px;
    height: 600px;

    left: -300px;
    bottom: -300px;
}

.shape-two {
    width: 350px;
    height: 350px;

    right: -150px;
    top: 150px;
}

.shape-three {
    width: 160px;
    height: 160px;

    right: 45%;
    top: 170px;

    border-color: rgba(255, 255, 255, 0.1);
}


/* HERO GRID */

.hero-grid {
    min-height: 680px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    position: relative;

    z-index: 2;
}


/* HERO TEXT */

.hero-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffad70;

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

    padding: 7px 13px;

    border-radius: 30px;

    font-size: 12px;

    margin-bottom: 25px;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.1);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-content>p {
    max-width: 560px;

    color: #aeb1b5;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 30px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-bottom: 45px;
}

.btn {
    min-width: 145px;

    padding: 14px 22px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    transition: 0.3s;
}

.btn-primary {
    background: var(--orange);
    color: white;

    box-shadow:
        0 15px 35px rgba(255, 107, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-4px);

    background: var(--orange-light);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: white;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}


/* NUMBERS */

.hero-numbers {
    display: flex;
    gap: 35px;
}

.hero-numbers div {
    display: flex;
    flex-direction: column;

    border-right: 1px solid rgba(255, 255, 255, 0.15);

    padding-right: 25px;
}

.hero-numbers div:first-child {
    border-right: 0;
    padding-right: 0;
}

.hero-numbers strong {
    color: white;
    font-size: 25px;
}

.hero-numbers span {
    color: #777b80;
    font-size: 10px;
}


/* HERO VISUAL */

.hero-visual {
    min-height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-circle {
    width: 440px;
    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 107, 0, 0.2),
            rgba(255, 107, 0, 0.02) 65%,
            transparent 70%);

    border: 1px solid rgba(255, 107, 0, 0.2);

    position: absolute;
}


/* TRUCK */

.truck-card {
    width: 430px;
    height: 310px;

    background:
        linear-gradient(135deg,
            #292d31,
            #151719);

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

    border-radius: 25px;

    padding: 25px;

    position: relative;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.5);

    transform: rotate(-5deg);

    z-index: 2;
}

.truck-top,
.truck-bottom {
    display: flex;

    justify-content: space-between;

    color: #777;

    font-size: 11px;
}

.truck-top span {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: 2px;
}

.truck-icon {
    position: absolute;

    left: 45px;
    right: 45px;

    top: 80px;

    height: 150px;
}

.truck-body {
    position: relative;

    height: 90px;

    top: 25px;
}

.truck-box {
    width: 250px;
    height: 85px;

    background:
        linear-gradient(145deg,
            #f2f2f2,
            #cfcfcf);

    border-radius: 5px 0 0 5px;

    position: absolute;

    right: 70px;

    box-shadow:
        inset 0 -8px 0 rgba(0, 0, 0, 0.08);
}

.truck-cabin {
    position: absolute;

    right: 0;

    width: 100px;
    height: 70px;

    top: 15px;

    background: var(--orange);

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

.window {
    position: absolute;

    top: 10px;
    right: 12px;

    width: 55px;
    height: 30px;

    background: #202429;

    border-radius: 5px;
}

.wheel {
    width: 32px;
    height: 32px;

    background: #111;

    border: 6px solid #777;

    border-radius: 50%;

    position: absolute;

    bottom: 0;
}

.wheel-one {
    right: 85px;
}

.wheel-two {
    right: 275px;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

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

    color: #16181a;

    padding: 13px 16px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3);

    z-index: 5;

    min-width: 190px;
}

.card-top {
    top: 65px;
    right: -10px;
}

.card-bottom {
    bottom: 60px;
    left: -10px;
}

.mini-icon {
    width: 35px;
    height: 35px;

    display: flex;

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

    border-radius: 9px;

    background: rgba(255, 107, 0, 0.12);

    color: var(--orange);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    color: #888;
    font-size: 9px;
}


/* HERO STRIP */

.hero-bottom {
    position: absolute;

    bottom: 0;

    left: 0;
    right: 0;

    z-index: 5;
}

.service-strip {
    background: #181b1e;

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

    border-bottom: 0;

    border-radius: 20px 20px 0 0;

    padding: 20px 35px;

    display: flex;

    justify-content: space-around;

    color: #aaa;

    font-size: 12px;
}

.service-strip span::before {
    content: "●";

    color: var(--orange);

    margin-left: 8px;

    font-size: 8px;
}


/* =========================
   CITIES
========================= */

.cities {
    background: white;

    padding: 35px 0;

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

.cities-wrapper {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cities-title small {
    color: var(--orange);

    font-size: 10px;
}

.cities-title h2 {
    font-size: 18px;
}

.cities-list {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    justify-content: flex-end;
}

.cities-list span {
    border: 1px solid var(--border);

    padding: 9px 16px;

    border-radius: 30px;

    font-size: 11px;

    color: #555;

    transition: 0.3s;
}

.cities-list span:hover {
    background: var(--orange);

    border-color: var(--orange);

    color: white;

    transform: translateY(-3px);
}


/* =========================
   SECTION HEADING
========================= */

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

    margin-bottom: 55px;
}

.section-heading>span,
.section-label,
.contact-header>span {
    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    display: block;

    margin-bottom: 12px;
}

.section-heading h2,
.contact-header h2 {
    font-size: 42px;

    line-height: 1.4;

    font-weight: 800;
}

.section-heading h2 strong,
.contact-header h2 strong {
    color: var(--orange);
}

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

    font-size: 13px;

    line-height: 2;

    margin-top: 15px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


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

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

.services-grid {
    display: grid;

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

    gap: 18px;
}

.service-card {
    min-height: 290px;

    background: white;

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

    border-radius: 20px;

    padding: 28px;

    position: relative;

    overflow: hidden;

    transition: 0.4s;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

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

    border-radius: 50%;

    left: -45px;
    bottom: -45px;

    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 107, 0, 0.4);

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

.service-card:hover::before {
    transform: scale(1.5);
}

.service-large {
    grid-row: span 2;

    min-height: 598px;

    background: var(--black);

    color: white;
}

.service-number {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    position: absolute;

    top: 25px;
    left: 25px;
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;

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

    background: rgba(255, 107, 0, 0.1);

    border-radius: 15px;

    font-size: 25px;

    margin-bottom: 70px;
}

.service-card h3 {
    font-size: 22px;

    margin-bottom: 15px;
}

.service-card p {
    color: #85898e;

    font-size: 12px;

    line-height: 2;

    max-width: 280px;

    margin-bottom: 30px;
}

.service-large p {
    color: #9da1a5;
}

.service-card a {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    position: absolute;

    bottom: 28px;
    right: 28px;
}


/* =========================
   ABOUT
========================= */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}


/* ABOUT VISUAL */

.about-visual {
    min-height: 480px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

.about-box-main {
    width: 330px;
    height: 390px;

    background: var(--black);

    border-radius: 25px;

    position: relative;

    overflow: hidden;

    padding: 45px;

    color: white;

    box-shadow:
        30px 30px 0 rgba(255, 107, 0, 0.1);
}

.about-pattern {
    position: absolute;

    width: 300px;
    height: 300px;

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

    border-radius: 50%;

    left: -120px;
    bottom: -120px;
}

.about-big-number {
    color: var(--orange);

    font-size: 12px;

    font-weight: 900;
}

.about-box-main h3 {
    font-size: 42px;

    line-height: 1.3;

    margin-top: 110px;
}

.about-box-main h3 span {
    color: var(--orange);
}

.about-box-main p {
    color: #777;

    font-size: 10px;

    margin-top: 15px;
}

.experience-box {
    position: absolute;

    background: var(--orange);

    color: white;

    padding: 20px 25px;

    border-radius: 15px;

    left: 5px;
    bottom: 50px;

    display: flex;

    flex-direction: column;

    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.25);
}

.experience-box strong {
    font-size: 22px;
}

.experience-box span {
    font-size: 9px;
}


/* ABOUT CONTENT */

.about-content>p {
    color: var(--gray);

    font-size: 13px;

    line-height: 2;

    margin: 18px 0;
}

.about-content h2 {
    font-size: 43px;

    line-height: 1.4;
}

.about-content h2 strong {
    color: var(--orange);
}


/* FEATURES */

.features {
    margin-top: 35px;
}

.feature {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 16px 0;

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

.feature>span {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;
}

.feature div {
    display: flex;

    flex-direction: column;
}

.feature strong {
    font-size: 13px;
}

.feature small {
    color: #999;

    font-size: 10px;

    margin-top: 3px;
}


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

.process {
    background: #f1f1ee;
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr 35px 1fr 35px 1fr 35px 1fr;

    align-items: center;

    gap: 10px;
}

.process-item {
    text-align: center;
}

.process-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

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

    color: var(--orange);

    display: flex;

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

    margin: 0 auto 18px;

    font-weight: 900;

    font-size: 13px;

    background: white;
}

.process-item h3 {
    font-size: 15px;

    margin-bottom: 8px;
}

.process-item p {
    color: #888;

    font-size: 10px;

    line-height: 1.8;
}

.process-line {
    height: 1px;

    background: #d8d8d5;
}


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

.cta {
    background: var(--orange);

    color: white;

    padding: 70px 0;

    position: relative;

    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

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

    border-radius: 50%;

    left: -250px;
    top: -250px;
}

.cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta-content>div:first-child>span {
    font-size: 11px;

    opacity: 0.8;
}

.cta h2 {
    font-size: 38px;

    margin: 5px 0;
}

.cta h2 strong {
    color: var(--black);
}

.cta p {
    font-size: 12px;

    opacity: 0.8;
}

.cta-buttons {
    display: flex;

    gap: 10px;
}

.btn-light {
    background: white;

    color: var(--black);
}

.btn-dark {
    background: var(--black);

    color: white;
}


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

.contact {
    background: white;
}

.contact-header {
    margin-bottom: 45px;
}

.contact-grid {
    display: grid;

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

    gap: 15px;
}

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

    padding: 25px;

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    transition: 0.3s;
}

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

    border-color: var(--orange);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 48px;
    height: 48px;

    background: rgba(255, 107, 0, 0.1);

    color: var(--orange);

    border-radius: 12px;

    display: flex;

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

    font-size: 20px;

    margin-bottom: 25px;
}

.contact-card small {
    color: #999;

    font-size: 9px;
}

.contact-card strong {
    font-size: 15px;

    margin: 5px 0 25px;
}

.contact-link {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;
}


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

.footer {
    background: var(--black);

    color: white;

    padding: 25px 0;
}

.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-logo .logo-mark {
    width: 38px;
    height: 38px;
}

.footer-logo strong {
    display: block;

    font-size: 13px;
}

.footer-logo small {
    color: var(--orange);

    font-size: 8px;
}

.footer p {
    color: #666;

    font-size: 13px;
}

.footer-content>a {
    width: 38px;
    height: 38px;

    border: 1px solid #333;

    border-radius: 10px;

    display: flex;

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

    color: var(--orange);

    transition: 0.3s;
}

.footer-content>a:hover {
    background: var(--orange);

    color: white;
}


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

.floating-whatsapp {
    position: fixed;

    left: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #20c66a;

    color: white;

    display: flex;

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

    font-size: 25px;

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

    z-index: 999;

    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(32, 198, 106, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(32, 198, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(32, 198, 106, 0);
    }
}


/* =========================
   ANIMATIONS
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


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

@media (max-width: 1000px) {

    .navbar {
        gap: 18px;
    }

    .header-actions {
        display: none;
    }

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

        text-align: center;

        padding: 70px 0 140px;
    }

    .hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-numbers {
        justify-content: center;
    }

    .hero-visual {
        min-height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-large {
        grid-row: auto;

        min-height: 350px;
    }

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

        gap: 50px;
    }

    .about-visual {
        min-height: 420px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .process-line {
        display: none;
    }
}


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

@media (max-width: 700px) {

    .section {
        padding: 75px 0;
    }


    /* HEADER */

    .header {
        height: 72px;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;

        top: 72px;
        right: 0;
        left: 0;

        background: #151719;

        padding: 20px;

        display: none;

        flex-direction: column;

        gap: 18px;

        text-align: center;

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

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 7px;
    }

    .navbar a::after {
        display: none;
    }

    .logo-text strong {
        font-size: 14px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top: 72px;
    }

    .hero-grid {
        min-height: auto;

        padding: 75px 0 150px;

        gap: 30px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .hero-content>p {
        font-size: 12px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-numbers {
        gap: 15px;
    }

    .hero-numbers div {
        padding-right: 12px;
    }

    .hero-numbers strong {
        font-size: 18px;
    }

    .hero-numbers span {
        font-size: 8px;
    }


    /* HERO VISUAL */

    .hero-visual {
        min-height: 330px;
    }

    .visual-circle {
        width: 310px;
        height: 310px;
    }

    .truck-card {
        width: 310px;
        height: 230px;

        padding: 18px;
    }

    .truck-icon {
        transform: scale(0.7);

        transform-origin: center;
    }

    .floating-card {
        min-width: 150px;

        padding: 9px;

        transform: scale(0.85);
    }

    .card-top {
        right: -15px;
        top: 20px;
    }

    .card-bottom {
        left: -15px;
        bottom: 15px;
    }

    .service-strip {
        padding: 15px 10px;

        gap: 12px;

        justify-content: center;

        flex-wrap: wrap;
    }

    .service-strip span {
        font-size: 9px;
    }


    /* CITIES */

    .cities-wrapper {
        flex-direction: column;

        align-items: flex-start;
    }

    .cities-list {
        justify-content: flex-start;
    }


    /* HEADINGS */

    .section-heading h2,
    .about-content h2,
    .contact-header h2 {
        font-size: 32px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-large {
        min-height: 300px;
    }


    /* ABOUT */

    .about-visual {
        min-height: 400px;
    }

    .about-box-main {
        width: 280px;
        height: 350px;
    }

    .about-box-main h3 {
        font-size: 35px;
    }


    /* PROCESS */

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

        gap: 35px 15px;
    }


    /* CTA */

    .cta {
        padding: 55px 0;
    }

    .cta-content {
        flex-direction: column;

        text-align: center;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-content {
        flex-direction: column;

        gap: 20px;
    }

    .footer p {
        text-align: center;
    }


    .floating-whatsapp {
        width: 52px;
        height: 52px;

        left: 18px;
        bottom: 18px;
    }
}


/* SMALL MOBILE */

@media (max-width: 400px) {

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

    .hero-numbers {
        gap: 8px;
    }

    .hero-numbers strong {
        font-size: 16px;
    }

    .truck-card {
        width: 280px;
    }

    .visual-circle {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        transform: scale(0.72);
    }

}

/* =========================
   GALLERY
========================= */

.gallery {
    background: #f7f7f5;
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.gallery-header>div>span {
    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    display: block;

    margin-bottom: 10px;
}

.gallery-header h2 {
    font-size: 42px;

    line-height: 1.4;

    font-weight: 800;
}

.gallery-header h2 strong {
    color: var(--orange);
}

.gallery-header>p {
    max-width: 350px;

    color: #85888b;

    font-size: 12px;

    line-height: 2;
}


/* GALLERY GRID */

.gallery-grid {
    display: grid;

    grid-template-columns: 1.25fr 0.75fr 0.75fr;

    grid-template-rows: 260px 220px;

    gap: 15px;
}


/* ITEMS */

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    display: block;

    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


/* BIG */

.gallery-big {
    grid-row: span 2;
}


/* WIDE */

.gallery-wide {
    grid-column: span 2;
}


/* OVERLAY */

.gallery-overlay {
    position: absolute;

    inset: 0;

    padding: 22px;

    display: flex;

    align-items: flex-end;

    gap: 15px;

    background:
        linear-gradient(to top,
            rgba(10, 12, 14, 0.9),
            rgba(10, 12, 14, 0.05) 65%);

    color: white;

    transition: 0.4s;
}

.gallery-overlay>span {
    align-self: flex-start;

    font-size: 10px;

    color: var(--orange);

    font-weight: 900;
}

.gallery-overlay div {
    display: flex;

    flex-direction: column;

    flex: 1;
}

.gallery-overlay strong {
    font-size: 15px;

    font-weight: 800;
}

.gallery-overlay small {
    color: #bfc1c3;

    font-size: 9px;

    margin-top: 3px;
}

.gallery-overlay b {
    width: 35px;
    height: 35px;

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

    border-radius: 50%;

    display: flex;

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

    font-size: 16px;

    color: white;

    transition: 0.3s;
}


/* HOVER */

.gallery-item:hover img {
    transform: scale(1.08);

    filter: brightness(0.75);
}

.gallery-item:hover .gallery-overlay {
    background:
        linear-gradient(to top,
            rgba(10, 12, 14, 0.95),
            rgba(255, 107, 0, 0.05));
}

.gallery-item:hover .gallery-overlay b {
    background: var(--orange);

    border-color: var(--orange);

    transform: rotate(45deg);
}


/* BOTTOM */

.gallery-bottom {
    margin-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid #dededb;
}

.gallery-bottom span {
    color: #777;

    font-size: 11px;
}

.gallery-bottom a {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    transition: 0.3s;
}

.gallery-bottom a:hover {
    transform: translateX(-5px);
}


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

@media (max-width: 900px) {

    .gallery-header {
        align-items: flex-start;

        flex-direction: column;
    }

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

        grid-template-rows:
            280px 220px 220px;
    }

    .gallery-big {
        grid-column: span 2;

        grid-row: auto;
    }

    .gallery-wide {
        grid-column: span 2;
    }

}


@media (max-width: 600px) {

    .gallery-header h2 {
        font-size: 31px;
    }

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 12px;
    }

    .gallery-item,
    .gallery-big,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;

        height: 270px;
    }

    .gallery-big {
        height: 330px;
    }

    .gallery-overlay {
        padding: 16px;
    }

    .gallery-overlay strong {
        font-size: 13px;
    }

    .gallery-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}


.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 150px;
    height: 70px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}