:root {
  --color-primary: #315f4c;
  --color-primary-light: #2c6d51;
  --color-accent: #cbb272;
  --color-accent-light: #b4a483;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --bg-primary-dark: #0f1412;
  --bg-secondary-dark: #1a2520;
  --bg-tertiary-dark: #24302a;
  --text-primary-dark: #ffffff;
  --text-secondary-dark: #e0e0e0;
  --text-light-dark: #b0b0b0;
  --border-color-dark: #2d3a34;
  --gradient-primary:
    linear-gradient(
      135deg,
      #315f4c 0%,
      #2c6d51 100%);
  --gradient-accent:
    linear-gradient(
      135deg,
      #cbb272 0%,
      #b4a483 100%);
  --gradient-hero:
    linear-gradient(
      135deg,
      rgba(49, 95, 76, 0.95) 0%,
      rgba(44, 109, 81, 0.95) 100%);
  --gradient-section:
    linear-gradient(
      135deg,
      rgba(49, 95, 76, 0.05) 0%,
      rgba(44, 109, 81, 0.05) 100%);
  --font-arabic:
    "Qatar2022",
    "Tajawal",
    "Cairo",
    "Almarai",
    sans-serif;
  --font-english:
    "Geist",
    "Inter",
    sans-serif;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}
[data-theme=dark] {
  --bg-primary: var(--bg-primary-dark);
  --bg-secondary: var(--bg-secondary-dark);
  --bg-tertiary: var(--bg-tertiary-dark);
  --text-primary: var(--text-primary-dark);
  --text-secondary: var(--text-secondary-dark);
  --text-light: var(--text-light-dark);
  --border-color: var(--border-color-dark);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Qatar2022";
  src:
    local("Qatar2022"),
    local("Qatar2022-Regular"),
    local("Qatar2022-Bold");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src:
    local("Geist"),
    local("Geist-Regular"),
    local("Geist-Medium"),
    local("Geist-SemiBold"),
    local("Geist-Bold");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@supports not (font-family: "Geist") {
  :root {
    --font-english: "Inter", sans-serif;
  }
}
body {
  font-family: var(--font-arabic);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}
[dir=ltr] body {
  font-family: var(--font-english);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}
[data-theme=dark] .header {
  background: rgba(26, 26, 26, 0.95);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar {
  padding: var(--spacing-sm) 0;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo .logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
}
.nav-logo .logo:hover {
  transform: scale(1.05);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-md);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
  border-radius: 8px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-normal);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.theme-toggle,
.language-toggle {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.theme-toggle::before,
.language-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}
.theme-toggle i,
.language-toggle .lang-text {
  position: relative;
  z-index: 1;
  transition: transform 0.3s, color 0.3s;
}
.theme-toggle:hover,
.language-toggle:hover {
  border-color: var(--color-primary);
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 6px 20px rgba(49, 95, 76, 0.3);
}
.theme-toggle:hover::before,
.language-toggle:hover::before {
  width: 100%;
  height: 100%;
}
.theme-toggle:hover i,
.language-toggle:hover .lang-text {
  color: white;
  transform: rotate(360deg);
}
.language-toggle {
  width: auto;
  min-width: 45px;
  padding: 0 var(--spacing-md);
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}
.language-toggle .lang-text {
  font-family: var(--font-english);
  letter-spacing: 1px;
}
[data-theme=dark] .theme-toggle,
[data-theme=dark] .language-toggle {
  background: var(--bg-secondary-dark);
  border-color: rgba(203, 178, 114, 0.2);
  color: var(--text-primary-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
[data-theme=dark] .theme-toggle:hover,
[data-theme=dark] .language-toggle:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(203, 178, 114, 0.3);
}
[data-theme=dark] .theme-toggle:hover::before,
[data-theme=dark] .language-toggle:hover::before {
  background:
    linear-gradient(
      135deg,
      var(--color-accent) 0%,
      var(--color-accent-light) 100%);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--spacing-xs);
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-normal);
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow: hidden;
  overflow-x: hidden;
  max-width: 100%;
}
.hero-swiper-bgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-swiper-bgs .hero-product-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (min-width: 769px) {
  .hero-product-swiper--mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero-product-swiper--desktop {
    display: none !important;
  }
  .hero-product-swiper--mobile .slide-image--hero-mobile img {
    object-fit: cover;
    object-position: center center;
  }
}
.hero-product-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: block !important;
  overflow: hidden;
}
.slide-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(49, 95, 76, 0.5) 0%,
      rgba(44, 109, 81, 0.5) 50%,
      rgba(49, 95, 76, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xxl) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 80vh;
  min-height: 80vh;
  max-height: 80vh;
  flex: 1;
}
.hero-content-section {
  display: flex;
  align-items: center;
  height: 100%;
}
.hero-content {
  color: white;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
  animation: fadeInDown 0.8s ease-out 0.2s both;
}
.hero-badge i {
  color: var(--color-accent);
  font-size: 1.1rem;
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 5.2rem);
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.title-line {
  display: block;
  color: white;
  letter-spacing: -1px;
  transition: transform var(--transition-normal);
}
.title-line:hover {
  transform: translateX(5px);
}
.title-line.highlight {
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #cbb272 40%,
      #b4a483 60%,
      #ffffff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  position: relative;
}
@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-accent);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  letter-spacing: 0.5px;
}
.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  animation: fadeInUp 0.8s ease-out 1s both;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.5s ease;
}
.stat-item:hover::before {
  left: 100%;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--color-accent);
}
.stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(49, 95, 76, 0.4);
}
.stat-content {
  flex: 1;
}
.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 2px;
  text-shadow: 0 2px 10px rgba(203, 178, 114, 0.3);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}
