:root {
    --move-primary: #E87522;
    --move-primary-dark: #B94F0F;
    --move-primary-light: #F28F48;

    --move-dark: #17232D;
    --move-dark-2: #243541;
    --move-dark-3: #314651;

    --move-accent: #3D7185;
    --move-accent-light: #6F9AA8;

    --move-white: #FFFFFF;
    --move-light-bg: #F6F8F9;
    --move-light: #EDF2F4;

    --move-text: #26343D;
    --move-text-light: #71808A;

    --move-border: #E1E7EA;

    --move-success: #4E8B70;

    --move-shadow: 0 12px 35px rgba(23, 35, 45, 0.08);
    --move-shadow-dark: 0 15px 40px rgba(23, 35, 45, 0.18);

    --move-radius: 14px;
    --move-radius-lg: 22px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Cairo", sans-serif;
            background: var(--move-white);
            color: var(--move-text);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        button,
        a {
            -webkit-tap-highlight-color: transparent;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            background:
                linear-gradient(
                    90deg,
                    rgba(23, 35, 45, 0.96) 0%,
                    rgba(23, 35, 45, 0.88) 28%,
                    rgba(23, 35, 45, 0.901) 53%,
                    rgba(23, 35, 45, 0.774) 78%,
                    rgba(23, 35, 45, 0.88) 100%
                ),
                url("../images/hero.jpg") center center / cover no-repeat;
            overflow: hidden;
            isolation: isolate;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    rgba(23, 35, 45, 0.75) 0%,
                    transparent 24%,
                    transparent 70%,
                    rgba(23, 35, 45, 0.45) 100%
                );
            z-index: -1;

        }

        .hero-section::after {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            left: -250px;
            bottom: -300px;
            background: var(--move-primary);
            opacity: 0.08;
            border-radius: 50%;
            filter: blur(30px);
            z-index: -1;
        }
.main-navbar {
    position: fixed !important;
    inset: 0 0 auto 0 !important;

    width: 100vw !important;
    height: 108px;

    z-index: 2147483647 !important;

    background: transparent;
    pointer-events: auto;

    transition: all 0.4s ease;
    border-bottom: 1px solid #b9500f2d;
}

