@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --dark: #06140d;
  --green: #0b2d1a;
  --lime: #31b96b;
  --gold: #c8a85a;
  --white: #ffffff;
  --muted: #aeb8b1;
  --light: #f4f6f3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Alexandria', Arial, sans-serif;
  background: var(--dark);
  color: #ffffff;
  overflow-x: hidden;
}

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


/* ==========================================
   النافبار المتطور
   ========================================== */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background: rgba(6, 19, 14, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(6, 19, 14, 0.98);
    padding: 10px 6%;
    border-bottom: 1px solid rgba(72, 213, 139, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #48d58b, #2d8f5a);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover {
    color: #48d58b;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #48d58b;
}

.nav-link.active::after {
    width: 100%;
}

/* ===== أزرار اللغات ===== */
.lang-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
    background: #48d58b;
    color: #06130e;
    box-shadow: 0 4px 15px rgba(72, 213, 139, 0.3);
}

.lang-btn span {
    font-size: 14px;
}

/* ===== زر طلب عرض سعر ===== */
.btn.green {
    background: linear-gradient(135deg, #48d58b, #2d8f5a);
    color: #06130e;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(72, 213, 139, 0.2);
}

.btn.green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(72, 213, 139, 0.35);
    background: linear-gradient(135deg, #3ec77a, #257a4d);
}

/* ===== التجاوب مع الشاشات ===== */
@media (max-width: 992px) {
    .links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 12px 5%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        height: 40px !important;
    }

    .lang-bar {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .btn.green {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ===== التجاوب مع الشاشات ===== */
@media (max-width: 992px) {
    .links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 12px 5%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        height: 60px !important;
    }
    
    .nav .logo {
        margin-right: 0px;
    }

    .lang-bar {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .btn.green {
        padding: 8px 16px;
        font-size: 12px;
    }
}
/* ===== التجاوب مع الشاشات ===== */
@media (max-width: 992px) {
    .links {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 12px 5%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        height: 85px !important;
    }
    .nav .logo {
    margin-right: 40px; 
}

    .lang-bar {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .btn.green {
        padding: 8px 16px;
        font-size: 12px;
    }
}
.nav.scrolled {
  background: #06140df2;
  border-color: #ffffff12;
  padding: 13px 6%;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.logo b {
  color: var(--lime);
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.lang-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #d7ddd9;
  font-family: 'Manrope', 'Alexandria', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--lime);
  color: #06140d;
  box-shadow: 0 4px 15px rgba(49, 185, 107, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 5px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.3s ease;
}

.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.4) 45%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.btn:hover:before {
  transform: translateX(130%);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(49, 185, 107, 0.27);
}

.btn.green {
  background: var(--lime);
  color: #06140d;
}

.btn.white {
  border: 1px solid #ffffff;
  background: #ffffff18;
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero video,
.hero:before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero:before {
  content: '';
  background: linear-gradient(90deg, #06140dcc, #06140d55);
  z-index: 1;
}

.hero:after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, transparent 20%, #06140d99 75%);
  animation: breathe 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 100px 20px;
}

.hero-content > * {
  animation: reveal 0.9s both;
}

.hero-content h1 {
  font-size: clamp(42px, 7vw, 90px);
  line-height: 1.05;
  margin: 20px 0;
  animation-delay: 0.15s;
}

.hero-content p {
  font-size: 20px;
  color: #d7ddd9;
  animation-delay: 0.3s;
}

.hero-content .actions {
  animation-delay: 0.45s;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 3px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
}

.section {
  padding: 100px 7%;
  position: relative;
  isolation: isolate;
}

.section:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(49, 185, 107, 0.04);
  filter: blur(70px);
  z-index: -1;
  left: -250px;
  top: 10%;
}

.light {
  background: var(--light);
  color: #102018;
}

.title {
  max-width: 720px;
  margin-bottom: 50px;
}

.title span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.title h2 {
  font-size: clamp(32px, 5vw, 55px);
  margin: 12px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  border-left: 1px solid #ffffff33;
  padding: 20px;
  transition: all 0.4s ease;
  border-radius: 12px;
}

.stat:hover {
  background: #ffffff08;
  transform: translateY(-6px);
}

.num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product {
  height: 520px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #112233;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.product:hover img {
  transform: scale(1.09);
}

.product:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #06140ded);
}

.product:before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 14px;
  transition: border-color 0.4s ease;
}

.product:hover:before {
  border-color: #ffffff55;
}

.product-info {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  right: 30px;
  transition: transform 0.5s ease;
}

.product:hover .product-info {
  transform: translateY(-8px);
}

.product:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.product h3 {
  font-size: 34px;
  margin: 0 0 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.step {
  padding: 25px 12px;
  border-top: 2px solid var(--lime);
  font-weight: 700;
  position: relative;
  transition: all 0.4s ease;
}

.step:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  top: -7px;
  right: 0;
  box-shadow: 0 0 0 7px rgba(49, 185, 107, 0.13);
}

.step:hover {
  transform: translateY(-8px);
  color: var(--lime);
}

.step small {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.map-section {
  background: #07110c;
  color: #ffffff;
}

.real-map {
  height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #030a07 !important;
  border: 1px solid #ffffff1c;
  isolation: isolate;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.69);
}

.real-map:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(92, 255, 154, 0.043) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(92, 255, 154, 0.043) 1px, transparent 1px) !important;
  background-size: 42px 42px;
  z-index: 0;
}

