/* =====================================================
           1. إعدادات التصميم الأساسية
        ===================================================== */

        :root {
            --orange: #f8753b;
            --orange-dark: #df5b25;

            --plum: #704d59;
            --plum-dark: #4d3540;

            --background: #faf7f4;
            --background-secondary: #ffffff;

            --text: #251f23;
            --text-secondary: #746b71;

            --border: rgba(77, 53, 64, 0.14);

            --header-background: rgba(255, 255, 255, 0.90);

            --shadow:
                0 20px 55px rgba(77, 53, 64, 0.12);

            --small-shadow:
                0 10px 30px rgba(77, 53, 64, 0.08);

            --container-width: 1180px;

            --large-radius: 28px;
            --medium-radius: 20px;
            --small-radius: 14px;
        }

        html[data-theme="dark"] {
            --background: #171316;
            --background-secondary: #211b1f;

            --text: #fff8f4;
            --text-secondary: #c9bec3;

            --border: rgba(255, 255, 255, 0.12);

            --header-background: rgba(23, 19, 22, 0.92);

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

            --small-shadow:
                0 10px 35px rgba(0, 0, 0, 0.24);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family:
                "Segoe UI",
                Tahoma,
                Arial,
                sans-serif;

            background:
                radial-gradient(
                    circle at 90% 5%,
                    rgba(248, 117, 59, 0.10),
                    transparent 420px
                ),
                radial-gradient(
                    circle at 10% 35%,
                    rgba(112, 77, 89, 0.08),
                    transparent 450px
                ),
                var(--background);

            color: var(--text);

            line-height: 1.75;

            overflow-x: hidden;

            transition:
                background 0.25s ease,
                color 0.25s ease;
        }

        body.menu-open {
            overflow: hidden;
        }

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

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        button {
            cursor: pointer;
        }

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

        section {
            padding: 95px 0;
        }

        .container {
            width:
                min(
                    var(--container-width),
                    calc(100% - 40px)
                );

            margin: 0 auto;
        }

        .section-header {
            max-width: 760px;
            margin-bottom: 45px;
        }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            color: var(--orange-dark);

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

            margin-bottom: 14px;
        }

        .section-label::before {
            content: "";

            width: 28px;
            height: 3px;

            border-radius: 100px;

            background:
                linear-gradient(
                    90deg,
                    var(--orange),
                    var(--plum)
                );
        }

        .section-header.center .section-label {
            justify-content: center;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
        }

        h1 {
            font-size:
                clamp(
                    40px,
                    6vw,
                    78px
                );

            margin-bottom: 23px;
        }

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

            margin-bottom: 18px;
        }

        h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .description {
            color: var(--text-secondary);
            font-size: 18px;
        }

        .gradient-text {
            background:
                linear-gradient(
                    130deg,
                    var(--orange-dark),
                    var(--plum)
                );

            color: transparent;

            background-clip: text;
            -webkit-background-clip: text;
        }

        /* =====================================================
           2. الأزرار
        ===================================================== */

        .button {
            min-height: 50px;

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

            gap: 10px;

            padding: 12px 24px;

            border-radius: 100px;

            border: 1px solid transparent;

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

            transition:
                transform 0.20s ease,
                background 0.20s ease,
                box-shadow 0.20s ease;
        }

        .button:hover {
            transform: translateY(-3px);
        }

        .button-primary {
            color: white;

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

            box-shadow:
                0 13px 28px rgba(223, 91, 37, 0.25);
        }

        .button-secondary {
            color: var(--text);

            background: var(--background-secondary);

            border-color: var(--border);

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

        /* =====================================================
           3. الهيدر
        ===================================================== */

        .site-header {
            position: sticky;
            top: 0;

            z-index: 1000;

            background: var(--header-background);

            backdrop-filter: blur(18px);

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

        .header-content {
            min-height: 80px;

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

            gap: 20px;
        }

        .brand {
            display: flex;
            align-items: center;

            gap: 12px;

            flex-shrink: 0;
        }

        .brand img {
            width: 92px;
            height: 57px;

            object-fit: contain;
        }

        .brand-text {
            line-height: 1.2;
        }

        .brand-text strong {
            display: block;

            font-size: 15px;
            letter-spacing: 1.5px;
        }

        .brand-text span {
            display: block;

            color: var(--text-secondary);

            font-size: 11px;

            margin-top: 4px;
        }

        .main-navigation {
            display: flex;
            align-items: center;

            gap: 27px;
        }

        .main-navigation a {
            color: var(--text-secondary);

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

            transition: color 0.20s ease;
        }

        .main-navigation a:hover,
        .main-navigation a.active {
            color: var(--orange-dark);
        }

        .header-actions {
            display: flex;
            align-items: center;

            gap: 10px;
        }

        .language-switcher {
            display: flex;

            padding: 4px;

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

            background: var(--background-secondary);
        }

        .language-switcher button {
            border: 0;

            padding: 7px 10px;

            border-radius: 100px;

            color: var(--text-secondary);
            background: transparent;

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

        .language-switcher button.active {
            color: white;
            background: var(--plum);
        }

        .icon-button {
            width: 42px;
            height: 42px;

            display: grid;
            place-items: center;

            border-radius: 50%;

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

            color: var(--text);
            background: var(--background-secondary);

            font-size: 18px;

            transition:
                transform 0.20s ease,
                border-color 0.20s ease;
        }

        .icon-button:hover {
            transform: translateY(-2px);
            border-color: var(--orange);
        }

        .mobile-menu-button {
            display: none;
        }

        /* =====================================================
           4. الصفحة الرئيسية
        ===================================================== */

        .hero {
            min-height: calc(100vh - 80px);

            display: grid;
            align-items: center;

            position: relative;

            padding: 75px 0 65px;

            overflow: hidden;
        }

        .hero::before {
            content: "";

            position: absolute;

            width: 470px;
            height: 470px;

            border-radius: 50%;

            border:
                1px solid
                rgba(248, 117, 59, 0.18);

            top: -160px;
            inset-inline-end: -180px;
        }

        .hero-grid {
            display: grid;

            grid-template-columns:
                1.05fr
                0.95fr;

            align-items: center;

            gap: 55px;
        }

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

        .hero-description {
            max-width: 680px;

            color: var(--text-secondary);

            font-size: 18px;

            margin-bottom: 31px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;

            gap: 13px;

            margin-bottom: 36px;
        }

        .hero-features {
            display: grid;

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

            gap: 12px;
        }

        .hero-feature {
            padding: 15px;

            border-radius: var(--small-radius);

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

            background: var(--background-secondary);
        }

        .hero-feature strong {
            display: block;

            color: var(--plum);

            font-size: 17px;

            margin-bottom: 3px;
        }

        html[data-theme="dark"] .hero-feature strong {
            color: #ffb795;
        }

        .hero-feature span {
            display: block;

            color: var(--text-secondary);

            font-size: 13px;
        }

        /* =====================================================
           5. البطاقة البصرية في الرئيسية
        ===================================================== */

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

            position: relative;

            display: grid;
            place-items: center;
        }

        .shipping-visual {
            width: min(100%, 520px);

            padding: 28px;

            border-radius: 38px;

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

            background:
                linear-gradient(
                    145deg,
                    rgba(248, 117, 59, 0.16),
                    rgba(112, 77, 89, 0.17)
                ),
                var(--background-secondary);

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

        .route-card {
            padding: 22px;

            border-radius: 22px;

            background: var(--background-secondary);

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

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

        .route-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;

            color: var(--text-secondary);

            font-size: 13px;

            margin-bottom: 20px;
        }

        .route-points {
            display: grid;

            grid-template-columns:
                auto
                1fr
                auto;

            align-items: center;

            gap: 16px;
        }

        .route-point {
            text-align: center;
        }

        .route-point strong {
            display: block;

            font-size: 26px;
        }

        .route-point span {
            color: var(--text-secondary);
            font-size: 12px;
        }

        .route-line {
            height: 2px;

            position: relative;

            background:
                repeating-linear-gradient(
                    90deg,
                    var(--orange) 0 9px,
                    transparent 9px 17px
                );
        }

        .route-plane {
            width: 31px;
            height: 31px;

            display: grid;
            place-items: center;

            position: absolute;

            top: 50%;
            left: 50%;

            transform: translate(-50%, -50%);

            border-radius: 50%;

            color: var(--plum);
            background: var(--background-secondary);
        }

        html[dir="rtl"] .route-plane {
            transform:
                translate(-50%, -50%)
                scaleX(-1);
        }

        .visual-service-grid {
            display: grid;

            grid-template-columns:
                1fr
                1fr;

            gap: 14px;

            margin-top: 14px;
        }

        .visual-service {
            min-height: 140px;

            padding: 20px;

            border-radius: 21px;

            color: white;
        }

        .visual-service.air {
            background:
                linear-gradient(
                    145deg,
                    #f8753b,
                    #df5721
                );
        }

        .visual-service.sea {
            background:
                linear-gradient(
                    145deg,
                    #76505d,
                    #4e3540
                );
        }

        .visual-service-icon {
            font-size: 30px;
            margin-bottom: 17px;
        }

        .visual-service strong {
            display: block;
            margin-bottom: 2px;
        }

        .visual-service span {
            display: block;

            opacity: 0.82;

            font-size: 13px;
        }

        .floating-destination {
            position: absolute;

            bottom: 28px;
            inset-inline-start: 0;

            max-width: 215px;

            padding: 17px 19px;

            border-radius: 20px;

            background: var(--background-secondary);

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

            box-shadow: var(--shadow);

            animation:
                floating-card
                5s
                ease-in-out
                infinite;
        }

        .floating-destination strong {
            display: block;

            color: var(--orange-dark);
        }

        .floating-destination span {
            display: block;

            color: var(--text-secondary);

            font-size: 13px;
        }

        @keyframes floating-card {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* =====================================================
           6. الشريط المتحرك
        ===================================================== */

        .destination-strip {
            padding: 16px 0;

            overflow: hidden;

            color: white;

            background:
                linear-gradient(
                    90deg,
                    var(--plum-dark),
                    var(--plum)
                );
        }

        .destination-track {
            display: flex;

            width: max-content;

            gap: 40px;

            white-space: nowrap;

            animation:
                moving-destinations
                28s
                linear
                infinite;
        }

        html[dir="rtl"] .destination-track {
            animation-direction: reverse;
        }

        .destination-track span {
            display: inline-flex;
            align-items: center;

            gap: 9px;

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

        .destination-track b {
            color: #ffb58f;
        }

        @keyframes moving-destinations {
            to {
                transform: translateX(-50%);
            }
        }

        /* =====================================================
           7. قسم من نحن
        ===================================================== */

        .about-grid {
            display: grid;

            grid-template-columns:
                0.92fr
                1.08fr;

            align-items: center;

            gap: 55px;
        }

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

            padding: 30px;

            border-radius: 33px;

            color: white;

            background:
                linear-gradient(
                    145deg,
                    var(--orange),
                    var(--plum)
                );

            box-shadow: var(--shadow);

            position: relative;
            overflow: hidden;
        }

        .about-visual::before,
        .about-visual::after {
            content: "";

            position: absolute;

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

            border-radius: 50%;
        }

        .about-visual::before {
            width: 390px;
            height: 390px;

            top: -130px;
            left: -110px;
        }

        .about-visual::after {
            width: 280px;
            height: 280px;

            right: -100px;
            bottom: -110px;
        }

        .about-visual-content {
            height: 100%;

            display: flex;
            flex-direction: column;
            justify-content: space-between;

            position: relative;

            z-index: 2;
        }

        .about-logo {
            width: 175px;

            padding: 14px;

            border-radius: 22px;

            background: white;

            box-shadow:
                0 16px 36px rgba(0, 0, 0, 0.18);
        }

        .about-route-card {
            width: min(100%, 340px);

            align-self: flex-end;

            padding: 21px;

            border-radius: 22px;

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

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

            backdrop-filter: blur(9px);
        }

        .about-route-card strong {
            display: block;

            font-size: 19px;

            margin-bottom: 4px;
        }

        .about-route-card span {
            opacity: 0.83;
            font-size: 14px;
        }

        .mission-grid {
            display: grid;

            grid-template-columns:
                1fr
                1fr;

            gap: 14px;

            margin-top: 25px;
        }

        .mission-card {
            padding: 20px;

            border-radius: var(--small-radius);

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

            background: var(--background-secondary);

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

        .mission-card strong {
            display: block;

            color: var(--orange-dark);

            margin-bottom: 5px;
        }

        .mission-card span {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* =====================================================
           8. الخدمات
        ===================================================== */

        .services-section {
            background: var(--background-secondary);
        }

        .services-grid {
            display: grid;

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

            gap: 18px;
        }

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

            position: relative;

            padding: 28px 24px;

            overflow: hidden;

            border-radius: 24px;

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

            background: var(--background);

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }

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

            border-color:
                rgba(248, 117, 59, 0.50);

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

        .service-number {
            position: absolute;

            top: 15px;
            inset-inline-end: 18px;

            color:
                rgba(112, 77, 89, 0.08);

            font-size: 73px;
            font-weight: 900;

            line-height: 1;
        }

        html[data-theme="dark"] .service-number {
            color:
                rgba(255, 255, 255, 0.06);
        }

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

            display: grid;
            place-items: center;

            border-radius: 18px;

            color: var(--orange-dark);
            background: rgba(248, 117, 59, 0.12);

            font-size: 28px;

            margin-bottom: 23px;
        }

        .service-card p {
            color: var(--text-secondary);

            font-size: 15px;

            margin-bottom: 18px;
        }

        .service-card ul {
            padding-inline-start: 19px;

            color: var(--text-secondary);

            font-size: 14px;
        }

        .service-card li + li {
            margin-top: 8px;
        }

        /* =====================================================
           9. لماذا نحن
        ===================================================== */

        .why-grid {
            display: grid;

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

            gap: 16px;
        }

        .why-card {
            padding: 27px 23px;

            border-radius: 22px;

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

            background: var(--background-secondary);

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

        .why-icon {
            width: 46px;
            height: 46px;

            display: grid;
            place-items: center;

            border-radius: 15px;

            color: var(--orange-dark);
            background: rgba(248, 117, 59, 0.12);

            font-size: 22px;

            margin-bottom: 18px;
        }

        .why-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* =====================================================
           10. الإحصائيات
        ===================================================== */

        .statistics {
            padding: 38px 0;

            color: white;

            background: var(--plum-dark);
        }

        .statistics-grid {
            display: grid;

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

        .statistic {
            padding: 17px;
            text-align: center;

            border-inline-end:
                1px solid
                rgba(255, 255, 255, 0.16);
        }

        .statistic:last-child {
            border-inline-end: 0;
        }

        .statistic strong {
            display: block;

            color: #ffb38d;

            font-size: 43px;
        }

        .statistic span {
            display: block;

            opacity: 0.84;

            font-size: 14px;
        }

        /* =====================================================
           11. الوجهات
        ===================================================== */

        .destinations-grid {
            display: grid;

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

            gap: 18px;
        }

        .destination-card {
            padding: 26px;

            position: relative;
            overflow: hidden;

            border-radius: 24px;

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

            background: var(--background-secondary);

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

        .destination-card::after {
            content: "";

            position: absolute;

            width: 95px;
            height: 95px;

            top: -38px;
            inset-inline-end: -38px;

            border-radius: 50%;

            background:
                rgba(248, 117, 59, 0.10);
        }

        .country-flag {
            font-size: 37px;

            margin-bottom: 13px;

            position: relative;
            z-index: 2;
        }

        .destination-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* =====================================================
           12. خطوات العمل
        ===================================================== */

        .process-section {
            background: var(--background-secondary);
        }

        .process-grid {
            display: grid;

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

            gap: 18px;
        }

        .process-card {
            padding: 27px 23px;

            border-radius: 22px;

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

            background: var(--background);
        }

        .process-number {
            width: 49px;
            height: 49px;

            display: grid;
            place-items: center;

            border-radius: 15px;

            color: white;

            background:
                linear-gradient(
                    145deg,
                    var(--orange),
                    var(--orange-dark)
                );

            font-weight: 900;

            margin-bottom: 18px;
        }

        .process-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* =====================================================
           13. التواصل
        ===================================================== */

        .contact-section {
            color: white;

            background:
                radial-gradient(
                    circle at 15% 20%,
                    rgba(248, 117, 59, 0.25),
                    transparent 400px
                ),
                linear-gradient(
                    145deg,
                    #4e3540,
                    #251a20
                );
        }

        .contact-section .description {
            color:
                rgba(255, 255, 255, 0.72);
        }

        .contact-grid {
            display: grid;

            grid-template-columns:
                0.9fr
                1.1fr;

            gap: 24px;
        }

        .contact-information,
        .contact-form-box {
            padding: 29px;

            border-radius: 28px;

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

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

            backdrop-filter: blur(10px);
        }

        .contact-list {
            display: grid;
            gap: 14px;

            margin-bottom: 21px;
        }

        .contact-item {
            display: grid;

            grid-template-columns:
                47px
                1fr;

            gap: 14px;

            padding: 15px;

            border-radius: 18px;

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

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

            display: grid;
            place-items: center;

            border-radius: 15px;

            color: #ffb38d;

            background:
                rgba(248, 117, 59, 0.18);

            font-size: 21px;
        }

        .contact-item strong {
            display: block;
            margin-bottom: 4px;
        }

        .contact-item p,
        .contact-item a {
            color:
                rgba(255, 255, 255, 0.72);

            font-size: 14px;
        }

        .contact-buttons {
            display: flex;
            flex-wrap: wrap;

            gap: 10px;
        }

        .map-container {
            margin-top: 21px;

            overflow: hidden;

            border-radius: 20px;

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

        .map-container iframe {
            width: 100%;
            height: 235px;

            border: 0;
        }

        .map-note {
            color:
                rgba(255, 255, 255, 0.62);

            font-size: 12px;

            margin-top: 8px;
        }

        .contact-form-box {
            color: var(--text);
            background: var(--background-secondary);
        }

        .contact-form-box > p {
            color: var(--text-secondary);

            margin-bottom: 23px;
        }

        .form-grid {
            display: grid;

            grid-template-columns:
                1fr
                1fr;

            gap: 15px;
        }

        .form-field {
            display: grid;
            gap: 7px;
        }

        .form-field.full-width {
            grid-column: 1 / -1;
        }

        .form-field label {
            color: var(--text-secondary);

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

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

            padding: 13px 14px;

            border-radius: 14px;

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

            color: var(--text);
            background: var(--background);

            outline: none;

            transition:
                border-color 0.20s ease,
                box-shadow 0.20s ease;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            border-color: var(--orange);

            box-shadow:
                0 0 0 4px
                rgba(248, 117, 59, 0.12);
        }

        .form-field textarea {
            min-height: 115px;
            resize: vertical;
        }

        .form-note {
            color: var(--text-secondary);

            font-size: 12px;

            margin-top: 12px;
        }

        .form-result {
            display: none;

            padding: 14px 16px;

            margin-top: 15px;

            border-radius: 14px;

            color: #16835b;

            background:
                rgba(22, 131, 91, 0.10);

            border:
                1px solid
                rgba(22, 131, 91, 0.25);

            font-weight: 700;
        }

        .form-result.show {
            display: block;
        }

        /* =====================================================
           14. الفوتر
        ===================================================== */

        footer {
            padding: 55px 0 25px;

            color: white;

            background: #171015;
        }

        .footer-grid {
            display: grid;

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

            gap: 35px;

            padding-bottom: 31px;

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

        .footer-brand {
            display: flex;
            align-items: center;

            gap: 14px;

            margin-bottom: 15px;
        }

        .footer-brand img {
            width: 105px;

            padding: 7px;

            border-radius: 15px;

            background: white;
        }

        .footer-brand strong {
            display: block;
        }

        .footer-brand span,
        footer p,
        footer a {
            color:
                rgba(255, 255, 255, 0.65);

            font-size: 14px;
        }

        footer h4 {
            color: #ffac83;
            margin-bottom: 15px;
        }

        footer ul {
            list-style: none;

            display: grid;
            gap: 9px;
        }

        footer a:hover {
            color: white;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;

            gap: 14px;

            padding-top: 22px;

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

            font-size: 12px;
        }

        /* =====================================================
           15. زر واتساب العائم
        ===================================================== */

        .whatsapp-floating-button {
            position: fixed;

            inset-inline-end: 20px;
            bottom: 20px;

            z-index: 900;

            width: 59px;
            height: 59px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            color: white;
            background: #25d366;

            box-shadow:
                0 15px 35px
                rgba(0, 0, 0, 0.25);

            font-size: 28px;

            transition: transform 0.20s ease;
        }

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

        /* =====================================================
           16. الحركات
        ===================================================== */

        .reveal {
            opacity: 0;

            transform: translateY(20px);

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

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* =====================================================
           17. التصميم المتجاوب
        ===================================================== */

        @media (max-width: 1080px) {
            .brand-text {
                display: none;
            }

            .main-navigation {
                gap: 16px;
            }

            .services-grid,
            .why-grid {
                grid-template-columns:
                    repeat(
                        2,
                        minmax(0, 1fr)
                    );
            }

            .destinations-grid {
                grid-template-columns:
                    repeat(
                        2,
                        minmax(0, 1fr)
                    );
            }
        }

        @media (max-width: 880px) {
            section {
                padding: 76px 0;
            }

            .mobile-menu-button {
                display: grid;
            }

            .main-navigation {
                position: fixed;

                top: 80px;
                right: 0;
                left: 0;

                display: grid;

                padding: 25px;

                background: var(--background-secondary);

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

                box-shadow: var(--shadow);

                transform: translateY(-130%);

                opacity: 0;

                pointer-events: none;

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

            .main-navigation.open {
                transform: translateY(0);

                opacity: 1;

                pointer-events: auto;
            }

            .main-navigation a {
                font-size: 17px;
            }

            .hero {
                min-height: auto;
            }

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

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

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

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

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

        @media (max-width: 620px) {
            .container {
                width:
                    min(
                        100% - 26px,
                        var(--container-width)
                    );
            }

            .header-content {
                min-height: 71px;
            }

            .brand img {
                width: 75px;
                height: 48px;
            }

            .main-navigation {
                top: 71px;
            }

            .language-switcher button {
                padding: 6px 8px;
            }

            .icon-button {
                width: 38px;
                height: 38px;
            }

            .hero {
                padding-top: 55px;
            }

            .hero-features,
            .visual-service-grid,
            .mission-grid,
            .services-grid,
            .why-grid,
            .destinations-grid,
            .process-grid,
            .statistics-grid,
            .form-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .floating-destination {
                bottom: 0;
            }

            .statistic {
                border-inline-end: 0;

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

            .statistic:last-child {
                border-bottom: 0;
            }

            .form-field.full-width {
                grid-column: auto;
            }

            .footer-bottom {
                display: grid;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

/* ==========================================================
   18. Diamond Shipping — visual identity refresh
   ========================================================== */

:root {
    --orange: #ff5a16;
    --orange-dark: #e94608;
    --plum: #5b3b4b;
    --plum-dark: #382631;
    --background: #f7f4f1;
    --background-secondary: #fffdfb;
    --text: #211a1e;
    --text-secondary: #71676c;
    --border: rgba(56, 38, 49, 0.12);
    --header-background: rgba(255, 253, 251, 0.88);
    --shadow: 0 28px 70px rgba(56, 38, 49, 0.16);
    --small-shadow: 0 14px 38px rgba(56, 38, 49, 0.08);
    --large-radius: 32px;
}

html[data-theme="dark"] {
    --background: #151013;
    --background-secondary: #21191e;
    --header-background: rgba(21, 16, 19, 0.88);
}

body {
    font-family: "Alexandria", "Segoe UI", Tahoma, Arial, sans-serif;
    background:
        linear-gradient(rgba(91, 59, 75, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 59, 75, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 88% 4%, rgba(255, 90, 22, 0.11), transparent 430px),
        var(--background);
    background-size: 32px 32px, 32px 32px, auto, auto;
}

h1,
h2,
h3,
h4,
.brand-text strong {
    letter-spacing: -0.025em;
}

h1 {
    max-width: 760px;
    font-size: clamp(40px, 5.1vw, 67px);
    line-height: 1.14;
}

h2 {
    font-size: clamp(31px, 3.8vw, 49px);
    line-height: 1.2;
}

.description,
.hero-description {
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(125deg, var(--orange-dark) 10%, var(--orange) 42%, var(--plum) 92%);
    background-clip: text;
    -webkit-background-clip: text;
}

.site-header {
    box-shadow: 0 8px 36px rgba(56, 38, 49, 0.04);
}

.brand img {
    width: 82px;
    height: 56px;
    padding: 3px;
    border-radius: 12px;
    background: white;
}

.brand-text strong {
    color: var(--plum-dark);
    font-size: 14px;
    letter-spacing: 0.14em;
}

html[data-theme="dark"] .brand-text strong {
    color: #fff7f3;
}

.main-navigation a {
    position: relative;
    padding-block: 10px;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    border-radius: 20px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

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

.header-contact-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 12px;
    color: white;
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(233, 70, 8, 0.18);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.header-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(233, 70, 8, 0.26);
}

.button {
    min-height: 54px;
    padding-inline: 27px;
    border-radius: 15px;
}

.button-primary {
    background: linear-gradient(135deg, #ff6727, #e94608);
    box-shadow: 0 15px 35px rgba(233, 70, 8, 0.25);
}

.button-secondary {
    background: rgba(255, 253, 251, 0.72);
    backdrop-filter: blur(12px);
}

.hero {
    padding-block: 70px 76px;
}

.hero::before {
    width: 520px;
    height: 520px;
    border-color: rgba(255, 90, 22, 0.16);
    box-shadow:
        0 0 0 72px rgba(255, 90, 22, 0.025),
        0 0 0 145px rgba(91, 59, 75, 0.02);
}

.hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(36px, 5vw, 72px);
}

.hero-content::before {
    content: "DS • LB / WA";
    display: block;
    width: max-content;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 90, 22, 0.22);
    border-radius: 100px;
    color: var(--plum);
    background: rgba(255, 90, 22, 0.07);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

html[data-theme="dark"] .hero-content::before {
    color: #ffb190;
}

.hero-description {
    max-width: 650px;
    line-height: 1.95;
}

.hero-features {
    gap: 10px;
}

.hero-feature {
    position: relative;
    overflow: hidden;
    min-height: 98px;
    padding: 16px 17px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--background-secondary) 88%, transparent);
    box-shadow: 0 12px 34px rgba(56, 38, 49, 0.06);
}

.hero-feature::after {
    content: "";
    position: absolute;
    inset-inline-end: -18px;
    bottom: -22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 90, 22, 0.08);
}

.hero-feature strong {
    color: var(--plum);
    font-size: 15px;
}

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

.shipping-visual {
    width: min(100%, 570px);
    min-height: 560px;
    padding: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 7px solid rgba(255, 255, 255, 0.78);
    border-radius: 42px 42px 42px 120px;
    background: var(--plum-dark);
    box-shadow: 0 38px 90px rgba(56, 38, 49, 0.23);
}

.shipping-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(25, 15, 21, 0.03) 25%, rgba(25, 15, 21, 0.82) 100%),
        linear-gradient(90deg, rgba(255, 90, 22, 0.10), transparent 54%);
    pointer-events: none;
}

.hero-logistics-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.shipping-visual:hover .hero-logistics-photo {
    transform: scale(1.035);
}

.shipping-visual .route-card {
    position: absolute;
    z-index: 3;
    right: 24px;
    left: 24px;
    bottom: 24px;
    color: #261c22;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
}

.shipping-visual .visual-service-grid {
    position: absolute;
    z-index: 3;
    top: 22px;
    inset-inline-end: 22px;
    width: 200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0;
}

.shipping-visual .visual-service {
    min-height: auto;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(27, 18, 23, 0.18);
    backdrop-filter: blur(12px);
}

.shipping-visual .visual-service.air {
    background: rgba(233, 70, 8, 0.86);
}

.shipping-visual .visual-service.sea {
    background: rgba(56, 38, 49, 0.86);
}

.shipping-visual .visual-service-icon {
    display: none;
}

.shipping-visual .visual-service strong {
    font-size: 13px;
}

.shipping-visual .visual-service span {
    font-size: 10px;
}

.floating-destination {
    z-index: 5;
    bottom: 4px;
    inset-inline-start: -12px;
    border-radius: 18px;
}

.destination-strip {
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(90deg, rgba(255, 90, 22, 0.22), transparent 34%),
        var(--plum-dark);
}

.destination-card,
.mission-card,
.why-card,
.process-card,
.service-card {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.destination-card:hover,
.mission-card:hover,
.why-card:hover,
.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 90, 22, 0.34);
    box-shadow: var(--shadow);
}

.destination-card {
    min-height: 225px;
    padding-top: 34px;
    background:
        linear-gradient(145deg, rgba(255, 90, 22, 0.055), transparent 48%),
        var(--background-secondary);
}

.country-flag {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--background);
    box-shadow: var(--small-shadow);
}

.services-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 90, 22, 0.1), transparent 520px),
        var(--background-secondary);
}

.services-photo {
    min-height: 390px;
    position: relative;
    overflow: hidden;
    margin: 0 0 42px;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.services-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(37, 24, 31, 0.84));
}

.services-photo img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: center 52%;
}

.services-photo figcaption {
    position: absolute;
    z-index: 2;
    inset-inline-start: 28px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    color: white;
}

.services-photo figcaption span {
    color: #ffb38f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.services-photo figcaption strong {
    font-size: 24px;
}

.service-card {
    min-height: 390px;
    padding: 31px 25px;
    border-top: 3px solid transparent;
    background:
        linear-gradient(var(--background), var(--background)) padding-box,
        linear-gradient(90deg, var(--orange), var(--plum)) border-box;
}

.service-card:hover {
    border-top-color: var(--orange);
}

.service-icon {
    color: white;
    background: linear-gradient(145deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 26px rgba(233, 70, 8, 0.2);
}

.about-visual {
    min-height: 555px;
    padding: 0;
    border: 7px solid rgba(255, 255, 255, 0.78);
    border-radius: 42px 42px 110px 42px;
    background: var(--plum-dark);
}

.about-team-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.about-visual::before {
    z-index: 1;
    width: auto;
    height: auto;
    inset: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(35, 22, 29, 0.02) 38%, rgba(35, 22, 29, 0.82));
}

.about-visual::after {
    display: none;
}

.about-visual-content {
    padding: 24px;
}

.about-logo {
    width: 135px;
    padding: 9px;
    border-radius: 17px;
}

.about-route-card {
    width: min(100%, 390px);
    background: rgba(61, 39, 51, 0.67);
    backdrop-filter: blur(15px);
}

.statistics {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 90, 22, 0.16), transparent 35%),
        var(--plum-dark);
}

.statistics::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    inset-inline-end: -150px;
    top: -170px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.contact-section {
    position: relative;
    isolation: isolate;
    background: var(--plum-dark);
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.24;
    background:
        linear-gradient(90deg, #35212c 18%, rgba(53, 33, 44, 0.88) 56%, rgba(53, 33, 44, 0.76)),
        url("../images/site/hero-logistics.webp") center / cover no-repeat;
}

.contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(145deg, rgba(255, 90, 22, 0.08), transparent 55%);
}

.contact-information,
.contact-form-box {
    box-shadow: 0 24px 65px rgba(16, 9, 13, 0.24);
}

footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 90, 22, 0.16), transparent 360px),
        #160f13;
}