.main-navbar.scrolled {
    height: 82px;
    background: rgba(23, 35, 45, 0.97);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.main-navbar.scrolled .brand-icon {
    width: 52px;
    height: 52px;
    font-size: 23px;
}

.main-navbar.scrolled .brand-title {
    font-size: 21px;
}

.main-navbar.scrolled .brand-subtitle {
    font-size: 10px;
}

.main-navbar.scrolled .quote-btn {
    min-height: 48px;
}
        .navbar-container {
            height: 100%;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 13px;
            color: var(--move-white);
            transition: 0.3s ease;
        }

        .brand:hover {
            color: var(--move-white);
        }

        .brand-icon {
            width: 61px;
            height: 61px;
            border-radius: 50%;
            background: var(--move-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--move-white);
            font-size: 27px;
            transform: rotate(-8deg);
            box-shadow: 0 8px 25px rgba(232, 117, 34, 0.25);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .brand-title {
            font-size: 23px;
            font-weight: 900;
            letter-spacing: -0.5px;
        }

        .brand-subtitle {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            margin-top: 4px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            padding: 15px 15px;
            font-size: 15px;
            font-weight: 700;
            transition: 0.3s ease;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            right: 15px;
            left: 15px;
            bottom: 5px;
            height: 2px;
            background: var(--move-primary);
            transform: scaleX(0);
            transform-origin: center;
            transition: 0.3s ease;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--move-primary-light);
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
        }

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

        .phone-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            color: var(--move-white);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 50%;
            transition: 0.3s ease;
        }

        .phone-link:hover {
            background: var(--move-primary);
            border-color: var(--move-primary);
            color: var(--move-white);
        }

        .quote-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 54px;
            padding: 0 27px;
            border-radius: 5px;
            background: var(--move-primary);
            color: var(--move-white);
            font-size: 14px;
            font-weight: 800;
            transition: 0.3s ease;
            box-shadow: 0 8px 25px rgba(232, 117, 34, 0.20);
        }

        .quote-btn:hover {
            background: var(--move-primary-dark);
            color: var(--move-white);
            transform: translateY(-2px);
        }

        .mobile-toggle {
            display: none;
            width: 45px;
            height: 45px;
            border: 1px solid rgba(255,255,255,0.25);
            background: transparent;
            color: var(--move-white);
            border-radius: 7px;
            font-size: 20px;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            height: 100%;
            display: flex;
            align-items: center;
            padding-top: 95px;
        }

        .hero-inner {
            max-width: 680px;
            margin-right: auto;
            margin-left: auto;
            padding-right: 0;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 9px 16px;
            margin-bottom: 23px;
            background: rgba(232, 117, 34, 0.13);
            border: 1px solid rgba(242, 143, 72, 0.4);
            border-radius: 50px;
            color: var(--move-primary-light);
            font-size: 13px;
            font-weight: 700;
            backdrop-filter: blur(5px);
        }

        .hero-badge i {
            font-size: 12px;
        }

        .hero-title {
            color: var(--move-white);
            font-size: clamp(45px, 5.2vw, 70px);
            line-height: 1.38;
            font-weight: 900;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }

        .hero-title span {
            color: var(--move-primary);
        }

        .hero-description {
            max-width: 650px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 17px;
            line-height: 2;
            font-weight: 500;
            margin-bottom: 34px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 13px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-main-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 58px;
            padding: 0 28px;
            border-radius: 5px;
            background: var(--move-primary);
            color: var(--move-white);
            font-size: 15px;
            font-weight: 800;
            transition: 0.3s ease;
        }

        .hero-main-btn:hover {
            color: var(--move-white);
            background: var(--move-primary-dark);
            transform: translateY(-3px);
        }

        .hero-secondary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 58px;
            padding: 0 27px;
            border-radius: 5px;
            border: 1px solid rgba(255,255,255,0.35);
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(7px);
            color: var(--move-white);
            font-size: 15px;
            font-weight: 700;
            transition: 0.3s ease;
        }

        .hero-secondary-btn:hover {
            background: var(--move-white);
            color: var(--move-dark);
            border-color: var(--move-white);
        }

        .hero-info {
         margin-top: 80px;

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 65px;
            color: var(--move-white);
        }

        .hero-info-item {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .hero-info-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(232, 117, 34, 0.16);
            border: 1px solid rgba(242, 143, 72, 0.35);
            color: var(--move-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-info-text {
            display: flex;
            flex-direction: column;
            line-height: 1.5;
        }

        .hero-info-text strong {
            font-size: 13px;
            font-weight: 800;
        }

        .hero-info-text span {
            font-size: 11px;
            color: rgba(255,255,255,0.6);
        }

   
        .floating-call {
            position: fixed;
            left: 25px;
            bottom: 25px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--move-primary);
            color: var(--move-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(232, 117, 34, 0.35);
            transition: 0.3s ease;
        }

        .floating-call:hover {
            background: var(--move-primary-dark);
            color: var(--move-white);
            transform: translateY(-4px);
        }

        .floating-whatsapp {
            position: fixed;
            left: 25px;
            bottom: 95px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.28);
            transition: 0.3s ease;
        }

        .floating-whatsapp:hover {
            color: #fff;
            transform: translateY(-4px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(330px, 88%);
            height: 100vh;
            background: var(--move-dark);
            z-index: 2000;
            padding: 30px;
            transition: 0.4s ease;
            box-shadow: -15px 0 40px rgba(0,0,0,0.2);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-close {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.15);
            background: transparent;
            color: var(--move-white);
            border-radius: 7px;
            font-size: 18px;
        }

        .mobile-nav {
            list-style: none;
            padding: 25px 0;
            margin: 0;
        }

        .mobile-nav li {
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: rgba(255,255,255,0.85);
            padding: 17px 0;
            font-size: 15px;
            font-weight: 700;
            transition: 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--move-primary);
        }

        .mobile-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            width: 100%;
            min-height: 52px;
            background: var(--move-primary);
            color: var(--move-white);
            border-radius: 5px;
            font-weight: 800;
            margin-top: 15px;
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .demo-section {
            padding: 100px 0;
            background: var(--move-light-bg);
        }

        .demo-card {
            background: var(--move-white);
            border-radius: var(--move-radius-lg);
            padding: 60px;
            box-shadow: var(--move-shadow);
            text-align: center;
        }

        .demo-card h2 {
            color: var(--move-dark);
            font-weight: 900;
            margin-bottom: 15px;
        }

        .demo-card p {
            color: var(--move-text-light);
            margin: 0;
        }

        @media (max-width: 1199px) {
            .main-nav {
                gap: 0;
            }

            .main-nav a {
                padding: 15px 9px;
                font-size: 13px;
            }

            .quote-btn {
                padding: 0 19px;
                font-size: 12px;
            }

            .hero-inner {
                max-width: 650px;
            }
        }

        @media (max-width: 991px) {
            .main-navbar {
                height: 90px;
            }

            .main-nav,
            .navbar-actions .phone-link,
            .navbar-actions .quote-btn {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .hero-section {
                min-height: 780px;
                height: 100vh;
            }

            .hero-content {
                padding-top: 80px;
            }

            .hero-inner {
                max-width: 700px;
                margin: 0 auto;
                text-align: center;
            }

            .hero-badge {
                margin-bottom: 18px;
            }

            .hero-title {
                font-size: clamp(42px, 7vw, 65px);
            }

            .hero-description {
                margin-right: auto;
                margin-left: auto;
            }

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

            .hero-info {
                position: relative;
                right: auto;
                bottom: auto;
                justify-content: center;
                margin-top: 45px;
            }

            .hero-scroll {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                min-height: 760px;
                background-position: 58% center;
            }

            .hero-section {
                background-image:
                    linear-gradient(
                        180deg,
                        rgba(23, 35, 45, 0.84) 0%,
                        rgba(23, 35, 45, 0.78) 45%,
                        rgba(23, 35, 45, 0.9) 100%
                    ),
                    url("images/hero-truck.jpg");
            }

            .brand-icon {
                width: 51px;
                height: 51px;
                font-size: 22px;
            }

            .brand-title {
                font-size: 18px;
            }

            .brand-subtitle {
                font-size: 9px;
            }

            .hero-content {
                padding-top: 60px;
            }

            .hero-title {
                font-size: clamp(37px, 11vw, 53px);
                letter-spacing: -1.2px;
                line-height: 1.15;
                margin-bottom: 19px;
            }

            .hero-description {
                font-size: 14px;
                line-height: 1.9;
                margin-bottom: 27px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-main-btn,
            .hero-secondary-btn {
                width: 100%;
                min-height: 55px;
            }

            .hero-info {
                gap: 18px;
                margin-top: 30px;
                flex-wrap: wrap;
            }

            .hero-info-item {
                gap: 8px;
            }

            .hero-info-icon {
                width: 37px;
                height: 37px;
                font-size: 12px;
            }

            .hero-info-text strong {
                font-size: 11px;
            }

            .hero-info-text span {
                font-size: 9px;
            }

            .floating-call,
            .floating-whatsapp {
                width: 52px;
                height: 52px;
            }

            .floating-call {
                left: 18px;
                bottom: 18px;
            }

            .floating-whatsapp {
                left: 18px;
                bottom: 80px;
            }
        }

        @media (max-width: 400px) {
            .main-navbar {
                height: 80px;
            }

            .brand-icon {
                width: 45px;
                height: 45px;
            }

            .brand-title {
                font-size: 16px;
            }

            .hero-section {
                min-height: 730px;
            }

            .hero-title {
                font-size: 34px;
            }

            .hero-info {
                display: none;
            }
        }
       .moving-about {
    position: relative;
    min-height: 850px;
    padding: 90px 0;
    overflow: hidden;

    z-index: 1;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(232, 117, 34, 0.08) 0,
            rgba(232, 117, 34, 0.08) 100px,
            transparent 101px
        ),
        var(--move-white);
}

        .moving-about::before {
            content: "";
            position: absolute;
            width: 170px;
            height: 170px;
            background: rgba(232, 117, 34, 0.09);
            border-radius: 0 0 100% 0;
            top: -50px;
            right: -40px;
            z-index: 0;
        }

        .moving-about::after {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border: 70px solid rgba(232, 117, 34, 0.07);
            border-radius: 50%;
            left: -150px;
            bottom: -550px;
            z-index: 0;
        }

        .moving-container {
            position: relative;
            z-index: 2;
        }

        .moving-row {
            min-height: 680px;
        }

        .moving-images {
            position: relative;
            height: 650px;
            width: 100%;
        }

        .moving-main-image {
            position: absolute;
            width: 100%;
            height: 570px;
            left: 18%;
            top: 65px;
            border-radius: 0 30px 30px 30px;
            overflow: hidden;
            box-shadow: var(--move-shadow-dark);
            z-index: 2;
            background: var(--move-light);
        }

        .moving-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .moving-main-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    rgba(23, 35, 45, 0.03),
                    rgba(23, 35, 45, 0.22)
                );
            pointer-events: none;
        }

        .moving-small-image {
            position: absolute;
            width: 50%;
            height: 285px;
            left: 0;
            top: 0;
            border-radius: 90px 18px 18px 18px;
            overflow: hidden;
            border: 12px solid var(--move-white);
            box-shadow: var(--move-shadow);
            z-index: 5;
            background: var(--move-light);
        }

        .moving-small-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .moving-orange-ring {
            position: absolute;
            width: 180px;
            height: 180px;
            border: 48px solid var(--move-primary);
            border-radius: 50%;
            bottom: 75px;
            left: 2%;
            opacity: 0.45;
            z-index: 1;
        }

        .moving-orange-ring::after {
            content: "";
            position: absolute;
            width: 75px;
            height: 75px;
            background: var(--move-white);
            border-radius: 50%;
            top: -2px;
            left: -2px;
        }

        .moving-dots {
            position: absolute;
            top: -10px;
            right: 2%;
            width: 280px;
            height: 100px;
            background-image: radial-gradient(
                var(--move-primary) 2.5px,
                transparent 2.5px
            );
            background-size: 24px 24px;
            opacity: 0.9;
            z-index: 1;
        }

        .moving-number {
            position: absolute;
            left: -5px;
            bottom: 80px;
            z-index: 6;
            display: flex;
            align-items: center;
            gap: 12px;
            direction: ltr;
            color: var(--move-primary);
        }

        .moving-number .number-icon {
            font-size: 46px;
            transform: rotate(-15deg);
            font-weight: 400;
        }

        .moving-number strong {
            font-size: 76px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -4px;
        }

        .moving-content {
            padding-right: 45px;
            padding-top: 35px;
        }

        .moving-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 9px 23px;
            border: 1px solid var(--move-primary);
            color: var(--move-primary);
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            background: rgba(232, 117, 34, 0.025);
            margin-bottom: 24px;
        }

        .moving-badge i {
            font-size: 14px;
        }

        .moving-title {
            color: var(--move-dark);
            font-size: clamp(38px, 4vw, 33px);
            line-height: 1.25;
            font-weight: 900;
            letter-spacing: -1.5px;
            margin-bottom: 38px;
            max-width: 720px;
        }

        .moving-title span {
            color: var(--move-primary);
        }

        .moving-feature {
          display: flex;
          flex-direction: row;
            gap: 25px;
            align-items: center;
            padding: 8px 0 27px;
            border-bottom: 1px solid var(--move-border);
            margin-bottom: 25px;
        }

        .moving-feature:last-of-type {
            margin-bottom: 35px;
        }

        .moving-feature-icon {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            background: var(--move-primary);
            color: var(--move-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 10px 25px rgba(232, 117, 34, 0.22);
            flex-shrink: 0;
        }

        .moving-feature-content {
          display: flex;
          flex-direction: column;
            gap: 15px;
            width: 700px;
        }

        .moving-feature-content h3 {
            font-size: 20px;
            line-height: 1.45;
            color: var(--move-dark);
            font-weight: 800;
            margin: 0;
        }

        .moving-feature-content p {
            color: var(--move-text-light);
            font-size: 16px;
            line-height: 1.9;
            margin: 0;
        }

        .moving-actions {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .moving-btn {
            min-height: 62px;
            padding: 0 31px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            border-radius: 50px;
            background: var(--move-primary);
            color: var(--move-white);
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 12px 25px rgba(232, 117, 34, 0.22);
        }

        .moving-btn:hover {
            color: var(--move-white);
            background: var(--move-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 17px 30px rgba(185, 79, 15, 0.25);
        }

        .moving-btn i {
            transition: transform 0.3s ease;
        }

        .moving-btn:hover i {
            transform: translateX(-5px);
        }

        .moving-phone {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--move-dark);
        }

        .moving-phone-label {
            display: block;
            font-size: 13px;
            color: var(--move-text-light);
            margin-bottom: 3px;
        }

        .moving-phone-number {
            display: block;
            direction: ltr;
            font-size: 19px;
            font-weight: 800;
            color: var(--move-dark);
        }

        .moving-phone-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--move-light);
            color: var(--move-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }

        .moving-whatsapp {
            position: fixed;
            width: 58px;
            height: 58px;
            left: 25px;
            bottom: 25px;
            border-radius: 50%;
            background: #25D366;
            color: var(--move-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            z-index: 1000;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            transition: 0.3s ease;
        }

        .moving-whatsapp:hover {
            color: var(--move-white);
            transform: translateY(-5px) scale(1.04);
        }

        .moving-top {
            position: fixed;
            right: 25px;
            bottom: 25px;
            width: 55px;
            height: 55px;
            border: 0;
            border-radius: 12px;
            background: var(--move-primary);
            color: var(--move-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            box-shadow: var(--move-shadow-dark);
        }

        .moving-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .moving-top:hover {
            background: var(--move-primary-dark);
        }

        @media (max-width: 1399.98px) {
            .moving-main-image {
                width: 73%;
                left: 16%;
            }

            .moving-small-image {
                width: 53%;
            }

            .moving-content {
                padding-right: 20px;
            }

            .moving-title {
                font-size: 52px;
            }
        }

        @media (max-width: 1199.98px) {
            .moving-about {
                padding: 70px 0;
            }

            .moving-images {
                height: 590px;
            }

            .moving-main-image {
                height: 520px;
                width: 74%;
                left: 15%;
                top: 55px;
            }

            .moving-small-image {
                height: 245px;
                width: 54%;
            }

            .moving-title {
                font-size: 44px;
                margin-bottom: 28px;
            }

            .moving-feature {
                grid-template-columns: 75px 1fr;
                gap: 17px;
            }

            .moving-feature-icon {
                width: 75px;
                height: 75px;
                font-size: 27px;
            }

            .moving-feature-content {
                grid-template-columns: 1fr;
                gap: 4px;
            }

            .moving-feature-content h3 {
                font-size: 19px;
            }

            .moving-feature-content p {
                font-size: 14px;
                line-height: 1.7;
            }
        }

        @media (max-width: 991.98px) {
            .moving-about {
                padding: 55px 0 70px;
            }

            .moving-row {
                min-height: auto;
            }

            .moving-images {
                height: 560px;
                max-width: 720px;
                margin: 0 auto 35px;
            }

            .moving-main-image {
                width: 68%;
                left: 22%;
                height: 500px;
            }

            .moving-small-image {
                width: 50%;
                height: 235px;
            }

            .moving-content {
                padding: 0;
                max-width: 720px;
                margin: 0 auto;
            }

            .moving-title {
                max-width: 650px;
            }

            .moving-feature-content {
                grid-template-columns: minmax(170px, 0.7fr) 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 767.98px) {
            .moving-about {
                padding: 40px 0 70px;
            }

            .moving-about::before {
                width: 120px;
                height: 120px;
            }

            .moving-images {
                height: 440px;
                margin-bottom: 25px;
            }

            .moving-main-image {
                width: 75%;
                left: 15%;
                top: 55px;
                height: 385px;
                border-radius: 0 24px 24px 24px;
            }

            .moving-small-image {
                width: 53%;
                height: 185px;
                border-width: 8px;
                border-radius: 60px 15px 15px 15px;
            }

            .moving-dots {
                width: 180px;
                height: 75px;
                background-size: 18px 18px;
            }

            .moving-orange-ring {
                width: 120px;
                height: 120px;
                border-width: 32px;
                bottom: 40px;
            }

            .moving-number {
                bottom: 32px;
                left: 0;
            }

            .moving-number strong {
                font-size: 48px;
                letter-spacing: -2px;
            }

            .moving-number .number-icon {
                font-size: 30px;
            }

            .moving-badge {
                font-size: 13px;
                padding: 8px 18px;
                margin-bottom: 17px;
            }

            .moving-title {
                font-size: 34px;
                line-height: 1.35;
                letter-spacing: -0.7px;
                margin-bottom: 30px;
            }

            .moving-feature {
                grid-template-columns: 62px 1fr;
                gap: 15px;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .moving-feature-icon {
                width: 62px;
                height: 62px;
                font-size: 23px;
            }

            .moving-feature-content {
                display: block;
            }

            .moving-feature-content h3 {
                font-size: 17px;
                margin-bottom: 5px;
            }

            .moving-feature-content p {
                font-size: 13px;
                line-height: 1.75;
            }

            .moving-actions {
                gap: 15px;
                flex-direction: column;
                align-items: stretch;
            }

            .moving-btn {
                width: 100%;
                min-height: 57px;
            }

            .moving-phone {
                justify-content: center;
            }

            .moving-phone-number {
                font-size: 17px;
            }

            .moving-whatsapp {
                width: 52px;
                height: 52px;
                left: 15px;
                bottom: 15px;
                font-size: 24px;
            }

            .moving-top {
                width: 48px;
                height: 48px;
                right: 15px;
                bottom: 15px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .moving-images {
                height: 365px;
            }

            .moving-main-image {
                width: 76%;
                left: 14%;
                height: 320px;
                top: 48px;
            }

            .moving-small-image {
                width: 55%;
                height: 150px;
            }

            .moving-dots {
                width: 135px;
                height: 65px;
                right: 0;
                background-size: 15px 15px;
            }

            .moving-orange-ring {
                width: 95px;
                height: 95px;
                border-width: 25px;
                bottom: 35px;
            }

            .moving-number {
                bottom: 20px;
            }

            .moving-number strong {
                font-size: 40px;
            }

            .moving-number .number-icon {
                font-size: 25px;
            }

            .moving-title {
                font-size: 29px;
            }

            .moving-feature {
                grid-template-columns: 55px 1fr;
            }

            .moving-feature-icon {
                width: 55px;
                height: 55px;
                font-size: 20px;
            }

            .moving-feature-content h3 {
                font-size: 16px;
            }

            .moving-feature-content p {
                font-size: 12px;
            }
        }
        /* =====================================================
   MOVING WORKFLOW
===================================================== */

.moving-workflow-section {

    --workflow-line: #dce4e8;

    position: relative;

    padding: 110px 0 90px;

    background: var(--move-white);

    overflow: hidden;

    direction: rtl;
}


/* =====================================================
   BACKGROUND SHAPES
===================================================== */

.workflow-bg-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    opacity: .45;

}


.workflow-bg-shape.shape-1 {

    width: 280px;

    height: 280px;

    top: -160px;

    right: -100px;

    background:
        radial-gradient(
            circle,
            rgba(232, 117, 34, .09),
            transparent 70%
        );

}


.workflow-bg-shape.shape-2 {

    width: 350px;

    height: 350px;

    bottom: -220px;

    left: -160px;

    background:
        radial-gradient(
            circle,
            rgba(61, 113, 133, .08),
            transparent 70%
        );

}


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

.workflow-header {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto 70px;

}


.workflow-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--move-primary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .5px;

}


.workflow-eyebrow i {

    font-size: 13px;

}


.workflow-header h2 {

    margin: 0;

    color: var(--move-dark);

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

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -2px;

}


.workflow-header h2 span {

    color: var(--move-primary);

}


.workflow-header p {

    max-width: 720px;

    margin: 22px auto 0;

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

    font-size: 17px;

    line-height: 1.9;

}


/* =====================================================
   WORKFLOW WRAPPER
===================================================== */

.workflow-wrapper {

    position: relative;

    z-index: 2;

}


/* =====================================================
   CONNECTING LINE
===================================================== */

.workflow-line {

    position: absolute;

    top: 105px;

    left: 2%;

    right: 2%;

    height: 80px;

    pointer-events: none;

    z-index: 0;

}


.workflow-line::before {

    content: "";

    position: absolute;

    top: 35px;

    left: 0;

    right: 0;

    height: 2px;

    background-image:
        linear-gradient(
            to right,
            var(--workflow-line) 55%,
            transparent 55%
        );

    background-size: 14px 2px;

    transform:
        rotate(
            -3deg
        );

}


/* Extra curved feeling */

.workflow-line::after {

    content: "";

    position: absolute;

    top: 0;

    left: 17%;

    width: 32%;

    height: 65px;

    border-top: 2px dashed var(--workflow-line);

    border-radius: 50%;

    transform: rotate(2deg);

    opacity: .8;

}


.line-dot {

    position: absolute;

    width: 18px;

    height: 18px;

    border: 3px solid var(--move-accent);

    background: var(--move-white);

    border-radius: 50%;

}


.dot-start {

    left: -2px;

    top: 30px;

}


.dot-end {

    right: -2px;

    top: 7px;

}


/* =====================================================
   ROW
===================================================== */

.workflow-row {

    position: relative;

    z-index: 2;

}


/* =====================================================
   WORKFLOW ITEM
===================================================== */

.workflow-item {

    position: relative;

    text-align: center;

    height: 100%;

    transition:
        transform .35s ease;

}


.workflow-item:hover {

    transform: translateY(-8px);

}


/* =====================================================
   IMAGE
===================================================== */

.workflow-image-wrap {

    position: relative;

    width: 225px;

    height: 225px;

    margin: 0 auto 30px;

}


/* Outer circle */

.workflow-image-wrap::before {

    content: "";

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    background:
        rgba(232, 117, 34, .08);

    transition: .35s ease;

}


.workflow-image-wrap::after {

    content: "";

    position: absolute;

    inset: -17px;

    border-radius: 50%;

    border: 1px solid rgba(232, 117, 34, .10);

    transition: .35s ease;

}


.workflow-item:hover
.workflow-image-wrap::before {

    transform: scale(1.08);

    background:
        rgba(232, 117, 34, .13);

}


.workflow-item:hover
.workflow-image-wrap::after {

    transform: scale(1.05);

    border-color:
        rgba(232, 117, 34, .20);

}


/* =====================================================
   IMAGE
===================================================== */

.workflow-image {

    position: relative;

    width: 100%;

    height: 100%;

    border-radius: 50%;

    overflow: hidden;

    background: var(--move-light);

    border: 5px solid var(--move-white);

    box-shadow:
        0 12px 30px
        rgba(23, 35, 45, .12);

    z-index: 2;

}


.workflow-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .6s ease;

}


.workflow-item:hover
.workflow-image img {

    transform: scale(1.08);

}


/* =====================================================
   NUMBER
===================================================== */

.workflow-number {

    position: absolute;

    top: -13px;

    right: 3px;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--move-primary);

    color: var(--move-white);

    font-size: 17px;

    font-weight: 700;

    border: 5px solid var(--move-white);

    box-shadow:
        0 5px 15px
        rgba(232, 117, 34, .25);

    z-index: 5;

}


.workflow-number::before {

    content: "";

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    border: 8px solid
        rgba(232, 117, 34, .10);

    z-index: -1;

}


/* =====================================================
   CONTENT
===================================================== */

.workflow-content {

    position: relative;

    z-index: 2;

    padding: 0 10px;

}


.workflow-content h3 {

    margin: 0 0 14px;

    color: var(--move-dark);

    font-size: 20px;

    font-weight: 800;

}


.workflow-content p {

    max-width: 260px;

    margin: auto;

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

    font-size: 15.5px;

    line-height: 1.9;

}


/* =====================================================
   VEHICLES BOX
===================================================== */

.vehicles-box {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 80px;

    padding: 28px 35px;

    background: var(--move-light-bg);

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

    border-radius: var(--move-radius-lg);

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

}


.vehicles-title {

    display: flex;

    align-items: center;

    gap: 17px;

}


.vehicles-icon {

    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--move-primary);

    color: var(--move-white);

    font-size: 22px;

    box-shadow:
        0 8px 20px
        rgba(232, 117, 34, .20);

}


.vehicles-title .small-title {

    display: block;

    margin-bottom: 4px;

    color: var(--move-primary);

    font-size: 13px;

    font-weight: 700;

}


.vehicles-title h3 {

    margin: 0;

    color: var(--move-dark);

    font-size: 19px;

    font-weight: 800;

}


.vehicles-list {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}


.vehicle-item {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 18px;

    border-radius: 50px;

    background: var(--move-white);

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

    color: var(--move-text);

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;

}


.vehicle-item i {

    color: var(--move-primary);

    font-size: 17px;

}


.vehicle-item:hover {

    color: var(--move-white);

    background: var(--move-dark);

    border-color: var(--move-dark);

    transform: translateY(-3px);

}


.vehicle-item:hover i {

    color: var(--move-primary-light);

}


/* =====================================================
   BOTTOM INFO
===================================================== */

.workflow-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 25px;

}