.real-map:after {
  content: "";
  position: absolute;
  inset: 5% 3%;
  background: url("https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg") center/contain no-repeat;
  filter: invert(1) sepia(0.25) hue-rotate(85deg) saturate(0.55) brightness(0.38);
  opacity: 0.75;
  z-index: 1;
}

.hub,
.market {
  position: absolute;
  z-index: 4 !important;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: 700 13px 'Alexandria', sans-serif;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hub {
  left: 52%;
  top: 53%;
  font-size: 28px;
  background: #e7c66f !important;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: 0 0 0 8px rgba(231, 198, 111, 0.13), 0 0 35px #e7c66fcc;
  animation: hub 2s infinite;
}

.hub b {
  font-size: 13px;
}

.market {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #51e68a !important;
  box-shadow: 0 0 0 7px rgba(81, 230, 138, 0.12), 0 0 24px #51e68a;
  animation: marketPulse 2s infinite;
  font-size: 24px;
}

.market span {
  position: absolute;
  top: 22px;
  white-space: nowrap;
  background: rgba(6, 18, 12, 0.91) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.56);
  font-size: 12px;
  padding: 5px 9px;
  border: 1px solid #ffffff24;
  border-radius: 20px;
}

.market:hover {
  transform: scale(1.15);
}

.market:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background: linear-gradient(#51e68a, transparent);
  transform-origin: top;
  opacity: 0.65;
  pointer-events: none;
}

.m1 { left: 65%; top: 45%; } .m1:after { transform: rotate(110deg); }
.m2 { left: 60%; top: 49%; } .m2:after { transform: rotate(130deg); }
.m3 { left: 63%; top: 52%; } .m3:after { transform: rotate(105deg); }
.m4 { left: 42%; top: 34%; } .m4:after { transform: rotate(45deg); }
.m5 { left: 43%; top: 25%; } .m5:after { transform: rotate(60deg); }
.m6 { left: 39%; top: 24%; } .m6:after { transform: rotate(65deg); }
.m7 { left: 67%; top: 50%; } .m7:after { transform: rotate(115deg); }
.m8 { left: 37%; top: 30%; } .m8:after { transform: rotate(50deg); }
.m9 { left: 34%; top: 38%; } .m9:after { transform: rotate(35deg); }

.map-card {
  position: absolute;
  z-index: 6 !important;
  right: 28px;
  bottom: 28px;
  width: 300px;
  background: linear-gradient(145deg, rgba(10, 25, 18, 0.96), rgba(6, 16, 11, 0.96)) !important;
  border: 1px solid rgba(85, 221, 138, 0.33) !important;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.56);
}