.btn:hover::before {
  left: 100%;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.3),
      transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.btn:hover::after {
  opacity: 1;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 6px 20px rgba(49, 95, 76, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(49, 95, 76, 0.6);
  background:
    linear-gradient(
      135deg,
      #2c6d51 0%,
      #315f4c 100%);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: white;
}
.hero-visual-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
}
.hero-visual-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  width: 100%;
  max-width: 500px;
}
.visual-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: var(--spacing-xl);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: white;
}
.visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.visual-card:hover::before {
  opacity: 1;
}
.visual-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-accent);
}
.visual-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(49, 95, 76, 0.4);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}
.visual-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--gradient-accent);
  box-shadow: 0 8px 25px rgba(203, 178, 114, 0.5);
}
.visual-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
.visual-card.card-1 {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.visual-card.card-2 {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.visual-card.card-3 {
  animation: fadeInUp 0.8s ease-out 1s both;
}
.visual-card.card-4 {
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: var(--bg-primary);
  overflow: hidden;
  z-index: 1;
  filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.1));
}
.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-stats-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 20vh;
  min-height: 20vh;
  max-height: 20vh;
  z-index: 3;
  display: flex !important;
  visibility: visible !important;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  overflow: hidden;
  overflow-x: clip;
}
.stats-3d-swiper {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
}
.stats-3d-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.stat-card-3d {
  width: 100%;
  max-width: min(280px, 100%);
  height: 100%;
  max-height: 120px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.stats-3d-swiper .swiper-slide-active .stat-card-3d {
  transform: translateZ(20px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(203, 178, 114, 0.4);
}
.stat-icon-3d {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(49, 95, 76, 0.4);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stats-3d-swiper .swiper-slide-active .stat-icon-3d {
  transform: translateZ(15px) rotate(5deg) scale(1.1);
  background: var(--gradient-accent);
  box-shadow: 0 6px 20px rgba(203, 178, 114, 0.5);
}
.stat-content-3d {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number-3d {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(203, 178, 114, 0.3);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stats-3d-swiper .swiper-slide-active .stat-number-3d {
  transform: translateZ(15px);
  color: var(--color-accent);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-shadow: 0 4px 15px rgba(203, 178, 114, 0.5);
}
.stat-label-3d {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  line-height: 1.2;
}
.stats-3d-swiper .swiper-slide-active .stat-label-3d {
  transform: translateZ(15px);
  color: white;
  font-size: 1rem;
}
.stats-3d-swiper .swiper-pagination {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}
.stats-3d-swiper .swiper-pagination-bullet {
  display: none !important;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}
[data-theme=dark] .section-title {
  color: #ffffff;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}
.about-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
}
.section-header-about-new {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}
.section-title-about-new {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  opacity: 0.3;
  transition: all 0.8s ease-out;
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
}
.section-title-about-new.in-view {
  opacity: 1;
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title-underline-new {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width 0.8s ease-out;
}
.section-title-underline-new.in-view {
  width: 80px;
}
.about-wrapper-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}
.about-images-col {
  width: 100%;
}
.about-images-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  position: relative;
}
.about-image-item-new {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.about-image-item-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.about-image-item-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.about-image-item-new:hover img {
  transform: scale(1.1);
}
.about-img-1 {
  grid-column: 1;
  grid-row: 1;
}
.about-img-2 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 25%;
}
.about-img-3 {
  grid-column: 1;
  grid-row: 2;
}
.about-img-4 {
  grid-column: 2;
  grid-row: 2;
}
.about-content-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.about-label-new {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-arabic);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-title-new {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 0 var(--spacing-md) 0;
  font-family: var(--font-arabic);
}
.about-title-new i {
  color: var(--color-primary);
}
.about-text-new {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  text-align: justify;
}
[dir=ltr] .about-text-new {
  text-align: justify;
}
.about-stats-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}
.about-stat-item-new {
  width: 100%;
}
.about-stat-item-new .d-flex {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--bg-primary);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.stat-icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(49, 95, 76, 0.4);
  transition: all var(--transition-normal);
}
.about-stat-item-new .d-flex:hover .stat-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-accent);
  box-shadow: 0 6px 20px rgba(203, 178, 114, 0.5);
}
.about-stat-item-new .d-flex:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.border-start {
  border-right: 5px solid var(--color-primary) !important;
}
[dir=ltr] .border-start {
  border-right: none !important;
  border-left: 5px solid var(--color-primary) !important;
}
.stat-number-new {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}
.display-5 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.ps-4 {
  padding-right: var(--spacing-md);
}
[dir=ltr] .ps-4 {
  padding-right: 0;
  padding-left: var(--spacing-md);
}
.about-stat-item-new .mb-0 {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.about-stat-item-new h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-arabic);
}
.btn-read-more-new {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all var(--transition-normal);
  margin-top: var(--spacing-md);
  text-decoration: none;
  width: fit-content;
  background: var(--gradient-primary);
  color: white;
  border: 2px solid transparent;
}
.btn-read-more-new:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: var(--gradient-primary);
}
.btn-read-more-new i {
  margin-right: var(--spacing-xs);
}
[dir=ltr] .btn-read-more-new i {
  margin-right: 0;
  margin-left: var(--spacing-xs);
}
.mission-vision-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
}
.mission-vision-section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}
.mission-vision-section-title-new {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  opacity: 0.3;
  transition: all 0.8s ease-out;
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
}
[data-theme=dark] .mission-vision-section-title-new {
  color: #ffffff;
  opacity: 0.9;
}
.mission-vision-section-title-new.in-view {
  opacity: 1;
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme=dark] .mission-vision-section-title-new.in-view {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
.mission-vision-section-underline-new {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width 0.8s ease-out;
}
.mission-vision-section-underline-new.in-view {
  width: 80px;
}
.mission-vision-row-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  align-items: start;
}
.mission-vision-col-new {
  padding: var(--spacing-lg) 0;
}
.mission-col-new {
  padding-right: var(--spacing-lg);
}
[dir=ltr] .mission-col-new {
  padding-right: 0;
  padding-left: var(--spacing-lg);
}
.vision-col-new {
  padding-left: var(--spacing-lg);
}
[dir=ltr] .vision-col-new {
  padding-left: 0;
  padding-right: var(--spacing-lg);
}
.image-col-new {
  min-height: 500px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.mission-vision-image-wrapper-new {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: transparent;
}
.mission-vision-image-new {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f8fafc;
  display: block;
  transition: transform var(--transition-slow);
}
.mission-vision-image-wrapper-new:hover .mission-vision-image-new {
  transform: scale(1.05);
}
.mission-vision-heading-new {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
  line-height: 1.3;
}
[dir=ltr] .mission-vision-heading-new {
  font-family: var(--font-english);
}
.mission-vision-subheading-new {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-family: var(--font-arabic);
}
[dir=ltr] .mission-vision-subheading-new {
  font-family: var(--font-english);
}
.mission-vision-text-new {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #000000;
  margin-bottom: var(--spacing-lg);
  text-align: justify;
  font-family: var(--font-arabic);
  font-weight: 500;
}
[data-theme=dark] .mission-vision-text-new {
  color: var(--text-primary-dark);
}
[dir=ltr] .mission-vision-text-new {
  text-align: justify;
  font-family: var(--font-english);
}
[dir=ltr] .mission-vision-heading-new,
[dir=ltr] .mission-vision-subheading-new {
  font-family: var(--font-english);
}
.vision-list-new {
  margin-bottom: var(--spacing-lg);
}
.vision-item-new {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
  line-height: 1.6;
}
.vision-item-new span {
  display: inline-block;
  flex: 1;
  font-family: var(--font-arabic);
  font-weight: 600;
}
[dir=ltr] .vision-item-new span {
  font-family: var(--font-english);
}
.vision-item-new i {
  color: var(--color-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.vision-item-new:hover i {
  transform: scale(1.2) rotate(15deg);
  color: var(--color-accent);
}
[dir=ltr] .vision-item-new {
  flex-direction: row;
}
.mission-vision-btn-new {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all var(--transition-normal);
  margin-top: var(--spacing-md);
  text-decoration: none;
  color: #000000;
  width: fit-content;
}
.mission-vision-btn-new span,
.mission-vision-btn-new i {
  color: #000000;
}
[data-theme=dark] .mission-vision-btn-new,
[data-theme=dark] .mission-vision-btn-new span,
[data-theme=dark] .mission-vision-btn-new i {
  color: #ffffff;
}
.mission-vision-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}
.mission-vision-btn-new:hover span,
.mission-vision-btn-new:hover i {
  color: #000000;
}
.gallery-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding: 2rem 0;
}
.gallery-grid .gallery-card {
  width: 100%;
}
.gallery-swiper {
  padding: 2rem 0 4rem;
  position: relative;
  width: 100%;
}
.gallery-swiper .swiper-wrapper {
  align-items: center;
  display: flex;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-swiper .swiper-slide {
  width: 33.333% !important;
  height: auto;
  aspect-ratio: 4 / 3;
  transition: all 0.6s ease;
  opacity: 0.6;
  flex-shrink: 0;
  filter: brightness(0.9);
  overflow: hidden;
  isolation: isolate;
}
.gallery-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
  filter: brightness(1);
  transform: scale(1.05);
}
.gallery-swiper .swiper-slide-prev,
.gallery-swiper .swiper-slide-next {
  opacity: 0.75;
  filter: brightness(0.95);
}
.gallery-swiper .swiper-slide:hover {
  filter: brightness(1);
  opacity: 0.9;
}
.gallery-card {
  position: relative;
  background: var(--bg-primary);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  border: 4px solid var(--border-color);
  width: 100%;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-swiper .swiper-slide-active .gallery-card {
  border-color: var(--color-primary);
  box-shadow: 0 40px 100px rgba(49, 95, 76, 0.45);
  border-width: 5px;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(49, 95, 76, 0.5);
  border-color: var(--color-primary);
}
.gallery-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0a0a0a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s ease;
}
.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.gallery-card:hover .gallery-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(49, 95, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
  pointer-events: auto;
  box-shadow: 0 8px 25px rgba(49, 95, 76, 0.4);
  opacity: 0;
  visibility: hidden;
}
.gallery-overlay i {
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
  background: rgba(49, 95, 76, 1);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(49, 95, 76, 0.6);
}
.gallery-swiper .swiper-pagination {
  bottom: 0 !important;
  position: relative;
  margin-top: 2rem;
}
.gallery-swiper .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  transition: var(--transition-normal);
}
.gallery-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--color-primary);
  transition: all var(--transition-normal);
}
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
}
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: scale(1.1);
}
.videos-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  padding: 2rem 0;
}
.videos-grid .video-card {
  width: 100%;
}
.videos-swiper {
  padding: 2rem 0 4rem;
  position: relative;
  width: 100%;
}
.videos-swiper .swiper-wrapper {
  align-items: center;
  display: flex;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.videos-swiper .swiper-slide {
  width: 33.333% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  transition: all 0.6s ease;
  opacity: 0.6;
  flex-shrink: 0;
  filter: brightness(0.9);
  overflow: hidden;
  isolation: isolate;
}
.videos-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
  filter: brightness(1);
  transform: scale(1.05);
}
.videos-swiper .swiper-slide-prev,
.videos-swiper .swiper-slide-next {
  opacity: 0.75;
  filter: brightness(0.95);
}
.video-card {
  position: relative;
  background: var(--bg-primary);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  border: 4px solid var(--border-color);
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.videos-swiper .swiper-slide-active .video-card {
  border-color: var(--color-primary);
  box-shadow: 0 40px 100px rgba(49, 95, 76, 0.45);
  border-width: 5px;
}
.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(49, 95, 76, 0.5);
  border-color: var(--color-primary);
}
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #1a1a1a 0%,
      #0a0a0a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s ease;
}
.video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #1a1a1a;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(49, 95, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
  pointer-events: auto;
  box-shadow: 0 8px 25px rgba(49, 95, 76, 0.4);
  opacity: 0;
  visibility: hidden;
}
.video-overlay i {
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}
.video-card:hover .video-overlay {
  opacity: 1;
  visibility: visible;
  background: rgba(49, 95, 76, 1);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(49, 95, 76, 0.6);
}
.videos-swiper .swiper-pagination {
  bottom: 0 !important;
  position: relative;
  margin-top: 2rem;
}
.videos-swiper .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  transition: var(--transition-normal);
}
.videos-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.videos-swiper .swiper-button-next,
.videos-swiper .swiper-button-prev {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--color-primary);
  transition: all var(--transition-normal);
}
.videos-swiper .swiper-button-next::after,
.videos-swiper .swiper-button-prev::after {
  font-size: 1.5rem;
  font-weight: bold;
}
.videos-swiper .swiper-button-next:hover,
.videos-swiper .swiper-button-prev:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: scale(1.1);
}
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .contact-section {
  background: var(--bg-primary-dark);
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 420px at 50% 0%,
      rgba(49, 95, 76, 0.10),
      transparent 60%);
  pointer-events: none;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--spacing-xl);
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-md);
  height: 100%;
}
.nav-more {
  position: relative;
}
.nav-submenu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-primary);
  border-radius: 12px;
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 50;
}
.nav-more-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
}
.nav-more.open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-submenu .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .nav-more {
    width: 100%;
  }
  .nav-submenu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-submenu .nav-link {
    padding-inline-start: 1.5rem;
  }
}
.contact-info-card {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding: var(--spacing-lg);
  border-radius: 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(49, 95, 76, 0.12);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}