.workflow-location {

    display: flex;

    align-items: center;

    gap: 10px;

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

    font-size: 14px;

}


.workflow-location i {

    color: var(--move-primary);

    font-size: 18px;

}


.workflow-location strong {

    color: var(--move-dark);

}


.workflow-phone {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 50px;

    background: var(--move-dark);

    color: var(--move-white);

    text-decoration: none;

    font-weight: 700;

    transition: .3s ease;

}


.workflow-phone i {

    color: var(--move-primary);

}


.workflow-phone:hover {

    color: var(--move-white);

    background: var(--move-primary);

    transform: translateY(-3px);

}


.workflow-phone:hover i {

    color: var(--move-white);

}


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

@media (max-width: 991.98px) {

    .moving-workflow-section {

        padding: 90px 0 70px;

    }


    .workflow-header {

        margin-bottom: 55px;

    }


    .workflow-line {

        display: none;

    }


    .workflow-image-wrap {

        width: 200px;

        height: 200px;

    }


    .workflow-content h3 {

        font-size: 18px;

    }


    .workflow-content p {

        font-size: 14px;

    }


    .vehicles-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .vehicles-list {

        width: 100%;

    }

}

 

@media (max-width: 767.98px) {

    .moving-workflow-section {

        padding: 75px 0 55px;

    }


    .workflow-header {

        margin-bottom: 50px;

    }


    .workflow-header h2 {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .workflow-header p {

        font-size: 15px;

        line-height: 1.8;

    }


    .workflow-item {

        margin-bottom: 35px;

    }


    .workflow-image-wrap {

        width: 190px;

        height: 190px;

    }


    .workflow-number {

        width: 50px;

        height: 50px;

        font-size: 15px;

    }


    .workflow-content {

        padding: 0 20px;

    }


    .workflow-content h3 {

        font-size: 19px;

    }


    .workflow-content p {

        max-width: 340px;

        font-size: 14px;

    }


    .vehicles-box {

        padding: 24px 20px;

        margin-top: 35px;

    }


    .vehicles-title {

        align-items: flex-start;

    }


    .vehicles-title h3 {

        font-size: 17px;

        line-height: 1.6;

    }


    .vehicles-list {

        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

    }


    .vehicle-item {

        justify-content: center;

    }


    .workflow-bottom {

        flex-direction: column;

        align-items: stretch;

        text-align: center;

    }


    .workflow-location {

        justify-content: center;

        line-height: 1.8;

    }


    .workflow-phone {

        justify-content: center;

    }

}


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

@media (max-width: 400px) {

    .workflow-header h2 {

        font-size: 32px;

    }


    .workflow-image-wrap {

        width: 165px;

        height: 165px;

    }


    .workflow-number {

        top: -10px;

        right: 0;

        width: 45px;

        height: 45px;

    }

}
.moving-services-section {
    position: relative;
    padding: 100px 0;
    background: var(--move-light-bg);
    overflow: hidden;
    direction: rtl;
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services-shape-one {
    width: 350px;
    height: 350px;
    top: -180px;
    right: -150px;
    background: rgba(232, 117, 34, 0.07);
}

.services-shape-two {
    width: 300px;
    height: 300px;
    bottom: -160px;
    left: -130px;
    background: rgba(61, 113, 133, 0.06);
}

.moving-services-section .container {
    position: relative;
    z-index: 1;
}

.services-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(232, 117, 34, 0.09);
    color: var(--move-primary);
    font-size: 14px;
    font-weight: 700;
}

.services-title {
    margin: 0 0 18px;
    color: var(--move-dark);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.services-title span {
    color: var(--move-primary);
}

.services-subtitle {
    max-width: 680px;
    margin: auto;
    color: var(--move-text-light);
    font-size: 16px;
    line-height: 1.9;
}

.service-card {
    height: 100%;
    overflow: hidden;
    background: var(--move-white);
    border: 1px solid var(--move-border);
    border-radius: var(--move-radius-lg);
    box-shadow: var(--move-shadow);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--move-shadow-dark);
    border-color: rgba(232, 117, 34, 0.25);
}

.service-image {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(23, 35, 45, 0.45),
        transparent 55%
    );
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 22px;
    box-shadow: 0 8px 22px rgba(232, 117, 34, 0.3);
    z-index: 2;
}