@media (max-width: 1080px) {
    .header-contact-link {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    }

    .hero-feature {
        padding: 14px;
    }
}

@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 730px;
    }

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

    .shipping-visual {
        width: 100%;
    }

    .services-photo {
        min-height: 330px;
    }

    .services-photo img {
        height: 330px;
    }

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

@media (max-width: 620px) {
    body {
        background-size: 24px 24px, 24px 24px, auto, auto;
    }

    .brand img {
        width: 68px;
        height: 47px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-buttons .button {
        width: 100%;
    }

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

    .shipping-visual {
        min-height: 455px;
        border-width: 4px;
        border-radius: 28px 28px 28px 74px;
    }

    .shipping-visual .visual-service-grid {
        top: 14px;
        inset-inline-end: 14px;
        width: 158px;
    }

    .shipping-visual .visual-service {
        padding: 9px 11px;
    }

    .shipping-visual .visual-service span {
        display: none;
    }

    .shipping-visual .route-card {
        right: 14px;
        left: 14px;
        bottom: 16px;
        padding: 17px;
    }

    .route-card-header {
        margin-bottom: 14px;
    }

    .route-point strong {
        font-size: 21px;
    }

    .floating-destination {
        display: none;
    }

    .services-photo,
    .services-photo img {
        min-height: 260px;
        height: 260px;
    }

    .services-photo {
        margin-bottom: 28px;
        border-radius: 24px;
    }

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

    .about-visual {
        min-height: 430px;
        border-width: 4px;
        border-radius: 28px 28px 74px 28px;
    }

    .about-visual-content {
        padding: 16px;
    }
}

/* ==========================================================
   19. Homepage expansion
   ========================================================== */

.home-services,
.home-about,
.home-process,
.home-contact-cta {
    position: relative;
}

.home-services {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 90, 22, 0.1), transparent 370px),
        var(--background-secondary);
}

