    *,
    *::before,
    *::after {
         box-sizing: border-box;
         margin: 0;
         padding: 0;
    }

    :root {
         --primary: #1B3F8B;
         --primary-dark: #122D6B;
         --primary-light: #2E5BB5;
         --accent: #F5820A;
         --accent-light: #FFB347;
         --text-dark: #1a1a1a;
         --text-mid: #444;
         --text-light: #777;
         --bg-light: #F4F7FF;
         --bg-section: #EBF0FA;
         --white: #fff;
         --shadow: 0 8px 32px rgba(27, 63, 139, 0.15);
         --radius: 16px;
         --radius-sm: 10px;
         --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    }


    html {
         scroll-behavior: smooth;
    }
    .sr-only {
         position: absolute;
         width: 1px;
         height: 1px;
         overflow: hidden;
         clip: rect(0, 0, 0, 0);
         white-space: nowrap;
    }

    body {
         font-family: 'Cairo', sans-serif;
         background: var(--bg-light);
         color: var(--text-dark);
         overflow-x: hidden;
    }

    /* ====== SCROLLBAR ====== */
    ::-webkit-scrollbar {
         width: 8px;
    }

    ::-webkit-scrollbar-track {
         background: #f1e8e0;
    }

    ::-webkit-scrollbar-thumb {
         background: var(--primary);
         border-radius: 4px;
    }

    /* ====== TOP BAR ====== */
    .topbar {
         background: var(--primary-dark);
         color: #fff;
         font-size: 13px;
         padding: 8px 40px;
         display: flex;
         justify-content: space-between;
         align-items: center;
         gap: 12px;
    }

    .topbar a {
         color: var(--accent-light);
         text-decoration: none;
         font-weight: 700;
         letter-spacing: .3px;
    }

    .topbar-socials {
         display: flex;
         gap: 12px;
    }

    .topbar-socials a {
         background: rgba(255, 255, 255, 0.15);
         width: 28px;
         height: 28px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         color: #fff;
         font-size: 13px;
         transition: background var(--transition);
    }

    .topbar-socials a:hover {
         background: var(--accent);
    }

    /* ====== NAVBAR ====== */
    .navbar {
         background: var(--white);
         padding: 0 40px;
         display: flex;
         align-items: center;
         justify-content: space-between;
         box-shadow: 0 2px 16px rgba(139, 58, 26, 0.10);
         position: sticky;
         top: 0;
         z-index: 1000;
         height: 72px;
    }

    .logo {
         display: flex;
         align-items: center;
         gap: 12px;
         text-decoration: none;
    }

    .logo-icon {
         width: 52px;
         height: 52px;
         background: var(--primary);
         border-radius: 12px;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         font-size: 22px;
         font-weight: 900;
         box-shadow: 0 4px 12px rgba(139, 58, 26, 0.3);
    }

    .logo-text {
         line-height: 1.2;
    }

    .logo-text .name {
         font-size: 22px;
         font-weight: 900;
         color: var(--primary);
    }

    .logo-text .sub {
         font-size: 11px;
         color: var(--text-light);
    }

    .nav-links {
         display: flex;
         gap: 4px;
         list-style: none;
    }

    .nav-links a {
         text-decoration: none;
         color: var(--text-mid);
         font-weight: 600;
         font-size: 14px;
         padding: 6px 16px;
         border-radius: 8px;
         transition: all var(--transition);
    }

    .nav-links a:hover {
         color: var(--primary);
         background: #f5e8e0;
    }

    .nav-cta {
         background: var(--primary);
         color: #fff !important;
         border-radius: 8px;
         padding: 8px 18px !important;
         font-weight: 700 !important;
         box-shadow: 0 3px 10px rgba(139, 58, 26, 0.25);
         transition: all var(--transition) !important;
    }

    .nav-cta:hover {
         background: var(--primary-light) !important;
         transform: translateY(-1px);
         box-shadow: 0 6px 18px rgba(139, 58, 26, 0.3) !important;
    }

    /* ====== HERO ====== */
  .hero {
       background: url(../assets/imgs/emerald-green-truck-forest-highway-modern-power-transport.jpg);
       background-position: center center;
       background-size: cover;
       color: white;
       padding: 80px 40px;
       position: relative;
       overflow: hidden;
       min-height: 520px;
       display: flex;
       align-items: center;
  }

  /* طبقة التدرج - خفيفة */
  .hero::before {
       content: '';
       position: absolute;
       inset: 0;
       background: linear-gradient(90deg,
                 rgba(0, 0, 0, 0.55) 0%,
                 rgba(0, 0, 0, 0.28) 45%,
                 rgba(0, 0, 0, 0.10) 100%);
       pointer-events: none;
       z-index: 0;
  }

  /* طبقة الـ pattern الخفيفة */
  .hero::after {
       content: '';
       position: absolute;
       inset: 0;
       background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
       animation: bgshift 20s linear infinite;
       pointer-events: none;
       z-index: 1;
       opacity: 0.9;
  }

  .hero-container {
       position: relative;
       z-index: 2;
  }
    @keyframes bgshift {
         from {
              background-position: 0 0
         }

         to {
              background-position: 60px 60px
         }
    }

    .hero-container {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 60px;
         align-items: center;
         max-width: 1200px;
         margin: 0 auto;
         width: 100%;
         position: relative;
         z-index: 1;
    }

    .hero-badge {
         display: inline-flex;
         align-items: center;
         gap: 8px;
         background: rgba(255, 255, 255, 0.15);
         backdrop-filter: blur(10px);
         border: 1px solid rgba(255, 255, 255, 0.25);
         padding: 8px 18px;
         border-radius: 50px;
         font-size: 13px;
         font-weight: 600;
         margin-bottom: 20px;
         animation: fadeInDown .6s ease both;
    }

    .hero h1 {
         font-size: clamp(28px, 4vw, 46px);
         font-weight: 900;
         line-height: 1.3;
         margin-bottom: 20px;
         animation: fadeInDown .7s .1s ease both;
    }

    .hero h1 span {
         color: var(--accent-light);
    }

    .hero p {
         font-size: 16px;
         opacity: 0.88;
         line-height: 1.8;
         margin-bottom: 32px;
         animation: fadeInDown .8s .2s ease both;
    }

    .hero-btns {
         display: flex;
         gap: 14px;
         flex-wrap: wrap;
         animation: fadeInDown .9s .3s ease both;
    }

    .btn {
         padding: 13px 30px;
         border-radius: var(--radius-sm);
         font-family: 'Cairo', sans-serif;
         font-size: 15px;
         font-weight: 700;
         cursor: pointer;
         border: none;
         transition: all var(--transition);
         text-decoration: none;
         display: inline-flex;
         align-items: center;
         gap: 8px;
    }

    .btn-white {
         background: white;
         color: var(--primary);
         box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
         transform: translateY(-2px);
         box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .btn-outline {
     background: var(--accent);
     backdrop-filter: blur(4px);
         color: white;
    }

    .btn-outline:hover {
     background: var(--accent);
    }

    .btn-primary {
         background: var(--primary);
         color: white;
         box-shadow: var(--shadow);
    }

    .btn-primary:hover {
         background: var(--primary-light);
         transform: translateY(-2px);
         box-shadow: 0 8px 24px rgba(139, 58, 26, 0.35);
    }

    .hero-stats {
         display: flex;
         gap: 24px;
         flex-wrap: wrap;
         margin-top: 36px;
         animation: fadeInUp .9s .4s ease both;
    }

    .stat-item {
         text-align: center;
    }

    .stat-item .num {
         font-size: 28px;
         font-weight: 900;
         color: var(--accent-light);
    }

    .stat-item .label {
         font-size: 12px;
         opacity: .8;
    }

    .hero-visual {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 14px;
         animation: fadeInRight .8s .2s ease both;
    }

    .hero-card {
         background: rgba(255, 255, 255, 0.12);
         backdrop-filter: blur(12px);
         border: 1px solid rgba(255, 255, 255, 0.2);
         border-radius: var(--radius);
         padding: 20px;
         text-align: center;
         transition: transform var(--transition);
    }

    .hero-card:hover {
         transform: translateY(-4px);
    }

    .hero-card:first-child {
         grid-column: span 2;
    }

    .hero-card .icon {
         font-size: 32px;
         margin-bottom: 10px;
    }

    .hero-card h3 {
         font-size: 15px;
         font-weight: 700;
         margin-bottom: 6px;
    }

    .hero-card p {
         font-size: 13px;
         opacity: .8;
         line-height: 1.6;
    }

    /* ====== FLOATING WHATSAPP ====== */
    .float-wa,
    .float-call {
         position: fixed;
         inset-inline-start: 20px;
         z-index: 999;
    }

    .float-wa {
         inset-block-end: 90px;
    }

    .float-call {
         inset-block-end: 30px;
    }

    .float-wa a,
    .float-call a {
         width: 52px;
         height: 52px;
         border-radius: 50%;
         background: #25D366;
         display: flex;
         align-items: center;
         justify-content: center;
         box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
         text-decoration: none;
         transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .float-call a {
         background: var(--accent);
    }

    .float-wa a:hover,
    .float-call a:hover {
         transform: translateY(-3px);
         box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }

    @keyframes pulse-wa {

         0%,
         100% {
              transform: scale(1);
         }

         50% {
              transform: scale(1.08);
         }
    }

    /* ====== SECTION SHARED ====== */
    .section {
         padding: 80px 40px;
    }

    .section-alt {
         background: var(--bg-section);
    }

    .section-title {
         text-align: center;
         margin-bottom: 50px;
    }

    .section-title .eyebrow {
         display: inline-block;
         background: linear-gradient(135deg, var(--primary), var(--primary-light));
         color: white;
         font-size: 12px;
         font-weight: 700;
         padding: 5px 18px;
         border-radius: 50px;
         margin-bottom: 14px;
         letter-spacing: 1px;
         text-transform: uppercase;
    }

    .section-title h2 {
         font-size: clamp(24px, 3vw, 36px);
         font-weight: 900;
         color: var(--text-dark);
         margin-bottom: 14px;
    }

    .section-title p {
         font-size: 16px;
         color: var(--text-light);
         max-width: 580px;
         margin: 0 auto;
         line-height: 1.8;
    }

    .divider {
         width: 60px;
         height: 4px;
         background: linear-gradient(90deg, var(--primary), var(--accent));
         border-radius: 2px;
         margin: 16px auto;
    }

    /* ====== WHY US ====== */
    .why-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap: 24px;
         max-width: 1200px;
         margin: 0 auto;
    }

    .why-card {
         background: var(--white);
         border-radius: var(--radius);
         padding: 32px 24px;
         box-shadow: var(--shadow);
         border: 1px solid rgba(139, 58, 26, 0.06);
         transition: all var(--transition);
         position: relative;
         overflow: hidden;
    }

    .why-card::after {
         content: '';
         position: absolute;
         bottom: 0;
         right: 0;
         width: 80px;
         height: 80px;
         background: linear-gradient(135deg, transparent 50%, rgba(139, 58, 26, 0.05) 50%);
    }

    .why-card:hover {
         transform: translateY(-6px);
         box-shadow: 0 16px 40px rgba(139, 58, 26, 0.18);
    }

    .why-card .icon-box {
         width: 56px;
         height: 56px;
         background: linear-gradient(135deg, var(--primary), var(--primary-light));
         border-radius: 14px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 24px;
         margin-bottom: 18px;
         box-shadow: 0 4px 12px rgba(139, 58, 26, 0.3);
    }

    .why-card h3 {
         font-size: 17px;
         font-weight: 800;
         color: var(--text-dark);
         margin-bottom: 10px;
    }

    .why-card p {
         font-size: 14px;
         color: var(--text-light);
         line-height: 1.8;
    }

    /* ====== SERVICES ====== */
    .services-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 28px;
         max-width: 1200px;
         margin: 0 auto;
    }

    .service-card {
         background: var(--white);
         border-radius: var(--radius);
         overflow: hidden;
         box-shadow: var(--shadow);
         transition: all var(--transition);
         border: 1px solid rgba(139, 58, 26, 0.06);
    }

    .service-card:hover {
         transform: translateY(-6px);
         box-shadow: 0 20px 50px rgba(139, 58, 26, 0.2);
    }

    .service-img {
         height: 200px;
         background: linear-gradient(135deg, var(--primary), var(--primary-light));
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 64px;
         position: relative;
         overflow: hidden;
    }

    .service-img::after {
         content: '';
         position: absolute;
         inset: 0;
         background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.2));
    }

    .service-badge {
         position: absolute;
         top: 14px;
         right: 14px;
         background: var(--accent);
         color: #fff;
         font-size: 12px;
         font-weight: 700;
         padding: 4px 12px;
         border-radius: 50px;
         z-index: 1;
    }

    .service-body {
         padding: 24px;
    }

    .service-body h3 {
         font-size: 18px;
         font-weight: 800;
         margin-bottom: 10px;
         color: var(--text-dark);
    }

    .service-body p {
         font-size: 14px;
         color: var(--text-light);
         line-height: 1.8;
         margin-bottom: 16px;
    }

    .faq-list {
         max-width: 800px;
         margin: 0 auto;
    }

    .faq-item {
         background: var(--white);
         border-radius: var(--radius-sm);
         margin-bottom: 10px;
         box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
         overflow: hidden;
    }

    .faq-q {
         width: 100%;
         text-align: right;
         background: transparent;
         border: none;
         padding: 18px 22px;
         font-size: 15px;
         font-weight: 700;
         color: var(--text-dark);
         cursor: pointer;
         display: flex;
         justify-content: space-between;
         align-items: center;
         gap: 12px;
         transition: background var(--transition);
         font-family: 'Cairo', sans-serif;

    }

    .faq-q:hover {
         background: #fdf5f0;
    }

    .faq-q.active {
         color: var(--primary);
         background: #fdf5f0;
    }

    /* علامة + */
    .faq-icon {
         font-size: 18px;
         transition: transform var(--transition);
         flex-shrink: 0;
    }

    .faq-q.active .faq-icon {
         transform: rotate(45deg);
    }

    .faq-a {
         max-height: 0;
         overflow: hidden;
         transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
         padding: 0 22px;
         font-size: 14px;
         color: var(--text-mid);
         line-height: 1.8;
    }

    .faq-a.open {
         max-height: 200px;
         padding: 0 22px 18px;
    }

    .service-features {
         list-style: none;
         margin-bottom: 20px;
    }

    .service-features li {
         font-size: 13px;
         color: var(--text-mid);
         padding: 5px 0;
         padding-right: 22px;
         position: relative;
    }

    .service-features li::before {
         content: '✓';
         position: absolute;
         right: 0;
         color: var(--primary);
         font-weight: 700;
    }

    /* ====== AREAS ====== */