.service-content {
    display: flex;
    flex-direction: column;
    min-height: 275px;
    padding: 27px 25px 25px;
}

.service-content h3 {
    margin: 0 0 13px;
    color: var(--move-dark);
    font-size: 22px;
    font-weight: 800;
}

.service-content p {
    margin: 0 0 23px;
    color: var(--move-text-light);
    font-size: 15px;
    line-height: 1.9;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 9px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--move-dark);
    color: var(--move-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-btn i {
    color: #25D366;
    font-size: 18px;
}

.service-btn:hover {
    background: var(--move-primary);
    color: var(--move-white);
    transform: translateX(-4px);
}

.service-btn:hover i {
    color: var(--move-white);
}

.service-areas {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 55px;
    padding: 30px 35px;
    background: var(--move-dark);
    border-radius: var(--move-radius-lg);
    box-shadow: var(--move-shadow-dark);
}

.service-areas-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(232, 117, 34, 0.15);
    color: var(--move-primary-light);
    font-size: 25px;
}

.service-areas-content {
    flex: 1;
}

.service-areas-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--move-primary-light);
    font-size: 13px;
    font-weight: 700;
}

.service-areas-content h3 {
    margin: 0 0 5px;
    color: var(--move-white);
    font-size: 22px;
    font-weight: 800;
}