.home-services::before {
    content: "DIAMOND";
    position: absolute;
    inset-inline-start: -35px;
    top: 90px;
    color: rgba(91, 59, 75, 0.035);
    font-size: clamp(90px, 15vw, 230px);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
}

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 42px;
}

.home-section-heading h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.home-section-intro {
    padding-bottom: 6px;
}

.home-section-intro .description {
    font-size: 16px;
    margin-bottom: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange-dark);
    font-size: 14px;
    font-weight: 800;
}

.text-link::after {
    content: "";
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 90, 22, 0.25);
    border-radius: 50%;
    background:
        url("../icons/external-link.svg")
        center / 14px 14px
        no-repeat;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.text-link:hover::after {
    background:
        rgba(255, 90, 22, 0.14)
        url("../icons/external-link.svg")
        center / 14px 14px
        no-repeat;
    transform: translate(2px, -2px);
}

.service-showcase {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-template-rows: repeat(2, 245px);
    gap: 18px;
}

.service-story {
    min-height: 245px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 27px;
    color: white;
    background: var(--plum-dark);
    box-shadow: var(--small-shadow);
}

.service-story-large {
    grid-row: 1 / 3;
}

.service-story::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(29, 17, 24, 0.02) 24%, rgba(29, 17, 24, 0.9) 100%),
        linear-gradient(90deg, rgba(233, 70, 8, 0.18), transparent 60%);
    transition: background 0.25s ease;
}