.map-card small {
  color: #65d985;
  letter-spacing: 2px;
}

.map-card h3 {
  font-size: 25px;
  margin: 8px 0;
}

.map-card p {
  color: #d2ddd6;
  line-height: 2;
}

.quality-premium {
  background: radial-gradient(circle at 50% 20%, #183b2a 0, #09140f 45%, #050806 100%);
  color: #ffffff;
  overflow: hidden;
}

.quality-premium .title p,
.why-premium .title p {
  color: #b9c8bf;
}

.quality-track {
  max-width: 1200px;
  margin: 70px auto 10px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
  gap: 12px;
}

.quality-track:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d9b968, #65d887, #d9b968, transparent);
  box-shadow: 0 0 18px #65d887;
  animation: flow 3s linear infinite;
}

.quality-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0.25;
  transform: translateY(35px);
  transition: all 0.7s ease;
}

.quality-step.show {
  opacity: 1;
  transform: none;
}

.q-icon {
  width: 100px;
  height: 100px;
  margin: auto;
  border: 1px solid #ffffff24;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  background: #0c1912;
  box-shadow: 0 0 0 10px #07100b, 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.quality-step:hover .q-icon {
  transform: translateY(-10px) rotate(5deg);
  border-color: #d9b968;
  box-shadow: 0 0 30px rgba(217, 185, 104, 0.33);
}

.quality-step h3 {
  margin: 22px 0 4px;
}

.quality-step small,
.video-card small,
.why article small {
  letter-spacing: 2px;
  color: #d9b968;
  font-weight: 700;
}

.quality-step p {
  font-size: 13px;
  line-height: 1.7;
  color: #aebdb4;
  padding: 0 8px;
}

.video-premium {
  background: #06100b !important;
  color: #ffffff !important;
}

.video-premium .title h2,
.video-premium .title p {
  color: #ffffff !important;
}

.premium-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 50px auto;
}

.premium-videos .video-card {
  background: #0b1812 !important;
  border: 1px solid #ffffff18 !important;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5) !important;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.premium-videos .video-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(16, 32, 23, 0.35) !important;
}

.premium-videos .video-card h3 {
  color: #ffffff !important;
}

.premium-videos .video-card p {
  color: #b9c8bf !important;
  line-height: 1.7;
}

.premium-videos .video-card > div:last-child {
  padding: 24px;
}

.video-bg {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: none !important;
}

.video-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, #06100be8) !important;
}

.video-bg button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #ffffff88;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 24px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover button {
  transform: translate(-50%, -50%) scale(1.15);
  background: #1b8c50;
}