.areas-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
     justify-content: center;
     max-width: 1100px;
     margin: 0 auto;
}

    .area-chip {
         background: var(--white);
         border: 1.5px solid rgba(139, 58, 26, 0.15);
         border-radius: var(--radius-sm);
         padding: 14px 10px;
         text-align: center;
         font-size: 14px;
         font-weight: 700;
         width: 100px;
         color: var(--text-dark);
         cursor: pointer;
         transition: all var(--transition);
    }

    .area-chip:hover {
         background: var(--primary);
         color: white;
         border-color: var(--primary);
         transform: scale(1.04);
         box-shadow: 0 6px 18px rgba(139, 58, 26, 0.3);
    }

    .area-chip .icon {
         display: block;
         font-size: 20px;
         margin-bottom: 6px;
    }

    /* ====== TESTIMONIALS ====== */
    .testimonials-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 24px;
         max-width: 1200px;
         margin: 0 auto;
    }

    .testimonial-card {
         background: var(--white);
         border-radius: var(--radius);
         padding: 28px;
         box-shadow: var(--shadow);
         border-right: 4px solid var(--primary);
         transition: all var(--transition);
         position: relative;
    }

    .testimonial-card:hover {
         transform: translateY(-4px);
         box-shadow: 0 16px 40px rgba(139, 58, 26, 0.15);
    }

    .quote-mark {
         font-size: 60px;
         line-height: 1;
         color: var(--primary);
         opacity: .15;
         position: absolute;
         top: 14px;
         left: 20px;
         font-family: Georgia, serif;
    }

    .stars {
         color: var(--accent);
         font-size: 18px;
         margin-bottom: 12px;
    }

    .testimonial-card p {
         font-size: 14px;
         color: var(--text-mid);
         line-height: 1.8;
         margin-bottom: 18px;
    }

    .reviewer {
         display: flex;
         align-items: center;
         gap: 12px;
    }

    .reviewer-avatar {
         width: 44px;
         height: 44px;
         background: linear-gradient(135deg, var(--primary), var(--accent));
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         font-weight: 700;
         font-size: 16px;
    }

    .reviewer-name {
         font-weight: 700;
         font-size: 14px;
         color: var(--text-dark);
    }

    .reviewer-date {
         font-size: 12px;
         color: var(--text-light);
    }

    /* ====== FAQ ====== */
    .faq-list {
         max-width: 800px;
         margin: 0 auto;
    }

    .faq-item {
         background: var(--white);
         border-radius: var(--radius-sm);
         margin-bottom: 12px;
         border: 1px solid rgba(139, 58, 26, 0.08);
         overflow: hidden;
         box-shadow: 0 2px 8px rgba(139, 58, 26, 0.06);
    }

    .faq-q {
         padding: 18px 22px;
         font-size: 15px;
         font-weight: 700;
         color: var(--text-dark);
         cursor: pointer;
         display: flex;
         justify-content: space-between;
         align-items: center;
         gap: 12px;
         transition: background var(--transition);
    }

    .faq-q:hover {
         background: #fdf5f0;
    }

    .faq-q.active {
         color: var(--primary);
         background: #fdf5f0;
    }

    .faq-icon {
         font-size: 18px;
         transition: transform var(--transition);
         flex-shrink: 0;
    }

    .faq-q.active .faq-icon {
         transform: rotate(45deg);
    }

    .faq-a {
         max-height: 0;
         overflow: hidden;
         transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
         padding: 0 22px;
         font-size: 14px;
         color: var(--text-mid);
         line-height: 1.8;
    }

    .faq-a.open {
         max-height: 200px;
         padding: 0 22px 18px;
    }

    /* ====== CONTACT CTA ====== */
    .cta-section {
         background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
         color: white;
         padding: 80px 40px;
         text-align: center;
         position: relative;
         overflow: hidden;
    }

    .cta-section::before {
         content: '';
         position: absolute;
         inset: 0;
         background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    }

    .cta-section h2 {
         font-size: clamp(24px, 4vw, 40px);
         font-weight: 900;
         margin-bottom: 16px;
         position: relative;
    }

    .cta-section p {
         font-size: 16px;
         opacity: .88;
         margin-bottom: 36px;
         position: relative;
         max-width: 560px;
         margin-inline: auto;
         margin-bottom: 36px;
    }

    .cta-btns {
         display: flex;
         gap: 16px;
         justify-content: center;
         flex-wrap: wrap;
         position: relative;
    }

    .btn-wa {
         background: #25D366;
         color: white;
         box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    .btn-wa:hover {
         background: #1fb554;
         transform: translateY(-2px);
    }

    .btn-call {
         background: white;
         color: var(--primary);
         box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    .btn-call:hover {
         transform: translateY(-2px);
         box-shadow: 0 10px 28px rgba(255, 255, 255, 0.4);
    }

    /* ====== FOOTER ====== */
    footer {
         background: var(--primary-dark);
         color: rgba(255, 255, 255, 0.85);
         padding: 60px 40px 30px;
    }

    .footer-grid {
         display: grid;
         grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
         gap: 40px;
         max-width: 1200px;
         margin: 0 auto 40px;
    }

    .footer-brand .logo-text .name {
         color: var(--accent-light);
    }

    .footer-brand .logo-text .sub {
         color: rgba(255, 255, 255, 0.5);
    }

    .footer-brand p {
         font-size: 13px;
         line-height: 1.8;
         opacity: .75;
         margin: 16px 0;
    }

    .footer-socials {
         display: flex;
         gap: 10px;
    }

    .footer-socials a {
         width: 36px;
         height: 36px;
         background: rgba(255, 255, 255, 0.1);
         border-radius: 8px;
         display: flex;
         align-items: center;
         justify-content: center;
         color: white;
         font-size: 16px;
         text-decoration: none;
         transition: background var(--transition);
    }

    .footer-socials a:hover {
         background: var(--accent);
    }

    .footer-col h4 {
         font-size: 15px;
         font-weight: 700;
         color: var(--accent-light);
         margin-bottom: 18px;
    }

    .footer-col ul {
         list-style: none;
    }

    .footer-col ul li {
         margin-bottom: 10px;
    }

    .footer-col ul li a {
         color: rgba(255, 255, 255, 0.7);
         text-decoration: none;
         font-size: 13px;
         transition: color var(--transition);
    }

    .footer-col ul li a:hover {
         color: var(--accent-light);
    }

    .footer-contact-item {

         display: flex;
         gap: 10px;
         margin-bottom: 12px;
         font-size: 13px;
         color: var(--bg-light);

    }
    .footer-contact-item.x{
     align-items: center;
    }
    .footer-contact-item  a{
     color: var(--bg-light);
     text-decoration: none;
     display: block;
    }

    .footer-contact-item .ic {
         color: var(--accent);
         font-size: 16px;
         flex-shrink: 0;
         margin-top: 2px;
    }

 .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 13px;
      opacity: .6;
      max-width: 1200px;
      margin: 0 auto;
 }

 .footer-bottom .made-by {
      margin-top: 6px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px ;
 }

 .footer-bottom .made-by a {
      color: var(--accent-light);
      text-decoration: none;
      margin-inline: 4px;
 }

 .footer-bottom .made-by a:hover {
      text-decoration: underline;
 }

 /* شبكتين للفيديو بدل التخطيط القديم */
 .works-grid--videos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
 }

 /* نفس الـ work-item القديم شغال هنا */

 /* زر تشغيل فوق الفيديو */
 .work-media {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: #000;
 }

 .work-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: pointer;
 }

 .video-play-btn {
      position: absolute;
      inset-inline-start: 50%;
      inset-block-start: 50%;
      transform: translate(70%, -50%);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: none;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-size: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), opacity var(--transition);
 }

 .video-play-btn:hover {
      background: rgba(0, 0, 0, 0.8);
      transform: translate(70%, -50%) scale(1.05);
 }

 .video-play-btn.is-playing {
      opacity: 0;
      pointer-events: none;
 }
 /* ===== WORKS CAROUSEL ===== */
 .works-carousel {
      margin-top: 36px;
 }

 .myWorksSwiper {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
 }

 .myWorksSwiper .swiper-slide {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
 }

 .myWorksSwiper .swiper-slide img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
 }

 /* أزرار Swiper */
 .swiper-button-next,
 .swiper-button-prev {
      color: var(--white);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.35);
 }

 .swiper-button-next::after,
 .swiper-button-prev::after {
      font-size: 16px;
 }

 .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.6);
 }

 .swiper-pagination-bullet-active {
      background: var(--accent);
 }

    /* ====== ANIMATIONS ====== */
    @keyframes fadeInDown {
         from {
              opacity: 0;
              transform: translateY(-24px);
         }

         to {
              opacity: 1;
              transform: translateY(0);
         }
    }

    @keyframes fadeInUp {
         from {
              opacity: 0;
              transform: translateY(24px);
         }

         to {
              opacity: 1;
              transform: translateY(0);
         }
    }

    @keyframes fadeInRight {
         from {
              opacity: 0;
              transform: translateX(30px);
         }

         to {
              opacity: 1;
              transform: translateX(0);
         }
    }

    @keyframes fadeInLeft {
         from {
              opacity: 0;
              transform: translateX(-30px);
         }

         to {
              opacity: 1;
              transform: translateX(0);
         }
    }

    @keyframes scaleIn {
         from {
              opacity: 0;
              transform: scale(0.85);
         }

         to {
              opacity: 1;
              transform: scale(1);
         }
    }

    @keyframes float {

         0%,
         100% {
              transform: translateY(0);
         }

         50% {
              transform: translateY(-10px);
         }
    }

    .animate-on-scroll {
         opacity: 0;
         transform: translateY(30px);
         transition: opacity .7s ease, transform .7s ease;
    }

    .animate-on-scroll.visible {
         opacity: 1;
         transform: translateY(0);
    }

    .animate-delay-1 {
         transition-delay: .1s !important;
    }

    .animate-delay-2 {
         transition-delay: .2s !important;
    }

    .animate-delay-3 {
         transition-delay: .3s !important;
    }

    .animate-delay-4 {
         transition-delay: .4s !important;
    }

    .animate-delay-5 {
         transition-delay: .5s !important;
    }

    /* ====== COUNTER ANIMATION ====== */
    .counter-value {
         font-size: 38px;
         font-weight: 900;
         color: var(--primary);
    }

    /* ====== PROGRESS BARS ====== */
    .progress-wrap {
         margin-bottom: 18px;
    }

    .progress-label {
         display: flex;
         justify-content: space-between;
         font-size: 13px;
         font-weight: 600;
         color: var(--text-mid);
         margin-bottom: 7px;
    }

    .progress-bar-bg {
         background: #e8ddd8;
         border-radius: 50px;
         height: 8px;
         overflow: hidden;
    }

    .progress-bar-fill {
         height: 100%;
         border-radius: 50px;
         background: linear-gradient(90deg, var(--primary), var(--accent));
         width: 0;
         transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
    }

    /* ====== PROCESS STEPS ====== */
    .steps-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 28px;
         max-width: 1200px;
         margin: 0 auto;
         position: relative;
    }

    .steps-grid::before {
         content: '';
         position: absolute;
         top: 36px;
         right: 10%;
         left: 10%;
         height: 2px;
         background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
         opacity: .25;
    }

    .step-card {
         background: var(--white);
         border-radius: var(--radius);
         padding: 30px 20px;
         text-align: center;
         box-shadow: var(--shadow);
         position: relative;
         transition: all var(--transition);
    }

    .step-card:hover {
         transform: translateY(-6px);
    }

    .step-num {
         width: 52px;
         height: 52px;
         background: linear-gradient(135deg, var(--primary), var(--accent));
         color: white;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 20px;
         font-weight: 900;
         margin: 0 auto 16px;
         box-shadow: 0 4px 14px rgba(139, 58, 26, 0.35);
    }

    .step-card h3 {
         font-size: 15px;
         font-weight: 800;
         margin-bottom: 8px;
         color: var(--text-dark);
    }

    .step-card p {
         font-size: 13px;
         color: var(--text-light);
         line-height: 1.7;
    }

    /* ====== TRUST BADGES ====== */
    .trust-bar {
         background: var(--white);
         padding: 28px 40px;
         border-bottom: 1px solid rgba(139, 58, 26, 0.08);
    }

    .trust-items {
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 40px;
         flex-wrap: wrap;
         max-width: 1000px;
         margin: 0 auto;
    }

    .trust-item {
         display: flex;
         align-items: center;
         gap: 10px;
         font-size: 14px;
         font-weight: 600;
         color: var(--text-mid);
    }

    .trust-item .icon {
         font-size: 22px;
         color: var(--primary);
    }

    /* ====== RESPONSIVE ====== */
    @media(max-width: 900px) {
         .hero-container {
              grid-template-columns: 1fr;
         }

         .hero-visual {
              display: none;
         }

         .footer-grid {
              grid-template-columns: 1fr 1fr;
         }

         .navbar {
              padding: 0 20px;
         }

         .nav-links {
              display: none;
         }
    }

    @media(max-width: 600px) {
         .topbar {
              padding: 8px 16px;
              font-size: 12px;
         }

         .section {
              padding: 50px 16px;
         }

         .hero {
              padding: 50px 16px;
                    background-position: left;
         }

         .footer-grid {
              grid-template-columns: 1fr;
         }

         .steps-grid::before {
              display: none;
         }
    }

    #preloader {
         position: fixed;
         inset: 0;
         background: #fff;
         z-index: 99999;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    #preloader.hide {
         opacity: 0;
         visibility: hidden;
    }

    .loader-content {
         text-align: center;
    }

    /* الشاحنة */
    .loader-truck {
         font-size: 52px;
         display: inline-block;
         animation: truckBounce 0.6s ease-in-out infinite alternate;
    }

    @keyframes truckBounce {
         from {
              transform: translateY(0px);
         }

         to {
              transform: translateY(-10px);
         }
    }

    .loader-road {
         width: 220px;
         height: 6px;
         background: #f0ece8;
         border-radius: 10px;
         margin: 12px auto 16px;
         overflow: hidden;
    }

    .loader-line {
         height: 100%;
         width: 0%;
         background: linear-gradient(90deg, var(--accent, #8B3A1A), #d4692a);
         border-radius: 10px;
         animation: loadLine 2s ease-in-out forwards;
    }

    @keyframes loadLine {
         0% {
              width: 0%;
         }

         100% {
              width: 100%;
         }
    }

    .loader-text {
         font-family: 'Cairo', sans-serif;
         font-size: 22px;
         font-weight: 900;
         color: var(--accent, #8B3A1A);
         margin: 0 0 4px;
    }

    .loader-sub {
         font-family: 'Cairo', sans-serif;
         font-size: 13px;
         color: #999;
         letter-spacing: 1px;
    }