[data-theme=dark] .contact-info-card {
  background: var(--bg-secondary-dark);
  border-color: rgba(203, 178, 114, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 178, 114, 0.55);
  box-shadow: var(--shadow-lg);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
}
.contact-info-title {
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}
[data-theme=dark] .contact-info-title {
  color: var(--color-accent);
}
.contact-info-text {
  color: var(--text-secondary);
  line-height: 1.8;
}
[data-theme=dark] .contact-info-text {
  color: var(--text-secondary-dark);
}
.contact-info-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
}
[data-theme=dark] .contact-info-link {
  color: #fff;
}
.contact-info-link:hover {
  color: var(--color-accent);
}
.contact-form {
  background: var(--bg-primary);
  border: 1px solid rgba(49, 95, 76, 0.12);
  border-radius: 18px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}
[data-theme=dark] .contact-form {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(203, 178, 114, 0.18);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}
.form-group {
  margin-bottom: var(--spacing-md);
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--text-primary);
}
[data-theme=dark] .form-label {
  color: #fff;
}
.form-control {
  width: 100%;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition:
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    background var(--transition-normal);
  font-family: inherit;
}
[data-theme=dark] .form-control {
  border-color: var(--border-color-dark);
  background: var(--bg-tertiary-dark);
  color: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(203, 178, 114, 0.18);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-submit {
  width: 100%;
  margin-top: var(--spacing-sm);
}
.contact-status {
  margin-top: 10px;
  font-weight: 700;
  color: var(--color-primary);
  min-height: 22px;
}
[data-theme=dark] .contact-status {
  color: var(--color-accent);
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}
.features-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-primary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-secondary);
  padding: var(--spacing-xl);
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  background: var(--bg-primary);
}
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  transition: all var(--transition-normal);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-accent);
  color: var(--color-primary);
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}
.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.products-page-hero {
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-accent) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.products-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}
.products-hero-content {
  position: relative;
  z-index: 1;
}
.products-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.products-hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
  font-family: var(--font-arabic);
}
[data-theme=dark] .products-page-hero {
  background:
    linear-gradient(
      135deg,
      #1a3d2e 0%,
      #2d5a47 100%);
}
.products-page-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-primary);
}
[data-theme=dark] .products-page-section {
  background: var(--bg-primary-dark);
}
@media (max-width: 768px) {
  .products-page-hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: 78px;
  }
  .products-hero-title {
    font-size: 2rem;
  }
  .products-hero-subtitle {
    font-size: 1rem;
    padding: 0 var(--spacing-md);
  }
}
@media (max-width: 480px) {
  .products-page-hero {
    padding: var(--spacing-lg) 0;
  }
  .products-hero-title {
    font-size: 1.75rem;
  }
}
.products-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-primary);
}
.products-filters-modern {
  margin-bottom: var(--spacing-xxl);
  display: flex;
  justify-content: center;
}
.filter-dropdown-wrapper {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}
.filter-dropdown {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}
.filter-dropdown-btn {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  transition: all var(--transition-normal);
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.filter-dropdown-btn:hover {
  border-color: var(--color-primary);
  background: rgba(49, 95, 76, 0.05);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.filter-dropdown-btn.active {
  border-color: var(--color-primary);
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(49, 95, 76, 0.3);
}
.filter-dropdown-btn.active .filter-arrow {
  transform: rotate(180deg);
}
.filter-dropdown-btn i:first-child {
  font-size: 1.1rem;
  color: var(--color-primary);
}
.filter-dropdown-btn.active i:first-child {
  color: white;
}
.filter-selected-text {
  flex: 1;
  text-align: right;
  font-family: var(--font-arabic);
}
[dir=ltr] .filter-selected-text {
  text-align: left;
}
.filter-arrow {
  font-size: 0.85rem;
  transition: transform var(--transition-normal);
  color: var(--text-secondary);
}
.filter-dropdown-btn.active .filter-arrow {
  color: white;
}
.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--spacing-xs));
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  max-height: 0;
  overflow: hidden;
}
.filter-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 400px;
  overflow-y: auto;
}
.filter-dropdown-item {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all var(--transition-normal);
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: right;
}
[dir=ltr] .filter-dropdown-item {
  text-align: left;
}
.filter-dropdown-item:last-child {
  border-bottom: none;
}
.filter-dropdown-item:hover {
  background: rgba(49, 95, 76, 0.08);
  color: var(--color-primary);
  padding-right: var(--spacing-xl);
}
[dir=ltr] .filter-dropdown-item:hover {
  padding-right: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}