.service-story img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(.2, .7, .2, 1);
}

.service-story:nth-child(2) img {
    object-position: center 52%;
}

.service-story:nth-child(3) img {
    object-position: center 43%;
}

.service-story:hover img {
    transform: scale(1.055);
}

.service-story-number {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(38, 24, 32, 0.25);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 800;
}

.service-story-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 25px;
}

.service-story-large .service-story-content {
    padding: 32px;
}

.service-story-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 13px;
    color: #fff3ed;
    background: rgba(255, 90, 22, 0.62);
    backdrop-filter: blur(10px);
}

.service-story h3 {
    margin-bottom: 7px;
    font-size: 23px;
}

.service-story p {
    max-width: 490px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.75;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--background);
}

.trust-metrics > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    min-height: 112px;
    padding: 22px;
    border-inline-end: 1px solid var(--border);
}

.trust-metrics > div:last-child {
    border-inline-end: 0;
}

.trust-metrics strong {
    color: var(--orange);
    font-size: 37px;
    line-height: 1;
}

.trust-metrics span {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.7;
}

#destinations {
    overflow: hidden;
}

#destinations .section-header {
    position: relative;
    z-index: 2;
}

.destinations-grid {
    position: relative;
}

.destinations-grid::before {
    content: "";
    position: absolute;
    width: 68%;
    height: 1px;
    top: 68px;
    right: 16%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 90, 22, 0.4) 0 9px,
        transparent 9px 18px
    );
}