.service-areas-content p {
    max-width: 750px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.areas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 13px 23px;
    border-radius: 10px;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.areas-btn i {
    font-size: 19px;
}

.areas-btn:hover {
    background: var(--move-primary-light);
    color: var(--move-white);
    transform: translateY(-3px);
}

@media (max-width: 991px) {

    .moving-services-section {
        padding: 80px 0;
    }

    .services-title {
        font-size: 36px;
    }

    .service-areas {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .service-areas-content {
        flex: 1 1 calc(100% - 90px);
    }

    .areas-btn {
        margin-right: 87px;
    }

}

@media (max-width: 767px) {

    .moving-services-section {
        padding: 65px 0;
    }

    .services-heading {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 30px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        min-height: auto;
    }

    .service-btn {
        width: 100%;
    }

    .service-areas {
        padding: 25px 20px;
        gap: 15px;
    }

    .service-areas-icon {
        width: 55px;
        height: 55px;
        flex-basis: 55px;
    }

    .service-areas-content {
        flex: 1 1 calc(100% - 70px);
    }

    .service-areas-content h3 {
        font-size: 19px;
    }

    .areas-btn {
        width: 100%;
        margin-right: 0;
    }

}

@media (max-width: 480px) {

    .services-title {
        font-size: 27px;
    }

    .service-image {
        height: 200px;
    }

    .service-content h3 {
        font-size: 20px;
    }

}
.moving-counter-section {
    position: relative;
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            var(--move-dark),
            var(--move-dark-2)
        );
    overflow: hidden;
    direction: rtl;
}

.moving-counter-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -250px;
    right: -180px;
    border-radius: 50%;
    background: rgba(232, 117, 34, 0.12);
}

.moving-counter-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -220px;
    left: -130px;
    border-radius: 50%;
    background: rgba(61, 113, 133, 0.15);
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.07) 1px,
        transparent 1px
    );
    background-size: 25px 25px;
    opacity: 0.35;
}

.moving-counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.counter-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(232, 117, 34, 0.12);
    color: var(--move-primary-light);
    font-size: 14px;
    font-weight: 700;
}

.counter-heading h2 {
    margin: 0 0 16px;
    color: var(--move-white);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.counter-heading h2 span {
    color: var(--move-primary-light);
}

.counter-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.9;
}

.counter-box {
    height: 100%;
    padding: 35px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--move-radius-lg);
    backdrop-filter: blur(8px);
    transition: 0.4s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(232, 117, 34, 0.35);
}

.counter-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(232, 117, 34, 0.14);
    color: var(--move-primary-light);
    font-size: 25px;
    transition: 0.4s ease;
}

.counter-box:hover .counter-icon {
    background: var(--move-primary);
    color: var(--move-white);
    transform: scale(1.05);
}

.counter-number {
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    margin-bottom: 8px;
}

.counter-value {
    color: var(--move-white);
    font-size: 43px;
    font-weight: 800;
    line-height: 1;
}

.counter-plus {
    margin-right: 5px;
    color: var(--move-primary-light);
    font-size: 30px;
    font-weight: 800;
}

.counter-box h3 {
    margin: 10px 0 7px;
    color: var(--move-white);
    font-size: 18px;
    font-weight: 700;
}

.counter-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

@media (max-width: 991px) {

    .moving-counter-section {
        padding: 80px 0;
    }

    .counter-heading h2 {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .moving-counter-section {
        padding: 65px 0;
    }

    .counter-heading {
        margin-bottom: 40px;
    }

    .counter-heading h2 {
        font-size: 30px;
    }

    .counter-heading p {
        font-size: 14px;
    }

    .counter-box {
        padding: 30px 20px;
    }

    .counter-value {
        font-size: 38px;
    }

}

@media (max-width: 480px) {

    .counter-heading h2 {
        font-size: 27px;
    }

}
.move-why-section {
    position: relative;
    padding: 100px 0;
    background: var(--move-white);
    overflow: hidden;
    z-index: 1;
}
.move-why-section::after{
    content: "";
    position: absolute;
    background-image: url(../images/floating-image3.png);
    background-repeat: no-repeat;
    width: 30%;
    height: 50%;
    bottom: 0%;
    left: 0;
    z-index: -1;
}

.move-why-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -180px;
    border-radius: 50%;
    background: rgba(232, 117, 34, 0.035);
    pointer-events: none;
}



.move-section-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 60px;
}

.move-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: var(--move-light);
    color: var(--move-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
}

.move-section-badge i {
    color: var(--move-primary);
    font-size: 12px;
}