.filter-dropdown-item.active {
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
}
.filter-dropdown-item.active i {
  color: white;
}
.filter-dropdown-item i {
  font-size: 1rem;
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}
.filter-dropdown-item.active i {
  color: white;
}
.filter-dropdown-item span {
  flex: 1;
}
.products-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xl);
}
.products-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: var(--spacing-md) var(--spacing-xxl);
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-arabic);
  box-shadow: 0 4px 15px rgba(49, 95, 76, 0.3);
  position: relative;
  overflow: hidden;
}
.products-load-more-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.products-load-more-btn:hover::before {
  width: 300px;
  height: 300px;
}
.products-load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(49, 95, 76, 0.4);
  background:
    linear-gradient(
      135deg,
      #2c6d51 0%,
      #315f4c 100%);
}
.products-load-more-btn:active {
  transform: translateY(-1px);
}
.load-more-text {
  position: relative;
  z-index: 1;
}
.load-more-icon {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-normal);
}
.products-load-more-btn.show-less .load-more-icon {
  transform: rotate(180deg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}
.product-card {
  background: var(--bg-primary);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
}
.product-card.hidden {
  display: none !important;
}
.product-card.hidden-by-load-more {
  display: none !important;
}
.product-card.show-more {
  display: flex !important;
  animation: fadeInUp 0.5s ease-out;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
[data-theme=dark] .product-card {
  background: var(--bg-secondary-dark);
  border: 1px solid rgba(203, 178, 114, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .product-card:hover {
  background: var(--bg-tertiary-dark);
  border-color: rgba(203, 178, 114, 0.25);
  box-shadow: 0 8px 30px rgba(203, 178, 114, 0.2);
  transform: translateY(-8px);
}
[data-theme=dark] .product-info {
  background: transparent;
}
[data-theme=dark] .product-label {
  color: var(--color-accent);
}
[data-theme=dark] .product-value {
  color: #f5f0e8;
}
[data-theme=dark] .product-name {
  color: #f5f0e8;
}
[data-theme=dark] .product-description {
  color: #d4c5a8;
}
[data-theme=dark] .product-category {
  color: var(--color-accent);
  font-weight: 600;
}
[data-theme=dark] .product-info-item {
  border-bottom-color: rgba(203, 178, 114, 0.2);
}
[data-theme=dark] .product-image-wrapper {
  background: var(--bg-primary-dark);
}
[data-theme=dark] .product-badge {
  background:
    linear-gradient(
      135deg,
      var(--color-accent) 0%,
      var(--color-accent-light) 100%);
  box-shadow: 0 4px 15px rgba(203, 178, 114, 0.4);
}
.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
}
.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-image {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(49, 95, 76, 0.4);
  font-family: var(--font-arabic);
  z-index: 2;
}
[dir=ltr] .product-badge {
  right: auto;
  left: var(--spacing-sm);
}
.product-info {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
}
.product-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--border-color);
}
.product-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.product-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 70px;
  font-family: var(--font-arabic);
  flex-shrink: 0;
}
.product-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-arabic);
  flex: 1;
  line-height: 1.5;
}
.product-category {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: 0;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.product-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.brands-section {
  padding: var(--spacing-xxl) 0;
  background:
    linear-gradient(
      180deg,
      var(--bg-primary) 0%,
      rgba(49, 95, 76, 0.03) 100%);
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(49, 95, 76, 0.05) 0%,
      transparent 50%),
    radial-gradient(
      circle at 80% 50%,
      rgba(49, 95, 76, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.section-header-brands {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  position: relative;
  z-index: 1;
}
.section-title-brands {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
  position: relative;
  display: inline-block;
}
[data-theme=dark] .section-title-brands {
  color: #ffffff;
}
.section-title-brands::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent);
  border-radius: 2px;
}
[data-theme=dark] .section-title-brands::after {
  background: var(--gradient-accent);
}
.section-subtitle-brands {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-lg);
  font-family: var(--font-arabic);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  position: relative;
  z-index: 1;
}
.brand-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}
.brand-card-inner {
  position: relative;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 20px;
  padding: var(--spacing-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 360px;
  margin-inline: auto;
}
.brand-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      var(--color-primary),
      var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}