.destination-card {
    z-index: 1;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 27px;
    border-radius: 27px;
}

.destination-card::before {
    content: "BEY";
    position: absolute;
    top: 20px;
    inset-inline-start: 22px;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.destination-card::after {
    width: 125px;
    height: 125px;
    top: -54px;
    inset-inline-end: -44px;
    border: 1px solid rgba(255, 90, 22, 0.12);
    background: rgba(255, 90, 22, 0.06);
    box-shadow: 0 0 0 28px rgba(255, 90, 22, 0.025);
}

.destination-code {
    position: absolute;
    top: 18px;
    inset-inline-end: 22px;
    z-index: 2;
    color: var(--plum);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

html[data-theme="dark"] .destination-code {
    color: #ffc0a4;
}

.country-flag {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    font-size: 31px;
}

.destination-card h3 {
    font-size: 21px;
}

.destination-card p {
    line-height: 1.8;
}

.home-about {
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 84% 8%, rgba(255, 90, 22, 0.21), transparent 420px),
        var(--plum-dark);
}

.home-about::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -300px;
    bottom: -360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(255, 255, 255, 0.018),
        0 0 0 160px rgba(255, 255, 255, 0.012);
}

.home-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.home-about-media {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.13);
    border-radius: 36px 36px 120px 36px;
    box-shadow: 0 35px 85px rgba(16, 9, 13, 0.4);
}