.move-section-heading h2 {
    margin: 0 0 18px;
    color: var(--move-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 800;
}

.move-section-heading h2 span {
    color: var(--move-primary);
}

.move-section-heading p {
    max-width: 720px;
    margin: auto;
    color: var(--move-text-light);
    font-size: 16px;
    line-height: 1.9;
}

.move-why-content {
    position: relative;
    z-index: 2;
}

.move-image-wrapper {
    position: relative;
    height: 540px;
    overflow: hidden;
    border-radius: var(--move-radius-lg);
    box-shadow: var(--move-shadow-dark);
}

.move-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(23, 35, 45, .65),
        transparent 45%
    );
    pointer-events: none;
}

.move-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.move-image-wrapper:hover img {
    transform: scale(1.05);
}

.move-image-badge {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    box-shadow: var(--move-shadow);
}

.move-image-badge > i {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 20px;
}

.move-image-badge strong {
    display: block;
    margin-bottom: 3px;
    color: var(--move-dark);
    font-size: 15px;
}

.move-image-badge span {
    display: block;
    color: var(--move-text-light);
    font-size: 13px;
}

.move-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
}

.move-feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 108px;
    padding: 20px 25px;
    border: 1px solid var(--move-border);
    border-radius: var(--move-radius);
    background: var(--move-light-bg);
    transition: all .35s ease;
    cursor: pointer;
}

.move-feature::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 0;
    width: 4px;
    border-radius: 10px 0 0 10px;
    background: var(--move-primary);
    transform: scaleY(0);
    transition: transform .35s ease;
}

.move-feature:hover,
.move-feature.active {
    background: var(--move-primary);
    border-color: var(--move-primary);
    transform: translateX(-5px);
    box-shadow: var(--move-shadow);
}

.move-feature:hover::before,
.move-feature.active::before {
    transform: scaleY(1);
}

.move-feature-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--move-white);
    color: var(--move-primary);
    font-size: 25px;
    transition: all .35s ease;
}

.move-feature:hover .move-feature-icon,
.move-feature.active .move-feature-icon {
    background: var(--move-dark);
    color: var(--move-primary-light);
}

.move-feature-content h3 {
    margin: 0 0 7px;
    color: var(--move-dark);
    font-size: 19px;
    font-weight: 800;
    transition: color .35s ease;
}

.move-feature-content p {
    margin: 0;
    color: var(--move-text-light);
    font-size: 14px;
    line-height: 1.7;
    transition: color .35s ease;
}

.move-feature:hover .move-feature-content h3,
.move-feature.active .move-feature-content h3 {
    color: var(--move-white);
}

.move-feature:hover .move-feature-content p,
.move-feature.active .move-feature-content p {
    color: rgba(255, 255, 255, .86);
}

.move-side-card {
    position: relative;
    height: 100%;
    padding: 30px 25px;
    border-radius: var(--move-radius-lg);
    background: var(--move-dark);
    color: var(--move-white);
    overflow: hidden;
    box-shadow: var(--move-shadow-dark);
    display: none;
}

.move-side-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -80px;
    left: -70px;
    border-radius: 50%;
    background: rgba(232, 117, 34, .15);
}

.move-side-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(61, 113, 133, .2);
}

.move-side-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 25px;
}

.move-side-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 800;
}

.move-side-card > p {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.8;
}

.move-car-types {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.move-car-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.move-car-type:hover {
    background: rgba(232, 117, 34, .15);
    border-color: rgba(232, 117, 34, .35);
}

.move-car-type i {
    width: 30px;
    color: var(--move-primary-light);
    font-size: 17px;
    text-align: center;
}

.move-car-type span {
    color: var(--move-white);
    font-size: 13px;
    font-weight: 600;
}

.move-call-btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 11px;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all .3s ease;
}

.move-call-btn:hover {
    background: var(--move-primary-light);
    color: var(--move-white);
    transform: translateY(-2px);
}

.move-locations {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 35px;
    padding: 22px 25px;
    border: 1px solid var(--move-border);
    border-radius: var(--move-radius);
    background: var(--move-light-bg);
}

.move-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--move-dark);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.move-location-title i {
    color: var(--move-primary);
    font-size: 20px;
}

.move-location-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.move-location-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 50px;
    background: var(--move-white);
    color: var(--move-text);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--move-border);
    transition: all .3s ease;
}

.move-location-list span:hover {
    color: var(--move-white);
    background: var(--move-primary);
    border-color: var(--move-primary);
}

.move-location-list i {
    color: var(--move-primary);
}

.move-location-list span:hover i {
    color: var(--move-white);
}
@media screen and (max-width:991px) {
    .move-why-section::after{
 display: none;
}
.move-side-card {
   
    display: block;
}
}
@media (max-width: 1199px) {
    .move-feature {
        padding: 18px;
        gap: 15px;
    }

    .move-feature-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .move-feature-content h3 {
        font-size: 17px;
    }

    .move-feature-content p {
        font-size: 13px;
    }

    .move-locations {
        flex-direction: column;
        align-items: flex-start;
    }

    .move-location-list {
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    .move-why-section {
        padding: 75px 0;
    }

    .move-section-heading {
        margin-bottom: 45px;
    }

    .move-image-wrapper {
        height: 480px;
    }

    .move-features {
        padding: 0;
    }

    .move-side-card {
        margin-top: 10px;
    }

    .move-location-list {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .move-why-section {
        padding: 60px 0;
    }

    .move-section-heading h2 {
        font-size: 30px;
    }

    .move-section-heading p {
        font-size: 14px;
    }

    .move-image-wrapper {
        height: 420px;
    }

    .move-image-badge {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }

    .move-feature {
        min-height: auto;
        padding: 18px 15px;
        gap: 13px;
    }

    .move-feature-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 19px;
    }

    .move-feature-content h3 {
        font-size: 15px;
    }

    .move-feature-content p {
        font-size: 12px;
    }

    .move-feature:hover,
    .move-feature.active {
        transform: none;
    }

    .move-side-card {
        padding: 25px 20px;
    }

    .move-locations {
        padding: 18px;
    }

    .move-location-title {
        white-space: normal;
        font-size: 14px;
    }

    .move-location-list span {
        font-size: 11px;
    }
}
.move-regions-section {
    position: relative;
    padding: 100px 0;
    background: var(--move-light-bg);
    overflow: hidden;
}

.move-regions-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(232, 117, 34, .05);
}

.move-regions-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -180px;
    left: -150px;
    border-radius: 50%;
    background: rgba(61, 113, 133, .05);
}

.move-regions-heading {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 55px;
}

.move-regions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: var(--move-white);
    color: var(--move-dark);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--move-shadow);
}

.move-regions-badge i {
    color: var(--move-primary);
}

.move-regions-heading h2 {
    margin: 0 0 16px;
    color: var(--move-dark);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;
}

.move-regions-heading h2 span {
    color: var(--move-primary);
}

.move-regions-heading p {
    max-width: 700px;
    margin: auto;
    color: var(--move-text-light);
    font-size: 15px;
    line-height: 1.9;
}

.move-map-wrapper {
    position: relative;
    height: 100%;
    min-height: 530px;
    overflow: hidden;
    border-radius: var(--move-radius-lg);
    background: var(--move-dark);
    box-shadow: var(--move-shadow-dark);
}

.move-map-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 25px;
    background: var(--move-dark);
}

.move-map-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 22px;
}

.move-map-header span {
    display: block;
    margin-bottom: 3px;
    color: var(--move-primary-light);
    font-size: 11px;
    font-weight: 700;
}

.move-map-header h3 {
    margin: 0;
    color: var(--move-white);
    font-size: 19px;
    font-weight: 800;
}

.move-map {
    position: relative;
    width: 100%;
    height: 385px;
    overflow: hidden;
    background: var(--move-light);
}

.move-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.move-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 22px;
    background: var(--move-dark);
}

.move-map-footer > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
}

.move-map-footer > div i {
    color: var(--move-primary);
    font-size: 16px;
}