.carrot {
  background-image: linear-gradient(#001a0a44, #001a0a88), url('https://images.unsplash.com/photo-1447175008436-054170c2e979?auto=format&fit=crop&w=1000&q=80');
}

.lemon {
  background-image: linear-gradient(#001a0a44, #001a0a88), url('https://images.unsplash.com/photo-1590502593747-42a996133562?auto=format&fit=crop&w=1000&q=80');
}

.okra {
  background-image: linear-gradient(#001a0a44, #001a0a88), url('https://images.unsplash.com/photo-1603046891744-76e6300c6a16?auto=format&fit=crop&w=1000&q=80');
}

.why-premium {
  background: linear-gradient(135deg, #07120c, #0d2117);
  color: #ffffff;
}

.why-premium .why {
  max-width: 1200px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-premium article {
  position: relative;
  padding: 32px;
  border: 1px solid #ffffff18;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff0d, #ffffff03);
  overflow: hidden;
  transition: all 0.4s ease;
}

.why-premium article:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(98, 220, 130, 0.07);
  left: -50px;
  bottom: -50px;
  transition: transform 0.5s ease;
}

.why-premium article:hover {
  transform: translateY(-9px);
  border-color: rgba(217, 185, 104, 0.4);
}

.why-premium article:hover:before {
  transform: scale(2);
}

.why-premium article span {
  font-size: 38px;
  display: block;
  margin-bottom: 20px;
}

.why-premium article h3 {
  margin: 0 0 7px;
}

.why-premium article p {
  color: #afbeb5;
  line-height: 1.7;
  margin-bottom: 0;
}

.why-premium article i {
  position: absolute;
  left: 25px;
  top: 25px;
  color: #d9b968;
  font-style: normal;
  font-size: 20px;
}

.logos {
  overflow: hidden;
  white-space: nowrap;
  font: 800 35px 'Manrope', sans-serif;
  color: #ffffff55;
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.logos:hover {
  animation-play-state: paused;
}

.logos span {
  margin: 0 35px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote {
  padding: 28px;
  border: 1px solid #ffffff20;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.quote:hover {
  transform: translateY(-8px);
  border-color: #31b96b88;
}

.stars {
  color: var(--gold);
}

.contact {
  background: linear-gradient(120deg, #092417, #06140d);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form input,
.form select,
.form textarea {
  padding: 17px;
  background: #ffffff;
  color: #111111;
  border: 0;
  border-radius: 5px;
  font-family: inherit;
}

.form textarea {
  grid-column: 1 / -1;
  min-height: 120px;
}

.form button {
  grid-column: 1 / -1;
  border: 0;
}

.wa {
  position: fixed;
  z-index: 30;
  bottom: 25px;
  left: 25px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 7px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer {
  padding: 35px 7%;
  color: #89948d;
  display: flex;
  justify-content: space-between;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes breathe {
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

@keyframes flow {
  to {
    filter: hue-rotate(25deg);
  }
}

@keyframes hub {
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 24px #e5c46a);
  }
}

@keyframes marketPulse {
  50% {
    box-shadow: 0 0 0 12px rgba(81, 230, 138, 0.03), 0 0 30px #51e68a;
  }
}

@keyframes marquee {
  to {
    transform: translateX(35%);
  }
}

@media (max-width: 900px) {
  .quality-track {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .quality-track:before {
    top: 5%;
    bottom: 5%;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }

  .quality-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    text-align: right;
    align-items: center;
    gap: 15px;
  }

  .quality-step p {
    grid-column: 2;
  }

  .premium-videos,
  .why-premium .why {
    grid-template-columns: 1fr;
  }

  .video-bg {
    height: 220px;
  }
}

@media (max-width: 800px) {
  .links {
    display: none;
  }

  .stats,
  .products,
  .videos,
  .why,
  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 70px 6%;
  }

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

  .actions {
    flex-direction: column;
  }

  .stat {
    border: 0;
    border-bottom: 1px solid #ffffff22;
  }

  .footer {
    display: block;
  }

  .footer p {
    margin-top: 15px;
  }

  .real-map {
    height: 520px;
  }

  .map-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
  }

  .m1 { left: 72%; top: 42%; }
  .m2 { left: 58%; top: 48%; }
  .m3 { left: 70%; top: 51%; }
  .m4 { left: 25%; top: 31%; }
  .m5 { left: 32%; top: 20%; }
  .m6 { left: 20%; top: 19%; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.quality-step {
    cursor: pointer;
    transition: all 0.3s ease;
}

.quality-step:hover {
    transform: translateY(-5px);
    border-color: #48d58b;
}

.quality-step.active {
    border: 1px solid #48d58b;
    background: rgba(72, 213, 139, 0.1);
}

#quality-detail-box {
    display: none;
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.5s ease;
}

#quality-detail-box.show {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#quality-detail-box h3 {
    color: #48d58b;
    font-size: 24px;
    margin-bottom: 15px;
}

#quality-detail-box .detail-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

#quality-detail-box .detail-meta {
    margin-top: 15px;
    padding: 15px;
    background: rgba(72, 213, 139, 0.05);
    border-radius: 8px;
    border-left: 3px solid #48d58b;
}

#quality-detail-box .detail-meta span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

#quality-detail-box .detail-meta span b {
    color: #48d58b;
}
.quality-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    position: relative;
}

.quality-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    cursor: pointer;
    padding: 0;
    background: transparent !important;
    border: none !important;
    transition: transform 0.3s ease;
}

.quality-step:hover {
    transform: scale(1.05);
}

.q-icon {
    width: 90px;
    height: 90px;
    background: rgba(14, 35, 26, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.quality-step:hover .q-icon {
    border-color: #48d58b;
    transform: scale(1.1);
}

.quality-step.active .q-icon {
    background: #48d58b;
    border-color: #48d58b;
    color: #06130e;
    box-shadow: 0 0 30px rgba(72, 213, 139, 0.6);
    transform: scale(1.1);
}

.quality-step h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #fff;
}
.quality-step small {
    font-size: 12px;
    color: #48d58b;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}
.quality-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

#quality-detail-box {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0 auto;
    display: none;
    padding: 30px;
    background: rgba(14, 35, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 5px solid #48d58b;
    animation: fadeInUp 0.5s ease;
}

#quality-detail-box.show {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#quality-detail-box h3 {
    color: #48d58b;
    font-size: 24px;
    margin-bottom: 15px;
}

#quality-detail-box .detail-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

#quality-detail-box .detail-meta {
    margin-top: 15px;
    padding: 15px;
    background: rgba(72, 213, 139, 0.05);
    border-radius: 8px;
}
#quality-detail-box .detail-meta span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}
#quality-detail-box .detail-meta span b {
    color: #48d58b;
}.real-map {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.hub {
    background: #f39c12;
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}
.hub:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(243, 156, 18, 0.8);
}

.line-path {
    fill: none;
    stroke: url(#exportLine);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s ease forwards;
    opacity: 0.7;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.market {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(72, 213, 139, 0.3);
    border-radius: 20px;
    padding: 5px 12px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.market:hover, .market.active {
    background: #48d58b;
    color: #06130e;
    transform: scale(1.1);
    border-color: #48d58b;
    box-shadow: 0 0 20px rgba(72, 213, 139, 0.4);
}

.market span {
    margin-right: 5px;
}

.map-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(6, 19, 14, 0.9);
    border: 1px solid #48d58b;
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-card small {
    color: #48d58b;
    font-size: 11px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.map-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.map-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .market { font-size: 10px; padding: 3px 8px; }
    .map-card { bottom: 10px; right: 10px; padding: 15px; min-width: 150px; }
    .map-card h3 { font-size: 16px; }
}

/* ==========================================
   الفوتر - style.css
   ========================================== */

.footer-premium {
    background: linear-gradient(135deg, rgba(6, 19, 14, 0.98), rgba(10, 35, 25, 0.98));
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(72, 213, 139, 0.15);
    padding: 70px 5% 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(72, 213, 139, 0.03), transparent 50%);
    animation: footerGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes footerGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 5%) scale(1.2); }
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-logo span {
    color: #48d58b;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    font-size: 15px;
    max-width: 320px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(72, 213, 139, 0.3);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:nth-child(1):hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.social-link:nth-child(2):hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.social-link:nth-child(3):hover {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
}

.social-link:nth-child(4):hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.social-link:nth-child(5):hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.footer-col {
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #48d58b, transparent);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.footer-col:hover h4::after {
    width: 60px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #48d58b;
    transform: translateX(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.contact-item:hover {
    color: #48d58b;
    transform: translateX(-5px);
}

.contact-icon {
    font-size: 18px;
    min-width: 28px;
    color: #48d58b;
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: #48d58b;
    box-shadow: 0 0 20px rgba(72, 213, 139, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #48d58b;
    color: #06130e;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(72, 213, 139, 0.3);
}

.footer-bottom {
    padding: 25px 0;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.footer-bottom-content p strong {
    color: #48d58b;
}

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

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

.footer-bottom-links a:hover {
    color: #48d58b;
}

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

/* ===== التجاوب مع الشاشات ===== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-col ul li a:hover {
        transform: none;
    }

    .contact-item:hover {
        transform: none;
    }

    .brand-desc {
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 350px;
        margin: 0 auto;
    }

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

    .footer-bottom-links {
        justify-content: center;
    }
}
.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45); /* طبقة غامقة علشان الكتابة تبان */
    z-index: 1;
}