.home-about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(35, 21, 29, 0.82));
}

.home-about-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: 58% center;
}

.home-about-badge {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 19px;
    background: rgba(53, 32, 44, 0.64);
    backdrop-filter: blur(15px);
}

.home-about-badge strong {
    display: block;
    margin-bottom: 4px;
    color: #ffae89;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.home-about-badge span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.home-about .section-label {
    color: #ffae89;
}

.home-about .section-label::before {
    background: linear-gradient(90deg, #ff7b43, #ffffff);
}

.home-about h2 {
    max-width: 590px;
}

.home-about .gradient-text {
    background: linear-gradient(125deg, #ff9c71, #ffffff 84%);
    background-clip: text;
    -webkit-background-clip: text;
}

.home-about .description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.95;
}

.home-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.home-values > div {
    min-height: 190px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.home-values span {
    display: block;
    margin-bottom: 24px;
    color: #ff986b;
    font-size: 11px;
    font-weight: 800;
}

.home-values strong {
    display: block;
    margin-bottom: 7px;
}

.home-values p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.7;
}

.home-about .button-secondary {
    color: var(--plum-dark);
    background: white;
}

.home-process {
    background:
        linear-gradient(rgba(91, 59, 75, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 59, 75, 0.025) 1px, transparent 1px),
        var(--background);
    background-size: 32px 32px;
}

.home-process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-process-track::before {
    content: "";
    position: absolute;
    top: 35px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--plum), var(--orange));
    opacity: 0.22;
}

.home-process-step {
    position: relative;
    padding: 0 8px;
    text-align: center;
}

.home-process-step > span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    margin: 0 auto 24px;
    border: 7px solid var(--background);
    border-radius: 23px;
    color: white;
    background: linear-gradient(145deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 31px rgba(233, 70, 8, 0.22);
    font-size: 13px;
    font-weight: 800;
}

.home-process-step:nth-child(even) > span {
    background: linear-gradient(145deg, var(--plum), var(--plum-dark));
    box-shadow: 0 14px 31px rgba(56, 38, 49, 0.2);
}

.home-process-step h3 {
    font-size: 18px;
}

.home-process-step p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.75;
}

.home-contact-cta {
    padding-top: 25px;
}

.contact-cta-card {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    position: relative;
    overflow: hidden;
    padding: clamp(35px, 6vw, 72px);
    border-radius: 36px;
    color: white;
    background:
        linear-gradient(90deg, rgba(45, 27, 37, 0.94), rgba(45, 27, 37, 0.76)),
        url("../images/site/services-cargo.webp") center 48% / cover no-repeat;
    box-shadow: var(--shadow);
}

.contact-cta-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    inset-inline-end: -110px;
    top: -130px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025);
}

.contact-cta-card > div {
    position: relative;
    z-index: 1;
}

.contact-cta-card .section-label {
    color: #ffae89;
}

.contact-cta-card h2 {
    max-width: 650px;
    margin-bottom: 12px;
}

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

.contact-cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.button-light {
    color: var(--plum-dark);
    background: white;
}

