:root {
  --primary: #e17d19;
  --primary-light: #fff3e5;
  --primary-dark: #b85d00;

  --green: #50a028;
  --green-light: #e8f5e0;
  --green-dark: #2d6a14;

  --dujan: #1565c0;
  --dujan-light: #e3f0fd;
  --dujan-dark: #0d47a1;

  --libyah: #b85d00;
  --libyah-gold: #c8a415;
  --libyah-gold-light: #fdf8e1;
  --libyah-gold-dark: #a18510;

  --danger-color: #dc3545;

  --bg-primary: #ffffff;
  --bg-secondary: #f7f9fc;
  --bg-tertiary: #eceff4;
  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --text-light: #ffffff;
  --border-color: #e2e8f0;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --card-bg: #ffffff;
  --shadow-color: rgba(225, 125, 25, 0.06);
  --shadow-heavy: rgba(225, 125, 25, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] {
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-tertiary: #334155;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-light: #ffffff;
  --border-color: #334155;
  --nav-bg: rgba(15, 23, 42, 0.94);
  --card-bg: #1E293B;
  --shadow-color: rgba(0, 0, 0, 0.30);
  --shadow-heavy: rgba(0, 0, 0, 0.50);
  --primary-light: #2e1a06;
  --green-light: #11240a;
  --dujan-light: #0d1f3c;
  --libyah-gold-light: #28230d;
  --glass-bg: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
}

html[data-lang="ar"] .en {
  display: none !important;
}

html[data-lang="en"] .ar {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 30px;
}

.preloader-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 10px;
  animation: preloaderFill 1.5s ease-in-out forwards;
}