.brand-card:hover .brand-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(49, 95, 76, 0.15);
  border-color: var(--color-primary);
}
.brand-card:hover .brand-card-inner::before {
  transform: scaleX(1);
}
.brand-logo-wrapper {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}
.brand-logo-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-md);
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 20px rgba(49, 95, 76, 0.2);
}
.brand-logo-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--color-primary),
      var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}
.brand-card:hover .brand-logo-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(49, 95, 76, 0.3);
}
.brand-card:hover .brand-logo-circle::before {
  opacity: 0.3;
}
.brand-icon {
  font-size: 2.5rem;
  color: white;
  transition: all var(--transition-normal);
}
.brand-card:hover .brand-icon {
  transform: scale(1.2);
}
.brand-badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-accent) 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-arabic);
  box-shadow: 0 4px 10px rgba(49, 95, 76, 0.2);
}
.brand-content {
  flex: 1;
  text-align: center;
}
.brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-arabic);
}
.brand-tagline {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  font-style: italic;
  font-family: var(--font-arabic);
}
.brand-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  text-align: right;
  font-family: var(--font-arabic);
}
.brand-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  text-align: right;
}
.brand-feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}
.brand-feature-item i {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.brand-footer {
  margin-top: auto;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(49, 95, 76, 0.1);
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-family: var(--font-arabic);
  position: relative;
}
.brand-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
}
.brand-link:hover {
  color: var(--color-accent);
  gap: var(--spacing-md);
}
.brand-link:hover::after {
  width: 100%;
}
.brand-link i {
  transition: transform var(--transition-normal);
}
.brand-link:hover i {
  transform: translateX(-5px);
}
[dir=ltr] .brand-link:hover i {
  transform: translateX(5px);
}
[data-theme=dark] .brands-section {
  background:
    linear-gradient(
      180deg,
      var(--bg-primary-dark) 0%,
      rgba(49, 95, 76, 0.1) 100%);
}
[data-theme=dark] .brand-card-inner {
  background: var(--bg-secondary-dark);
  border-color: rgba(203, 178, 114, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
[data-theme=dark] .brand-card:hover .brand-card-inner {
  border-color: rgba(203, 178, 114, 0.3);
  box-shadow: 0 12px 40px rgba(203, 178, 114, 0.2);
}
[data-theme=dark] .brand-name {
  color: #f5f0e8;
}
[data-theme=dark] .brand-description {
  color: #d4c5a8;
}
[data-theme=dark] .brand-feature-item {
  color: #e8d9b0;
}
[data-theme=dark] .brand-link {
  color: var(--color-accent);
}
[data-theme=dark] .brand-link:hover {
  color: var(--color-accent-light);
}
[data-theme=dark] .brand-footer {
  border-top-color: rgba(203, 178, 114, 0.1);
}
@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .gallery-swiper {
    padding: 2rem 0 4rem;
  }
  .gallery-swiper .swiper-slide {
    width: 100% !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .gallery-swiper .swiper-slide-prev,
  .gallery-swiper .swiper-slide-next {
    display: none !important;
  }
  .gallery-swiper .swiper-pagination {
    display: flex !important;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  .gallery-swiper .swiper-button-next::after,
  .gallery-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
  }
  .videos-swiper {
    padding: 2rem 0 4rem;
  }
  .videos-swiper .swiper-slide {
    width: 100% !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .videos-swiper .swiper-slide-prev,
  .videos-swiper .swiper-slide-next {
    display: none !important;
  }
  .videos-swiper .swiper-pagination {
    display: flex !important;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .videos-swiper .swiper-button-next,
  .videos-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  .videos-swiper .swiper-button-next::after,
  .videos-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .section-title-brands {
    font-size: 2rem;
  }
  .section-subtitle-brands {
    font-size: 1rem;
  }
  .brands-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .brand-card-inner {
    padding: var(--spacing-lg);
  }
  .brand-logo-circle {
    width: 80px;
    height: 80px;
  }
  .brand-icon {
    font-size: 2rem;
  }
  .brand-name {
    font-size: 1.5rem;
  }
  .brand-description {
    font-size: 0.9rem;
    text-align: center;
  }
  .brand-features {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .gallery-section,
  .videos-section {
    padding: var(--spacing-xl) 0;
  }
  .gallery-overlay,
  .video-overlay {
    width: 60px;
    height: 60px;
  }
  .gallery-overlay i,
  .video-overlay i {
    font-size: 1.5rem;
  }
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev,
  .videos-swiper .swiper-button-next,
  .videos-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .gallery-swiper .swiper-button-next::after,
  .gallery-swiper .swiper-button-prev::after,
  .videos-swiper .swiper-button-next::after,
  .videos-swiper .swiper-button-prev::after {
    font-size: 1rem;
  }
  .brands-section {
    padding: var(--spacing-xl) 0;
  }
  .section-header-brands {
    margin-bottom: var(--spacing-xl);
  }
  .brand-card-inner {
    padding: var(--spacing-md);
  }
}
.activities-section {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-secondary);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}
.activity-card {
  background: var(--bg-primary);
  padding: var(--spacing-lg);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
  border: 2px solid var(--border-color);
  position: relative;
}
.activity-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: 15px;
  transition: opacity var(--transition-normal);
  z-index: 0;
}
.activity-card:hover::after {
  opacity: 0.05;
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.activity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}
.activity-card:hover .activity-icon {
  transform: scale(1.1);
  background: var(--gradient-accent);
  color: var(--color-primary);
}
.activity-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}
.activity-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes floatHorizontal {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}
@keyframes floatVertical {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
}
@media (max-width: 1024px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
  .hero-container {
    height: 80vh;
    min-height: 80vh;
    max-height: 80vh;
    padding: var(--spacing-lg);
  }
  .hero-stats-section {
    height: 20vh;
    min-height: 20vh;
    max-height: 20vh;
    display: flex !important;
    visibility: visible !important;
  }
  .stat-card-3d {
    max-width: 260px;
    max-height: 110px;
    padding: var(--spacing-sm);
  }
  .stat-icon-3d {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .stat-number-3d {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
  .stat-label-3d {
    font-size: 0.75rem;
  }
  .hero-visual-section {
    order: -1;
  }
  .hero-visual-content {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  .stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .visual-card {
    padding: var(--spacing-md);
  }
  .visual-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .visual-card h3 {
    font-size: 1rem;
  }
  .mission-vision-row-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .mission-col-new,
  .vision-col-new {
    padding: var(--spacing-lg) 0;
  }
  .image-col-new {
    order: 2;
    min-height: 400px;
  }
  .mission-col-new {
    order: 1;
  }
  .vision-col-new {
    order: 3;
  }
  .mission-vision-heading-new {
    font-size: 2rem;
  }
  .mission-vision-subheading-new {
    font-size: 1.1rem;
  }
  .mission-vision-text-new {
    font-size: 1rem;
  }
  .vision-item-new {
    font-size: 1rem;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .activities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .section-title-about-new {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .about-wrapper-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .about-images-col {
    order: -1;
  }
  .about-img-2 {
    margin-top: 15%;
  }
  .about-title-new {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  .about-stats-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .stat-icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 77px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 77px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: var(--spacing-xl);
    gap: 0;
    transition: right var(--transition-normal);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.35);
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav-menu .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-menu .nav-item:last-child {
    border-bottom: none;
  }
  .nav-menu .nav-link {
    display: block;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-sm);
    text-align: right;
    border-radius: 0;
  }
  .nav-menu .nav-link::after {
    display: none;
  }
  .nav-more .nav-more-toggle {
    display: none !important;
  }
  .nav-more {
    border-bottom: none;
    padding: 0;
  }
  .nav-more .nav-submenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    min-width: 0;
  }
  .nav-more .nav-submenu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    margin: 0;
  }
  .nav-more .nav-submenu .nav-link {
    display: block;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-sm);
    text-align: right;
  }
  .nav-menu.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 81px;
  }
  .hero-container {
    height: 80vh;
    min-height: 80vh;
    max-height: 80vh;
    padding: var(--spacing-lg) var(--spacing-md);
  }
  .hero-stats-section {
    height: 20vh;
    min-height: 20vh;
    max-height: 20vh;
    display: flex !important;
    visibility: visible !important;
    padding: var(--spacing-sm) 0;
  }
  .stat-card-3d {
    max-width: 150px;
    max-height: 80px;
    padding: var(--spacing-xs);
    gap: var(--spacing-xs);
  }
  .stat-icon-3d {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .stat-number-3d {
    font-size: clamp(1rem, 2vw, 1.3rem);
  }
  .stat-label-3d {
    font-size: 0.7rem;
  }
  .stats-3d-swiper {
    padding: 0 var(--spacing-sm);
  }
  .stats-3d-swiper .swiper-slide-active .stat-card-3d {
    transform: none;
  }
  .stats-3d-swiper .swiper-slide-active .stat-icon-3d {
    transform: none;
  }
  .stats-3d-swiper .swiper-slide-active .stat-number-3d,
  .stats-3d-swiper .swiper-slide-active .stat-label-3d {
    transform: none;
  }
  .hero-visual-section {
    order: -1;
  }
  .hero-visual-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }
  .hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  .stat-item {
    flex-direction: row;
    text-align: right;
  }
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .stat-number {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }
  .visual-card {
    padding: var(--spacing-md);
  }
  .visual-card .card-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    margin-bottom: var(--spacing-sm);
  }
  .visual-card h3 {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-title-about-new {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  .about-wrapper-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .about-images-col {
    order: -1;
  }
  .about-images-grid-new {
    gap: var(--spacing-sm);
  }
  .about-img-2 {
    margin-top: 10%;
  }
  .about-title-new {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .about-text-new {
    font-size: 1rem;
  }
  .about-stats-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  .stat-number-new {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .stat-icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .mission-vision-section-title-new {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  .mission-vision-row-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .mission-col-new,
  .vision-col-new {
    padding: var(--spacing-md) 0;
  }
  .image-col-new {
    order: 2;
    min-height: 300px;
  }
  .mission-col-new {
    order: 1;
  }
  .vision-col-new {
    order: 3;
  }
  .mission-vision-heading-new {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .mission-vision-subheading-new {
    font-size: 1rem;
  }
  .mission-vision-text-new {
    font-size: 0.95rem;
  }
  .vision-item-new {
    font-size: 0.95rem;
  }
  .mission-vision-btn-new {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .filter-dropdown-wrapper {
    flex-direction: row;
    gap: var(--spacing-md);
  }
  .filter-dropdown {
    min-width: 200px;
    max-width: 300px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  .product-image-wrapper {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 480px) {
  .nav-container {
    padding: 0 var(--spacing-sm);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-wrap: nowrap;
  }
  .theme-toggle,
  .language-toggle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .nav-logo .logo {
    height: 45px;
  }
  .hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 60px;
  }
  .hero-container {
    height: 80vh;
    min-height: 80vh;
    max-height: 80vh;
    padding: var(--spacing-md) var(--spacing-sm);
  }
  .hero-content {
    padding: var(--spacing-sm) 0;
  }
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--spacing-sm);
  }
  .hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: var(--spacing-sm);
  }
  .hero-description {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
  }
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
  }
  .btn {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }
  .hero-stats-section {
    height: 20vh;
    min-height: 20vh;
    max-height: 20vh;
    display: flex !important;
    visibility: visible !important;
    padding: var(--spacing-xs) 0;
  }
  .stat-card-3d {
    max-width: 180px;
    max-height: 90px;
    padding: var(--spacing-sm);
    gap: 6px;
  }
  .stat-icon-3d {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.85rem;
  }
  .stat-number-3d {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
  }
  .stat-label-3d {
    font-size: 0.6rem;
  }
  .stats-3d-swiper {
    padding: 0 var(--spacing-xs);
  }
  .about-section {
    padding: var(--spacing-xl) 0;
  }
  .section-title-about-new {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--spacing-md);
  }
  .about-wrapper-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .about-images-col {
    order: -1;
  }
  .about-images-grid-new {
    gap: var(--spacing-xs);
  }
  .about-img-2 {
    margin-top: 5%;
  }
  .about-title-new {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: var(--spacing-sm);
  }
  .about-text-new {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
  }
  .about-stats-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
  }
  .about-stat-item-new .d-flex {
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
  }
  .stat-icon-wrapper {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1rem;
  }
  .stat-number-new {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .display-5 {
    font-size: 1.75rem;
  }
  .about-stat-item-new .mb-0 {
    font-size: 0.8rem;
  }
  .about-stat-item-new h6 {
    font-size: 0.85rem;
  }
  .btn-read-more-new {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
    width: 100%;
  }
  .mission-vision-section {
    padding: var(--spacing-xl) 0;
  }
  .mission-vision-section-title-new {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--spacing-sm);
  }
  .mission-vision-row-new {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .mission-col-new,
  .vision-col-new {
    padding: var(--spacing-sm) 0;
  }
  .image-col-new {
    order: 2;
    min-height: 250px;
    margin: var(--spacing-md) 0;
  }
  .mission-vision-image-wrapper-new {
    min-height: 250px;
  }
  .mission-col-new {
    order: 1;
  }
  .vision-col-new {
    order: 3;
  }
  .mission-vision-heading-new {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: var(--spacing-sm);
  }
  .mission-vision-subheading-new {
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
  }
  .mission-vision-text-new {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
  }
  .vision-list-new {
    margin-bottom: var(--spacing-md);
  }
  .vision-item-new {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    margin-bottom: var(--spacing-sm);
    gap: var(--spacing-xs);
  }
  .vision-item-new i {
    font-size: 1rem;
    margin-left: var(--spacing-xs);
  }
  .mission-vision-btn-new {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.85rem;
    width: 100%;
    margin-top: var(--spacing-sm);
  }
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .section-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .features-section,
  .activities-section {
    padding: var(--spacing-xl) 0;
  }
  .features-grid,
  .activities-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .feature-card,
  .activity-card {
    padding: var(--spacing-md);
  }
  .feature-title,
  .activity-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .feature-description,
  .activity-description {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  }
  .products-section {
    padding: var(--spacing-xl) 0;
  }
  .products-filters-modern {
    margin-bottom: var(--spacing-xl);
  }
  .filter-dropdown-wrapper {
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
  }
  .filter-dropdown {
    min-width: 100%;
    max-width: 100%;
  }
  .filter-dropdown-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }
  .filter-dropdown-item {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .product-image-wrapper {
    aspect-ratio: 4 / 3;
  }
  .product-info {
    padding: var(--spacing-md);
  }
  .product-name {
    font-size: 1.1rem;
  }
  .product-description {
    font-size: 0.85rem;
  }
  .product-badge {
    font-size: 0.75rem;
    padding: 4px var(--spacing-sm);
  }
  .products-load-more-btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: 1rem;
  }
  .load-more-icon {
    font-size: 0.9rem;
  }
  .container {
    padding: 0 var(--spacing-sm);
  }
}
[dir=ltr] .hero-container {
  direction: ltr;
}
[dir=ltr] .nav-menu {
  left: -100%;
}
[dir=ltr] .nav-menu.active {
  left: 0;
  right: auto;
}
@media (max-width: 768px) {
  [dir=ltr] .nav-menu .nav-link {
    text-align: left;
  }
  [dir=ltr] .nav-more .nav-submenu .nav-link {
    text-align: left;
  }
}
[dir=ltr] .nav-link::after {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}
[dir=ltr] .hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(-8px, 8px);
}
[dir=ltr] .hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(-7px, -7px);
}
.footer {
  background:
    linear-gradient(
      180deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xxl);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--color-primary) 0%,
      var(--color-accent) 100%);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo-wrapper {
  margin-bottom: var(--spacing-md);
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter var(--transition-normal);
}
.footer-logo:hover {
  filter: brightness(1);
}
.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
  font-weight: 500;
}
.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}
.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}
.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}
.social-link i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s;
}
.social-link:hover {
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(49, 95, 76, 0.3);
}
.social-link:hover::before {
  width: 100%;
  height: 100%;
}
.social-link:hover i {
  transform: rotate(360deg);
}
.footer-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-arabic);
  position: relative;
  padding-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: slideInRight 0.6s ease-out;
  display: block;
}
[dir=rtl] .footer-title {
  text-align: center;
}
[dir=rtl] .footer-title::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
[dir=ltr] .footer-title {
  text-align: center;
}
[dir=ltr] .footer-title::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
@keyframes slideInRight {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.footer-menu li {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  text-align: center;
  width: 100%;
}
.footer-menu li:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-menu li:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-menu li:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-menu li:nth-child(4) {
  animation-delay: 0.4s;
}
.footer-menu li:nth-child(5) {
  animation-delay: 0.5s;
}
.footer-menu li:nth-child(6) {
  animation-delay: 0.6s;
}
.footer-menu li:nth-child(7) {
  animation-delay: 0.7s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-menu li::before {
  display: none;
}
.footer-menu li:hover::before {
  opacity: 1;
  transform: translateX(-8px);
}
.footer-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-arabic);
  display: inline-block;
  position: relative;
}
.footer-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.footer-menu a:hover {
  color: var(--color-primary);
  transform: scale(1.05);
}
.footer-menu a:hover::after {
  width: 100%;
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  color: var(--text-secondary);
  font-size: 1rem;
  text-align: center;
  width: 100%;
  font-family: var(--font-arabic);
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.footer-contact-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-contact-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-contact-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-contact-list li:nth-child(4) {
  animation-delay: 0.4s;
}
.footer-contact-list i {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 22px;
  transition: all 0.3s ease;
}
.footer-contact-list li:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--color-accent);
}
.footer-contact-list a,
.footer-contact-list span {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}
.footer-contact-list a:hover {
  color: var(--color-primary);
  transform: scale(1.05);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}