.button-light:hover {
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.whatsapp-floating-button {
    border: 4px solid rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.icon-button img {
    width: 20px;
    height: 20px;
}

.button img {
    width: 18px;
    height: 18px;
}

.route-plane img {
    width: 18px;
    height: 18px;
}

.destination-track img {
    width: 25px;
    height: 18px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 3px;
}

.destination-track img[src$="plane.svg"],
.destination-track img[src$="ship.svg"],
.destination-track img[src$="truck.svg"] {
    width: 20px;
    height: 20px;
}

.service-icon {
    background: rgba(255, 90, 22, 0.1);
    box-shadow: none;
}

.service-icon img,
.why-icon img,
.contact-icon img {
    width: 27px;
    height: 27px;
}

.service-story-icon {
    background: rgba(255, 255, 255, 0.92);
}

.service-story-icon img {
    width: 22px;
    height: 22px;
}

.country-flag img {
    width: 38px;
    height: auto;
    border: 1px solid rgba(56, 38, 49, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(56, 38, 49, 0.08);
}

.whatsapp-floating-button img {
    width: 28px;
    height: 28px;
}

/* OpenStreetMap */

.map-container {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: #e8e4e1;
}

.open-map {
    width: 100%;
    height: 330px;
    border-radius: 20px 20px 0 0;
    background: #e8e4e1;
}

.open-map-link {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--plum-dark);
    background: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.open-map-link img {
    width: 16px;
    height: 16px;
}

.leaflet-control-layers {
    overflow: hidden;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 28px rgba(45, 27, 37, 0.22) !important;
}

.leaflet-control-layers-expanded {
    padding: 8px 11px !important;
    color: #3d2934;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(10px);
    font-family: "Alexandria", sans-serif;
    font-size: 11px;
}

.leaflet-control-layers label {
    margin: 3px 0;
}

.leaflet-control-layers-selector {
    accent-color: var(--orange);
}

.leaflet-bar {
    overflow: hidden;
    border: 0 !important;
    border-radius: 11px !important;
    box-shadow: 0 10px 28px rgba(45, 27, 37, 0.18) !important;
}

.leaflet-bar a {
    color: var(--plum-dark);
    border-color: #eee5e9 !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(45, 27, 37, 0.23);
}

.leaflet-popup-content {
    margin: 13px 17px;
    font-family: "Alexandria", sans-serif;
}

.map-popup-content {
    display: grid;
    gap: 3px;
    min-width: 145px;
}

.map-popup-content strong {
    color: var(--plum-dark);
    font-size: 13px;
}

.map-popup-content span {
    color: #7b6e75;
    font-size: 10px;
}

.leaflet-control-attribution {
    font-size: 8px !important;
}

@media (max-width: 1080px) {
    .home-section-heading {
        gap: 45px;
    }

    .trust-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-metrics > div:nth-child(2) {
        border-inline-end: 0;
    }

    .trust-metrics > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .home-process-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 18px;
    }

    .home-process-track::before {
        display: none;
    }
}

@media (max-width: 880px) {
    .home-section-heading,
    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .home-section-heading {
        gap: 18px;
    }

    .service-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 410px 260px;
    }

    .service-story-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .home-about-media {
        min-height: 500px;
    }

    .home-about-media img {
        min-height: 500px;
    }

    .home-about-content {
        max-width: 690px;
    }

    .contact-cta-card {
        display: grid;
    }
}

@media (max-width: 620px) {
    .open-map {
        height: 290px;
    }

    .leaflet-control-layers-expanded {
        max-width: 150px;
    }

    .service-showcase {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .service-story,
    .service-story-large {
        min-height: 330px;
        grid-column: auto;
    }

    .service-story-large .service-story-content,
    .service-story-content {
        padding: 22px;
    }

    .trust-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .trust-metrics > div {
        min-height: 128px;
        display: block;
        padding: 18px;
    }

    .trust-metrics strong {
        display: block;
        margin-bottom: 8px;
        font-size: 31px;
    }

    .destinations-grid::before {
        display: none;
    }

    .destination-card {
        min-height: 235px;
    }

    .home-about-media,
    .home-about-media img {
        min-height: 420px;
    }

    .home-about-media {
        border-width: 4px;
        border-radius: 27px 27px 75px 27px;
    }

    .home-values {
        grid-template-columns: 1fr;
    }

    .home-values > div {
        min-height: auto;
    }

    .home-process-track {
        grid-template-columns: 1fr;
    }

    .home-process-step {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 16px;
        text-align: start;
    }

    .home-process-step > span {
        width: 60px;
        height: 60px;
        margin: 0;
        border-radius: 19px;
    }

    .contact-cta-card {
        min-height: 390px;
        padding: 29px 23px;
        border-radius: 27px;
    }

    .contact-cta-actions {
        display: grid;
    }

    .contact-cta-actions .button {
        width: 100%;
    }
}


/* Request result UI */
.form-result .request-number-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.form-result .request-success-message {
    line-height: 1.8;
}

.form-result .request-number-value {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 10px;
    border-radius: 9px;
    background: rgba(22, 131, 91, 0.16);
    border: 1px solid rgba(22, 131, 91, 0.35);
    color: #0f6d4b;
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 0.2px;
    user-select: all;
}

.form-result .request-copy-button,
.form-result .request-track-button {
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 9px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.form-result .request-copy-button {
    border: 1px solid rgba(15, 109, 75, 0.35);
    background: #ffffff;
    color: #0f6d4b;
}

.form-result .request-copy-button:hover {
    background: rgba(22, 131, 91, 0.10);
    transform: translateY(-1px);
}

.form-result .request-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 11px;
}

.form-result .request-track-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff5a1f;
    background: #ff5a1f;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(255, 90, 31, 0.22);
}

.form-result .request-track-button:hover {
    background: #e94b12;
    border-color: #e94b12;
    transform: translateY(-1px);
}

[data-theme="dark"] .form-result .request-copy-button {
    background: rgba(255, 255, 255, 0.08);
    color: #8ce0bd;
}

[data-theme="dark"] .form-result .request-number-value {
    color: #8ce0bd;
}


/* Cargo weight fields */
.weight-input-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.55fr);
    gap: 10px;
    align-items: stretch;
}

.weight-input-group input,
.weight-input-group select {
    width: 100%;
    min-width: 0;
}

@media (max-width: 520px) {
    .weight-input-group {
        grid-template-columns: minmax(0, 1fr) 120px;
    }
}