.move-map-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--move-primary-light);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    direction: ltr;
}

.move-map-footer a i {
    font-size: 12px;
}

.move-regions-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.move-region-main-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    margin-bottom: 15px;
    border-radius: var(--move-radius);
    background: var(--move-dark);
    color: var(--move-white);
    box-shadow: var(--move-shadow);
    transition: all .35s ease;
}

.move-region-main-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--move-shadow-dark);
}

.move-region-main-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--move-primary);
    color: var(--move-white);
    font-size: 25px;
}

.move-region-main-card span {
    display: block;
    margin-bottom: 3px;
    color: var(--move-primary-light);
    font-size: 11px;
    font-weight: 700;
}

.move-region-main-card h3 {
    margin: 0 0 5px;
    font-size: 23px;
    font-weight: 800;
}

.move-region-main-card p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.7;
}

.move-region-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--move-border);
    border-radius: var(--move-radius);
    background: var(--move-white);
    transition: all .35s ease;
}

.move-region-card:hover {
    border-color: var(--move-primary);
    transform: translateY(-4px);
    box-shadow: var(--move-shadow);
}

.move-region-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(232, 117, 34, .1);
    color: var(--move-primary);
    font-size: 17px;
}

.move-region-card h4 {
    margin: 2px 0 5px;
    color: var(--move-dark);
    font-size: 16px;
    font-weight: 800;
}

.move-region-card p {
    margin: 0;
    color: var(--move-text-light);
    font-size: 12px;
    line-height: 1.6;
}

.move-service-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid var(--move-border);
    border-radius: var(--move-radius);
    background: var(--move-white);
}

.move-service-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.move-service-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--move-light);
    color: var(--move-primary);
}

.move-service-info strong {
    display: block;
    color: var(--move-dark);
    font-size: 13px;
}

.move-service-info span {
    display: block;
    margin-top: 3px;
    color: var(--move-text-light);
    font-size: 11px;
}

.move-regions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 125px;
    padding: 12px 17px;
    border-radius: 10px;
    background: var(--move-primary);
    color: var(--move-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all .3s ease;
}

.move-regions-btn:hover {
    background: var(--move-primary-dark);
    color: var(--move-white);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .move-regions-section {
        padding: 75px 0;
    }

    .move-map-wrapper {
        min-height: auto;
    }

    .move-map {
        height: 400px;
    }

    .move-regions-content {
        height: auto;
    }
}

@media (max-width: 575px) {
    .move-regions-section {
        padding: 60px 0;
    }

    .move-regions-heading {
        margin-bottom: 40px;
    }

    .move-regions-heading h2 {
        font-size: 30px;
    }

    .move-regions-heading p {
        font-size: 13px;
    }

    .move-map-header {
        padding: 18px;
    }

    .move-map-header h3 {
        font-size: 16px;
    }

    .move-map {
        height: 320px;
    }

    .move-map-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .move-region-main-card {
        padding: 18px;
    }

    .move-region-main-icon {
        width: 55px;
        height: 55px;
        flex-basis: 55px;
    }

    .move-region-main-card h3 {
        font-size: 20px;
    }

    .move-region-main-card p {
        font-size: 11px;
    }

    .move-service-box {
        flex-direction: column;
        align-items: stretch;
    }

    .move-regions-btn {
        width: 100%;
    }
}
 

.moving-gallery-section {
    padding: 100px 0;
    background: var(--move-light-bg);
    overflow: hidden;
}

 
.section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--move-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    color: var(--move-dark);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 18px;
}

.section-title span {
    color: var(--move-primary);
}

.section-description {
    color: var(--move-text-light);
    font-size: 16px;
    line-height: 1.9;
    margin: 0 auto;
}

 
.moving-gallery {
    column-count: 3;
    column-gap: 20px;
}

 
.gallery-item {
    position: relative;

    width: 100%;

    margin-bottom: 20px;

    overflow: hidden;

    border-radius: var(--move-radius-lg);

    background: var(--move-white);

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

    break-inside: avoid;

    cursor: pointer;
}


 
.gallery-item img {
    display: block;

    width: 100%;
    height: auto;

    transition: transform 0.6s ease;
}

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


 
.gallery-item-large img {
    min-height: 430px;
    object-fit: cover;
}

.gallery-item-tall img {
    min-height: 520px;
    object-fit: cover;
}

.gallery-item-wide img {
    min-height: 300px;
    object-fit: cover;
}

 
.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(23, 35, 45, 0.92),
            rgba(23, 35, 45, 0.45) 40%,
            transparent 75%
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


 
.gallery-content {
    color: var(--move-white);

    transform: translateY(20px);

    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}


.gallery-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 12px;

    background: var(--move-primary);

    color: var(--move-white);

    border-radius: 50%;

    font-size: 18px;
}


.gallery-content h3 {
    margin: 0 0 7px;

    color: var(--move-white);

    font-size: 21px;
    font-weight: 800;
}


.gallery-content p {
    margin: 0;

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

    font-size: 14px;
}


 
.moving-areas {
    margin-top: 70px;

    padding: 35px;

    background: var(--move-white);

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

    border-radius: var(--move-radius-lg);

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


.areas-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 30px;
}


.areas-heading > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    background: rgba(232, 117, 34, 0.1);

    color: var(--move-primary);

    border-radius: 50%;

    font-size: 24px;
}


.areas-heading small {
    display: block;

    color: var(--move-primary);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 5px;
}


.areas-heading h3 {
    margin: 0;

    color: var(--move-dark);

    font-size: 24px;
    font-weight: 800;
}


.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.area-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    background: var(--move-light-bg);

    color: var(--move-text);

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}


.area-item i {
    color: var(--move-primary);
}


.area-item:hover {
    color: var(--move-primary);

    transform: translateY(-2px);
}


.area-item-special {
    background: rgba(232, 117, 34, 0.08);

    color: var(--move-primary);
}


 
.gallery-cta {
    margin-top: 35px;

    padding: 28px 32px;

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

    gap: 25px;

    background: var(--move-dark);

    border-radius: var(--move-radius-lg);

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


.cta-content {
    display: flex;
    align-items: center;

    gap: 18px;
}


.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    flex-shrink: 0;

    background: var(--move-primary);

    color: var(--move-white);

    border-radius: 50%;

    font-size: 20px;
}


.cta-content h3 {
    color: var(--move-white);

    font-size: 20px;
    font-weight: 800;

    margin: 0 0 5px;
}


.cta-content p {
    color: rgba(255, 255, 255, 0.65);

    margin: 0;

    font-size: 14px;
}


.cta-buttons {
    display: flex;
    gap: 10px;
}


.cta-phone,
.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 20px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}


.cta-phone {
    background: var(--move-white);
    color: var(--move-dark);
}


.cta-phone:hover {
    color: var(--move-primary);
    transform: translateY(-2px);
}


.cta-whatsapp {
    background: #25D366;
    color: var(--move-white);
}


.cta-whatsapp:hover {
    color: var(--move-white);
    transform: translateY(-2px);
}


 
@media (max-width: 991px) {

    .moving-gallery {
        column-count: 2;
    }

    .gallery-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-phone,
    .cta-whatsapp {
        flex: 1;
    }
}