@keyframes preloaderFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.cursor-follower {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-follower {
    display: block;
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    pointer-events: none;
    z-index: 99998;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .cursor-follower.active {
    opacity: 0.5;
  }

  .cursor-follower.hovering {
    width: 50px;
    height: 50px;
    border-color: var(--libyah-gold);
    opacity: 0.3;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease;
}

html[dir="rtl"] .scroll-progress {
  left: auto;
  right: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  height: 65px;
  box-shadow: 0 4px 30px var(--shadow-color);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.logo-text-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text-en {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

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

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

.lang-pill {
  display: flex;
  background-color: var(--bg-tertiary);
  border-radius: 30px;
  padding: 4px;
  border: 1px solid var(--border-color);
}

.lang-btn {
  border: none;
  background: none;
  color: var(--text-secondary);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background-color: var(--card-bg);
  color: var(--primary);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.theme-btn {
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background-color: var(--bg-tertiary);
  transform: scale(1.05) rotate(15deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 125, 25, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 125, 25, 0.35);
}

.mob-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mob-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 160px 0 100px 0;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(100px);
  z-index: 1;
}

[data-theme="dark"] .hero-blob {
  opacity: 0.10;
}

.blob1 {
  width: 500px;
  height: 500px;
  background-color: var(--primary);
  top: -150px;
  right: -150px;
}

.blob2 {
  width: 400px;
  height: 400px;
  background-color: var(--libyah-gold);
  bottom: -100px;
  left: -100px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid var(--glass-border);
}

[data-theme="dark"] .hero-badge {
  background: rgba(225, 125, 25, 0.15);
  border-color: rgba(225, 125, 25, 0.3);
}

.hero-title-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.hero-title-en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hl-blue {
  color: var(--primary);
  position: relative;
}

.hl-gold {
  color: var(--libyah-gold);
  position: relative;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(225, 125, 25, 0.3);
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 125, 25, 0.4);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-o:hover {
  background-color: var(--bg-tertiary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.stat-i {
  display: flex;
  flex-direction: column;
}

.stat-v {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.stat-l {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hero-img-container {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(225, 125, 25, 0.15));
}

[data-theme="dark"] .hero-main-img {
  filter: drop-shadow(0 20px 50px rgba(225, 125, 25, 0.35));
}

.hero-img-ring {
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(225, 125, 25, 0.15);
  border-radius: 50%;
  z-index: 1;
}

[data-theme="dark"] .hero-img-ring {
  border-color: rgba(225, 125, 25, 0.30);
}

.hero-img-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 3;
}

.dot-1 {
  background-color: var(--primary);
  top: 10%;
  right: -6px;
  box-shadow: 0 0 0 6px rgba(225, 125, 25, 0.15);
}

.dot-2 {
  background-color: var(--libyah-gold);
  bottom: 15%;
  left: -6px;
  box-shadow: 0 0 0 6px rgba(200, 164, 21, 0.15);
}

.dot-3 {
  background-color: var(--green);
  top: 50%;
  right: -6px;
  box-shadow: 0 0 0 6px rgba(0, 137, 123, 0.15);
}

[data-theme="dark"] .dot-1 {
  box-shadow: 0 0 0 6px rgba(225, 125, 25, 0.35);
}

[data-theme="dark"] .dot-2 {
  box-shadow: 0 0 0 6px rgba(200, 164, 21, 0.35);
}

[data-theme="dark"] .dot-3 {
  box-shadow: 0 0 0 6px rgba(0, 137, 123, 0.35);
}

.fc {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px var(--shadow-color);
  transition: all 0.3s ease;
  z-index: 5;
}

.fc:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px var(--shadow-heavy);
}

.fc-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.fc-ico.bl {
  background-color: var(--dujan-light);
  color: var(--dujan);
}

.fc-ico.gd {
  background-color: var(--libyah-gold-light);
  color: var(--libyah-gold);
}

.fc-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.fc-sub {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.fc-top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.fc-right {
  right: 5%;
  top: 45%;
}

.fc-bottom {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.fc-left {
  left: 5%;
  top: 45%;
}

.brand-strip {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
}

.bs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bp {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bm {
  width: 100px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bm.dj img {
  width: 100px;
}

.bm.ly {
  background-color: var(--libyah-gold);
}

.bn {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.btag {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

.bs-div {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

.section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.section-alt {
  background-color: var(--bg-secondary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sh {
  margin-bottom: 60px;
  max-width: 700px;
}

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

.s-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.s-lbl i {
  font-size: 6px;
}

.s-title {
  font-family: 'Cairo', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}

.s-title span.ac-b {
  color: var(--primary);
}

.s-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 16px;
}

.s-desc.center {
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px var(--shadow-heavy);
  border: 1px solid var(--border-color);
}

.about-img-file {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover .about-img-file {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 40px var(--shadow-heavy);
}

html[dir="rtl"] .about-badge {
  right: auto;
  left: -30px;
}

.ab-ico {
  width: 48px;
  height: 48px;
  background: var(--libyah-gold);
  color: var(--libyah-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ab-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.ab-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.about-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 20px;
}

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

.vmv-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-heavy);
  border-color: var(--primary);
}

.vmv-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.vmv-card:nth-child(2) .vmv-ico {
  background: var(--green);
}

.vmv-card:nth-child(3) .vmv-ico {
  background: var(--libyah-gold);
}

.vmv-ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.vmv-txt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.prod-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-heavy);
}

.pimg {
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-img-file {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prod-card:hover .product-img-file {
  transform: scale(1.1) translateY(-5px);
}

.pbody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pbadge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.badge-d {
  background: var(--dujan);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.badge-l {
  background: var(--libyah-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.pname-ar {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pname-en {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.pdesc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.plink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--dujan);
  transition: gap 0.3s ease, color 0.3s ease;
}

.plink.ly {
  color: var(--libyah-gold);
}

.plink:hover {
  gap: 14px;
}

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

.why-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-heavy);
  border-color: var(--primary);
}

.wico {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.why-card:nth-child(even) .wico {
  background: var(--libyah-gold);
}

.wt-ar {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.wt-en {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 16px;
}

.wd {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.qband {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.qsteps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.qstep {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 24px 16px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qstep:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px var(--shadow-heavy);
  border-color: var(--primary);
}

.qnum {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

html[dir="rtl"] .qnum {
  left: auto;
  right: 12px;
}

.qicon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
  margin-top: 10px;
}

.qstep:nth-child(even) .qicon {
  color: var(--libyah-gold);
}

.qstep:nth-child(even) .qnum {
  background: var(--libyah-gold);
}

.qtitle-ar {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.qtitle-en {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

.brand-show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-primary);
}

.bhalf {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.bhalf-img-wrap {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bhalf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bhalf:hover .bhalf-img {
  transform: scale(1.06);
}

.bhalf-body {
  padding: 60px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bh-subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.bh-logo {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Cairo', sans-serif;
}

.dj .bh-logo {
  color: var(--dujan);
}

.ly .bh-logo {
  color: var(--libyah-gold);
}

.bh-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.bh-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.bh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.bh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.bh-tag:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.bh-tag i {
  color: var(--dujan);
}

.ly .bh-tag i {
  color: var(--libyah-gold);
}

.ly .bh-tag:hover {
  border-color: var(--libyah-gold);
}

.btn-dj,
.btn-ly {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.btn-dj {
  background: var(--dujan);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.25);
}

.btn-dj:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.35);
}

.btn-ly {
  background: var(--libyah-gold);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(200, 164, 21, 0.25);
}

.btn-ly:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 164, 21, 0.35);
}

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

.dist-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-heavy);
  border-color: var(--primary);
}

.dico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dist-card:nth-child(even) .dico {
  background: var(--libyah-gold);
}

.dttl-ar {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dttl-en {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 12px;
}

.dtxt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cta-band {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 80px 40px;
  text-align: center;
  max-width: 1152px;
  margin: 60px auto;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(225, 125, 25, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 16px 0;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px auto;
  opacity: 0.9;
  position: relative;
}

.btn-wh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-wh:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-wrap h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--text-primary);
}

.contact-wrap p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cdetails {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cdet {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.cdet-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.wa-ico {
  background: #25d366 !important;
}

.cform {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 50px var(--shadow-heavy);
}

.frow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.flbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.en-note {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
}

.finp,
.fsel,
.ftxt {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  padding: 14px 18px;
  border-radius: 14px;
  font-family: inherit;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

.finp:focus,
.fsel:focus,
.ftxt:focus {
  border-color: var(--primary);
  background-color: var(--card-bg);
  outline: none;
  box-shadow: 0 0 0 4px rgba(225, 125, 25, 0.1);
}

.ftxt {
  height: 120px;
  resize: vertical;
}

.fsub {
  border: none;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 16px;
}

.fsub:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.fsub i {
  font-size: 18px;
}

.form-hint {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.form-hint i {
  color: #25d366;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 9998;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: waFloat 3s ease-in-out infinite;
}

html[dir="rtl"] .whatsapp-float {
  left: auto;
  right: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.wa-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card-bg);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--shadow-heavy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

html[dir="rtl"] .wa-tooltip {
  left: auto;
  right: 70px;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

.footer {
  background-color: #0b1120;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
}

[data-theme="light"] .footer {
  background-color: #0f172a;
  color: #94a3b8;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--text-light);
}

[data-theme="light"] .footer a {
  color: #94a3b8;
}

[data-theme="light"] .footer a:hover {
  color: #ffffff;
}

.fg {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.fbrand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fbrand p {
  font-size: 14px;
  line-height: 1.7;
}

.logo-sq {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.fsocial {
  display: flex;
  gap: 12px;
}

.fsocial a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

[data-theme="light"] .fsocial a {
  background-color: #1e293b;
  border-color: #334155;
}

.fsocial a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.fcol h4 {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 20px 0;
}

.fcol ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcol ul li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fbot {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

[data-theme="light"] .fbot {
  border-top-color: #334155;
}

.fbot-links {
  display: flex;
  gap: 20px;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: none;
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
}

.stagger-children>*.active {
  opacity: 1;
  transform: none;
}

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

  .mob-toggle {
    display: flex;
  }

  .mob-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mob-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mob-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: -10px 0 30px var(--shadow-heavy);
    flex-direction: column;
    padding: 100px 40px;
    transition: right 0.3s ease;
    gap: 20px;
    z-index: 1000;
  }

  html[dir="rtl"] .nav-links {
    right: auto;
    left: -100%;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  html[dir="rtl"] .nav-links.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-desc {
    margin: 0 auto 32px auto;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-visual {
    height: 400px;
    margin-top: 20px;
  }

  .hero-img-container {
    width: 300px;
    height: 300px;
  }

  .hero-main-img {
    object-fit: contain;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-badge {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .qsteps {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .brand-show {
    grid-template-columns: 1fr;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .bs-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .bs-div {
    display: none;
  }

  .cta-band {
    margin: 40px 24px;
    padding: 40px 24px;
    border-radius: 24px;
  }

  .fbot {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .hero-title-ar {
    font-size: 32px;
  }

  .hero-img-container {
    width: 220px;
    height: 220px;
  }

  .hero-img-ring {
    inset: -12px;
  }

  .fc {
    font-size: 12px;
    padding: 6px 12px;
    gap: 8px;
  }

  .fc-ico {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .fc-name {
    font-size: 12px;
  }

  .fc-sub {
    font-size: 9px;
  }

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

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

  .qsteps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bhalf-body {
    padding: 30px;
  }

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

  .cform {
    padding: 24px;
  }

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