/* Homepage actions and customer login */
.header-customer-login {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(255, 90, 22, 0.42);
    border-radius: 12px;
    color: var(--orange-dark);
    background: rgba(255, 90, 22, 0.09);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.header-customer-login:hover {
    transform: translateY(-2px);
    color: #ffffff;
    border-color: var(--orange);
    background: var(--orange);
}

html[data-theme="dark"] .header-customer-login {
    color: #ffb795;
    background: rgba(255, 90, 22, 0.12);
}

html[data-theme="dark"] .header-customer-login:hover {
    color: #ffffff;
    background: var(--orange);
}

.hero-buttons .home-request-button,
.hero-buttons .home-track-button {
    gap: 10px;
}

.hero-buttons .home-track-button {
    color: var(--orange-dark);
    border-color: rgba(255, 90, 22, 0.34);
    background: rgba(255, 253, 251, 0.88);
}

html[data-theme="dark"] .hero-buttons .home-track-button {
    color: #ffb795;
    background: rgba(255, 255, 255, 0.06);
}

.hero-buttons .home-track-button:hover {
    color: #ffffff;
    border-color: var(--orange);
    background: var(--orange);
}

@media (max-width: 1180px) {
    .header-customer-login {
        padding-inline: 10px;
        font-size: 10px;
    }
}

@media (max-width: 620px) {
    .header-actions {
        gap: 6px;
    }

    .header-customer-login {
        min-height: 38px;
        padding-inline: 8px;
        border-radius: 10px;
        font-size: 9px;
    }
}


/* Header navigation and hero title tuning */
@media (min-width: 881px) {
    .header-content {
        gap: 12px !important;
    }

    .brand {
        min-width: 0;
    }

    .main-navigation {
        flex: 1 1 auto !important;
        min-width: 0;
        justify-content: center;
        gap: clamp(11px, 1.35vw, 21px) !important;
    }

    .main-navigation a,
    .main-navigation a[href*="customer"],
    .main-navigation a[href*="track"] {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 10px 2px !important;
        white-space: nowrap !important;
        text-align: center;
        font-size: clamp(12px, 1.02vw, 14px) !important;
        line-height: 1.15 !important;
    }

    .header-actions {
        gap: 7px !important;
    }

    .hero .hero-content h1 {
        max-width: 650px !important;
        font-size: clamp(46px, 4.25vw, 60px) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.035em !important;
    }
}

@media (min-width: 881px) and (max-width: 1180px) {
    .header-content {
        gap: 8px !important;
    }

    .brand img {
        width: 70px !important;
        height: 48px !important;
    }

    .brand-text strong {
        font-size: 12px !important;
    }

    .brand-text span {
        display: none !important;
    }

    .main-navigation {
        gap: 10px !important;
    }

    .main-navigation a,
    .main-navigation a[href*="customer"],
    .main-navigation a[href*="track"] {
        font-size: 12px !important;
        padding-inline: 1px !important;
    }

    .header-contact-link,
    .header-customer-login {
        padding-inline: 10px !important;
        font-size: 10px !important;
    }

    .hero .hero-content h1 {
        max-width: 590px !important;
        font-size: clamp(43px, 4.5vw, 53px) !important;
    }
}

@media (min-width: 1181px) and (max-width: 1450px) {
    .main-navigation {
        gap: 15px !important;
    }

    .main-navigation a,
    .main-navigation a[href*="customer"],
    .main-navigation a[href*="track"] {
        font-size: 13px !important;
    }

    .hero .hero-content h1 {
        font-size: clamp(49px, 4.2vw, 58px) !important;
    }
}

/* Diamond Shipping public form anti-spam honeypot.
   يبقى الحقل داخل DOM لالتقاط البوتات، لكنه خارج الشاشة للمستخدم الحقيقي. */
.contact-honeypot {
    position: absolute !important;
    inset-inline-start: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}



/* ===== DIAMOND MULTILANG HEADER FIX START ===== */
/*
   Keeps the Arabic desktop header unchanged.
   Gives English and French navigation enough room and prevents labels
   from shrinking into each other.
*/
@media (min-width: 881px) {
    html[lang="en"] .site-header .header-content,
    html[lang="fr"] .site-header .header-content {
        width: min(1280px, calc(100% - 32px)) !important;
        gap: 8px !important;
    }

    html[lang="en"] .site-header .brand,
    html[lang="fr"] .site-header .brand {
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    html[lang="en"] .site-header .brand-text,
    html[lang="fr"] .site-header .brand-text {
        display: none !important;
    }

    html[lang="en"] .site-header .brand img,
    html[lang="fr"] .site-header .brand img {
        width: 70px !important;
        height: 48px !important;
    }

    html[lang="en"] .site-header .main-navigation,
    html[lang="fr"] .site-header .main-navigation {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        justify-content: center !important;
        gap: clamp(10px, 1vw, 16px) !important;
    }

    html[lang="en"] .site-header .main-navigation a,
    html[lang="fr"] .site-header .main-navigation a {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: max-content !important;
        max-width: none !important;
        padding: 10px 2px !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        font-size: clamp(11px, 0.9vw, 13px) !important;
        line-height: 1.15 !important;
    }

    html[lang="en"] .site-header .header-actions,
    html[lang="fr"] .site-header .header-actions {
        flex: 0 0 auto !important;
        min-width: max-content !important;
        gap: 6px !important;
    }

    html[lang="en"] .site-header .header-contact-link,
    html[lang="fr"] .site-header .header-contact-link,
    html[lang="en"] .site-header .header-customer-login,
    html[lang="fr"] .site-header .header-customer-login {
        min-width: max-content !important;
        padding-inline: 10px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    html[lang="en"] .site-header .language-switcher button,
    html[lang="fr"] .site-header .language-switcher button {
        min-width: 29px !important;
        padding-inline: 7px !important;
    }
}

/* Narrow desktop/tablet: preserve the navigation and remove the less critical CTA. */
@media (min-width: 881px) and (max-width: 1120px) {
    html[lang="en"] .site-header .header-contact-link,
    html[lang="fr"] .site-header .header-contact-link {
        display: none !important;
    }

    html[lang="en"] .site-header .main-navigation,
    html[lang="fr"] .site-header .main-navigation {
        gap: 8px !important;
    }

    html[lang="en"] .site-header .main-navigation a,
    html[lang="fr"] .site-header .main-navigation a {
        font-size: 11px !important;
    }
}
/* ===== DIAMOND MULTILANG HEADER FIX END ===== */

/* DIAMOND ARABIC HERO TITLE FIX START */

/* الشاشات المتوسطة مثل الصورة */
@media (min-width: 881px) and (max-width: 1180px) {
    html[lang="ar"] .hero .hero-content h1 {
        width: 100% !important;
        max-width: 520px !important;

        font-size: clamp(31px, 3.5vw, 37px) !important;
        line-height: 1.18 !important;
        font-weight: 800 !important;

        letter-spacing: -0.015em !important;
        text-wrap: balance;

        margin-bottom: 22px !important;
    }

    html[lang="ar"] .hero .hero-content h1 .gradient-text {
        display: block !important;
        white-space: nowrap !important;
        margin-top: 3px !important;
    }
}

/* الشاشات الكبيرة */
@media (min-width: 1181px) {
    html[lang="ar"] .hero .hero-content h1 {
        max-width: 650px !important;

        font-size: clamp(44px, 4vw, 56px) !important;
        line-height: 1.14 !important;
        font-weight: 800 !important;

        letter-spacing: -0.02em !important;
        text-wrap: balance;
    }

    html[lang="ar"] .hero .hero-content h1 .gradient-text {
        display: block !important;
        white-space: nowrap !important;
        margin-top: 4px !important;
    }
}

/* الهاتف */
@media (max-width: 880px) {
    html[lang="ar"] .hero .hero-content h1 {
        max-width: 100% !important;

        font-size: clamp(34px, 10vw, 46px) !important;
        line-height: 1.16 !important;

        letter-spacing: -0.015em !important;
        text-wrap: balance;
    }

    html[lang="ar"] .hero .hero-content h1 .gradient-text {
        display: block !important;
        margin-top: 3px !important;
    }
}

/* DIAMOND ARABIC HERO TITLE FIX END */

/* DIAMOND HERO TITLE FINAL OVERRIDE START */

/*
 * Final Arabic homepage hero typography.
 * Scoped to the homepage hero only.
 */

html[lang="ar"] .hero .hero-content h1 {
    width: 100% !important;
    max-width: 560px !important;

    font-size: clamp(
        38px,
        3.4vw,
        48px
    ) !important;

    line-height: 1.18 !important;
    font-weight: 800 !important;

    letter-spacing: -0.018em !important;

    margin-bottom: 20px !important;

    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;

    text-wrap: balance;
}

html[lang="ar"] .hero .hero-content h1 .gradient-text {
    display: block !important;

    margin-top: 8px !important;

    white-space: normal !important;

    line-height: 1.15 !important;

    overflow-wrap: normal !important;
    word-break: normal !important;
}

/* Laptop / tablet */
@media (min-width: 881px) and (max-width: 1180px) {

    html[lang="ar"] .hero .hero-content h1 {
        max-width: 500px !important;

        font-size: clamp(
            32px,
            3vw,
            40px
        ) !important;

        line-height: 1.19 !important;
    }

    html[lang="ar"] .hero .hero-content h1 .gradient-text {
        margin-top: 7px !important;
        white-space: normal !important;
    }
}

/* Mobile */
@media (max-width: 880px) {

    html[lang="ar"] .hero .hero-content h1 {
        max-width: 100% !important;

        font-size: clamp(
            30px,
            8.6vw,
            40px
        ) !important;

        line-height: 1.17 !important;

        letter-spacing: -0.012em !important;

        margin-bottom: 17px !important;
    }

    html[lang="ar"] .hero .hero-content h1 .gradient-text {
        margin-top: 6px !important;

        line-height: 1.17 !important;

        white-space: normal !important;
    }
}

/* Small phones */
@media (max-width: 430px) {

    html[lang="ar"] .hero .hero-content h1 {
        font-size: clamp(
            28px,
            8.5vw,
            36px
        ) !important;

        line-height: 1.18 !important;
    }

    html[lang="ar"] .hero .hero-content h1 .gradient-text {
        margin-top: 5px !important;
    }
}

/* DIAMOND HERO TITLE FINAL OVERRIDE END */