@media (max-width: 767px) {

    .moving-gallery-section {
        padding: 70px 0;
    }

    .moving-gallery {
        column-count: 2;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .gallery-item-large img,
    .gallery-item-tall img,
    .gallery-item-wide img {
        min-height: 280px;
    }

     .gallery-overlay {
        opacity: 1;
        padding: 15px;
    }

    .gallery-content {
        transform: translateY(0);
    }

    .gallery-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .gallery-content h3 {
        font-size: 15px;
    }

    .gallery-content p {
        font-size: 11px;
    }

    .moving-areas {
        padding: 25px 20px;
        margin-top: 50px;
    }

    .areas-heading h3 {
        font-size: 20px;
    }

    .area-item {
        padding: 10px 13px;
        font-size: 13px;
    }

    .gallery-cta {
        padding: 25px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-phone,
    .cta-whatsapp {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .moving-gallery {
        column-count: 1;
    }

    .gallery-item-large img,
    .gallery-item-tall img,
    .gallery-item-wide img {
        min-height: 300px;
    }

}
 
.moving-contact {
    padding: 100px 0;

    background: var(--move-white);

    position: relative;

    overflow: hidden;
}


 
.contact-wrapper {

    position: relative;

    padding: 70px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            var(--move-dark),
            var(--move-dark-2)
        );

    box-shadow: var(--move-shadow-dark);

    overflow: hidden;

}


 
.contact-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.contact-decoration-1 {

    width: 350px;
    height: 350px;

    top: -180px;
    left: -120px;

    background:
        rgba(232, 117, 34, 0.12);

}


.contact-decoration-2 {

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -160px;

    background:
        rgba(61, 113, 133, 0.18);

}


 
.contact-content {

    position: relative;

    z-index: 2;

    color: var(--move-white);

}


.contact-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 15px;

    margin-bottom: 18px;

    background:
        rgba(232, 117, 34, 0.13);

    border: 1px solid
        rgba(232, 117, 34, 0.3);

    border-radius: 50px;

    color: var(--move-primary-light);

    font-size: 14px;

    font-weight: 700;

}


.contact-content h2 {

    margin: 0 0 20px;

    max-width: 650px;

    color: var(--move-white);

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

    font-weight: 900;

    line-height: 1.25;

}


.contact-content h2 span {

    color: var(--move-primary);

}


.contact-description {

    max-width: 650px;

    margin-bottom: 35px;

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

    font-size: 16px;

    line-height: 2;

}


 
.contact-services {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 35px;

}


.contact-service {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 16px;

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

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

    border-radius: 12px;

}


.contact-service > span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    background:
        rgba(232, 117, 34, 0.14);

    color: var(--move-primary-light);

    border-radius: 10px;

}


.contact-service strong {

    display: block;

    color: var(--move-white);

    font-size: 13px;

    margin-bottom: 3px;

}


.contact-service small {

    display: block;

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

    font-size: 11px;

}


 
.main-phone {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 7px 20px 7px 20px;

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

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

    border-radius: 60px;

}


.phone-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    background: var(--move-primary);

    color: var(--move-white);

    border-radius: 50%;

    font-size: 18px;

    animation: phonePulse 2s infinite;

}


.phone-info small {

    display: block;

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

    font-size: 11px;

    margin-bottom: 2px;

}


.phone-info a {

    color: var(--move-white);

    text-decoration: none;

    font-size: 22px;

    font-weight: 800;

    direction: ltr;

    display: block;

}


.phone-info a:hover {

    color: var(--move-primary-light);

}


@keyframes phonePulse {

    0% {
        box-shadow: 0 0 0 0
        rgba(232, 117, 34, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px
        rgba(232, 117, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0
        rgba(232, 117, 34, 0);
    }

}


 
.contact-card {

    position: relative;

    z-index: 2;

    padding: 40px 32px;

    text-align: center;

    background: var(--move-white);

    border-radius: 24px;

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

}


.card-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 70px;
    height: 70px;

    margin: 0 auto 18px;

    background: #25D366;

    color: var(--move-white);

    border-radius: 50%;

    font-size: 35px;

    box-shadow:
        0 10px 25px
        rgba(37, 211, 102, 0.25);

}


.card-small-title {

    display: block;

    color: var(--move-primary);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;

}


.contact-card h3 {

    margin: 0 0 12px;

    color: var(--move-dark);

    font-size: 25px;

    font-weight: 900;

}


.contact-card > p {

    margin: 0 auto 25px;

    max-width: 380px;

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

    font-size: 14px;

    line-height: 1.9;

}


 
.whatsapp-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 15px 20px;

    background: #25D366;

    color: var(--move-white);

    border-radius: 12px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(37, 211, 102, 0.2);

    transition: all 0.3s ease;

}


.whatsapp-button i:last-child {

    margin-right: auto;

}


.whatsapp-button:hover {

    color: var(--move-white);

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(37, 211, 102, 0.3);

}


 
.card-divider {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 22px 0;

    color: #A0A8AC;

    font-size: 12px;

}


.card-divider::before,
.card-divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: var(--move-border);

}


 
.call-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 14px 20px;

    background: var(--move-light-bg);

    color: var(--move-dark);

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

    border-radius: 12px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

    transition: all 0.3s ease;

}


.call-button i {

    color: var(--move-primary);

}


.call-button:hover {

    background: var(--move-primary);

    color: var(--move-white);

    border-color: var(--move-primary);

    transform: translateY(-2px);

}


.call-button:hover i {

    color: var(--move-white);

}


 
.availability {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 20px;

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

    font-size: 12px;

}


.status-dot {

    width: 8px;
    height: 8px;

    background: #25D366;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(37, 211, 102, 0.12);

}


 
@media (max-width: 991px) {

    .contact-wrapper {

        padding: 55px 35px;

    }

    .contact-content {

        text-align: center;

    }

    .contact-label {

        margin-left: auto;
        margin-right: auto;

    }

    .contact-description {

        margin-left: auto;
        margin-right: auto;

    }

    .contact-services {

        justify-content: center;

    }

    .main-phone {

        margin: auto;

    }

}


@media (max-width: 767px) {

    .moving-contact {

        padding: 70px 0;

    }

    .contact-wrapper {

        padding: 45px 20px;

        border-radius: 22px;

    }

    .contact-content h2 {

        font-size: 32px;

    }

    .contact-description {

        font-size: 14px;

    }

    .contact-services {

        flex-direction: column;

        align-items: stretch;

    }

    .contact-service {

        text-align: right;

    }

    .main-phone {

        display: flex;

        width: 100%;

        justify-content: center;

        padding: 9px;

    }

    .phone-info {

        text-align: right;

    }

    .phone-info a {

        font-size: 20px;

    }

    .contact-card {

        padding: 35px 22px;

    }

}


@media (max-width: 400px) {

    .phone-info a {

        font-size: 18px;

    }

    .contact-content h2 {

        font-size: 28px;

    }

}
 .moving-footer {
    background: var(--move-dark);
    color: var(--move-white);
    position: relative;
    overflow: hidden;
}

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

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    background: var(--move-primary);
    color: var(--move-white);
    border-radius: 14px;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    color: var(--move-white);
    transform: translateY(-3px);
    background: var(--move-primary-light);
}

.footer-brand h4 {
    margin: 0 0 15px;
    color: var(--move-white);
    font-size: 21px;
    font-weight: 800;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 2;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--move-primary);
    color: var(--move-white);
    border-color: var(--move-primary);
    transform: translateY(-3px);
}

.footer-column h5 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: var(--move-white);
    font-size: 17px;
    font-weight: 800;
}

.footer-column h5::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--move-primary);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 13px;
}

.footer-column ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--move-primary-light);
    transform: translateX(-4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(232, 117, 34, 0.12);
    color: var(--move-primary-light);
    border-radius: 10px;
}

.footer-contact-item small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.footer-contact-item a {
    color: var(--move-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--move-primary-light);
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--move-primary-light);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-column {
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-brand h4 {
        font-size: 19px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }
} 
.designed-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.designed-by span {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.designer-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  padding: 6px;
  border-radius: 10px;

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

  transition: all 0.3s ease;
}

.designer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    border-radius: 10px;

}

.designer-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 52px;
    height: 52px;

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

    border: none;
    border-radius: 50%;

    background: var(--move-primary);
    color: var(--move-white);

    font-size: 18px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    z-index: 99998;

    box-shadow:
        0 10px 25px rgba(232, 117, 34, 0.30);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--move-primary-dark);
    transform: translateY(-4px);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}


@media (max-width: 768px) {

    .back-to-top {
        width: 46px;
        height: 46px;

        bottom: 20px;
        right: 18px;

        font-size: 16px;
    }

}