.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-family: var(--font-arabic);
  font-weight: 600;
  margin: 0;
}
.footer-legal {
  display: none;
}
.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-arabic);
  font-weight: 600;
  position: relative;
}
.footer-legal a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.footer-legal a:hover {
  color: var(--color-primary);
}
.footer-legal a:hover::after {
  width: 100%;
}
.footer-legal .separator {
  color: var(--text-light);
  font-weight: 300;
}
[data-theme=dark] .footer {
  background:
    linear-gradient(
      180deg,
      var(--bg-primary-dark) 0%,
      var(--bg-secondary-dark) 100%);
  border-top-color: var(--border-color-dark);
}
[data-theme=dark] .footer-bottom {
  border-top-color: var(--border-color-dark);
}
[data-theme=dark] .social-link {
  background: var(--bg-tertiary-dark);
  color: var(--text-secondary-dark);
}
[data-theme=dark] .social-link:hover {
  background: var(--gradient-primary);
  color: white;
}
[data-theme=dark] .footer-title {
  color: var(--color-accent);
}
[data-theme=dark] .footer-menu a {
  color: var(--text-secondary-dark);
}
[data-theme=dark] .footer-menu a:hover {
  color: var(--color-accent);
}
[data-theme=dark] .footer-contact-list li {
  color: var(--text-secondary-dark);
}
[data-theme=dark] .footer-contact-list a {
  color: var(--text-secondary-dark);
}
[data-theme=dark] .footer-contact-list a:hover {
  color: var(--color-accent);
}
[data-theme=dark] .footer-copyright {
  color: var(--text-secondary-dark);
}
[data-theme=dark] .footer-legal a {
  color: var(--text-secondary-dark);
}
[data-theme=dark] .footer-legal a:hover {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .footer-section {
    align-items: center;
    text-align: center;
  }
  .footer-logo-wrapper {
    display: flex;
    justify-content: center;
  }
  .footer-description {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-title {
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  .footer-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  [dir=rtl] .footer-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  [dir=ltr] .footer-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  .footer-menu {
    align-items: center;
  }
  .footer-menu li {
    padding-right: 0;
    text-align: center;
  }
  .footer-contact-list {
    align-items: center;
  }
  .footer-contact-list li {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
  }
  .footer-legal .separator {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer-social {
    justify-content: center;
  }
  .footer-menu li::before {
    display: none;
  }
  .footer-menu a:hover {
    padding-right: 0;
  }
  .footer-section {
    align-items: center;
    text-align: center;
  }
  .footer-logo-wrapper {
    display: flex;
    justify-content: center;
  }
  .footer-description {
    text-align: center;
  }
  .footer-title {
    text-align: center;
    display: inline-block;
    width: 100%;
  }
  .footer-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  [dir=rtl] .footer-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  [dir=ltr] .footer-title::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  .footer-menu {
    align-items: center;
  }
  .footer-menu li {
    padding-right: 0;
    text-align: center;
  }
  .footer-contact-list {
    align-items: center;
  }
  .footer-contact-list li {
    justify-content: center;
    text-align: center;
  }
}
