/* =================== RESET & BASE =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
:root {
  /* Modern Blue & Orange Palette */
  --primary: #0F52BA;
  --primary-light: #1E6FD9;
  --primary-dark: #0A3A7F;
  --accent: #FF6B35;
  --accent-light: #FF8C5F;
  --accent-dark: #E55527;
  
  /* Background Colors */
  --dark-bg: #0A0E27;
  --dark-secondary: #151B3D;
  --card-bg: #1F2544;
  --white: #FFFFFF;
  
  /* Text Colors */
  --text-light: #F0F4FF;
  --text-muted: #9CA8C9;
  --text-dark: #1A1D3B;
  
  /* Shadows - Enhanced */
  --shadow-primary: 0 20px 60px rgba(15, 82, 186, 0.3);
  --shadow-accent: 0 15px 50px rgba(255, 107, 53, 0.25);
  --shadow-dark: 0 25px 70px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0F52BA 0%, #1E6FD9 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C5F 100%);
  --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #151B3D 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(15, 82, 186, 0.95) 0%, rgba(10, 58, 127, 0.95) 100%);
  --gradient-hero: linear-gradient(135deg, #0F52BA 0%, #FF6B35 100%);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* =================== SITE LOADER =================== */
.site-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-loader__inner {
  text-align: center;
}
.site-loader__logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.site-loader__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.08);
  border-top-color: var(--primary);
  animation: loader-spin 1s linear infinite;
  margin: 0 auto;
}
.site-loader--hide { opacity: 0; visibility: hidden; pointer-events: none; }

@keyframes loader-spin { to { transform: rotate(360deg); } }

/* About page paragraph items */
.about-paragraph-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

/* =================== LAYOUT UTILITIES =================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero .container .hero-content {
  position: relative !important;
}

.section {
  padding: 8rem 0;
  position: relative;
  background: var(--dark-bg);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0 auto 1.5rem;
  position: relative;
  display: block;
  letter-spacing: -1px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-accent);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(232, 184, 86, 0.4);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  backdrop-filter: blur(20px);
  z-index: 10000;
  padding: 1.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(232, 184, 86, 0.1);
}

.navbar.scrolled {
  padding: 1.2rem 0;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  color: var(--accent);
}

.logo-img {
  height: 60px;
  width: auto;
  padding: 0;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.3s ease;
  max-width: 250px;
}

[dir="ltr"] .logo-text {
  font-family: 'Tajawal', sans-serif;
}

.logo-text .company-en {
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu {
  z-index: 1100;
}

.nav-menu a {
  color: var(--dark-bg);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: rgba(15, 20, 25, 0.95) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  min-width: 70px;
  overflow: visible;
}

.lang-switcher::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.lang-switcher::after {
  content: '🌐';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.lang-switcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 84, 144, 0.35);
  border-color: transparent !important;
  color: white !important;
}

.lang-switcher:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.lang-switcher:hover::after {
  right: -5px;
  opacity: 1;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle {
  z-index: 1101;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =================== HERO SECTION =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: var(--gradient-dark);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
  opacity: 0.5;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(232, 184, 86, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45, 95, 63, 0.2) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z' fill='%230F1419'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
  transform: rotate(180deg);
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(3px 3px at 50% 50%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(255,255,255,0.3), transparent),
    radial-gradient(3px 3px at 90% 60%, rgba(255,255,255,0.2), transparent);
  background-size: 200% 200%;
  animation: particles 30s ease-in-out infinite;
  z-index: 2;
}

@keyframes particles {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-content {
  text-align: center;
  z-index: 3;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgba(232, 184, 86, 0.2) 0%, rgba(45, 95, 63, 0.2) 100%);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(232, 184, 86, 0.4);
  animation: pulse 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(232, 184, 86, 0.3);
}

.hero-icon-wrapper i {
  font-size: 3.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(232, 184, 86, 0.4), 0 20px 60px rgba(232, 184, 86, 0.3); 
  }
  50% { 
    transform: scale(1.08); 
    box-shadow: 0 0 0 25px rgba(232, 184, 86, 0), 0 25px 70px rgba(232, 184, 86, 0.4); 
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 184, 86, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 184, 86, 0.3);
  color: var(--accent-light);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(232, 184, 86, 0.2);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  letter-spacing: -1.5px;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-light);
  opacity: 0.95;
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--dark-bg);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(232, 184, 86, 0.4);
  background: var(--accent-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

/* =================== HIGHLIGHTS SECTION =================== */
.highlights {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--dark-bg) 100%);
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.highlight-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.highlight-icon {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.highlight-card p{
  color: var(--white) !important;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.15) rotate(5deg);
}

.highlight-card h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.highlight-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.6;
}

/* =================== WHAT SETS US APART SECTION =================== */
.what-sets-us-apart {
  background-image: url('/assets/images/wheat-quality-3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0;
  margin: 4rem 0;
}

.what-sets-us-apart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.92) 0%, rgba(107, 85, 53, 0.88) 100%);
  backdrop-filter: blur(2px);
}

.what-sets-us-apart .container {
  position: relative;
  z-index: 2;
}

.what-sets-us-apart .section-title {
  color: #FFFFFF;
  margin-bottom: 3rem;
}

.distinction-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.distinction-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
}

.distinction-icon i {
  font-size: 1.8rem;
  color: white;
}

.distinction-item:hover .distinction-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.distinction-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.distinction-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.distinction-item h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.distinction-item p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =================== VIDEO SECTION =================== */
.video-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* =================== PRODUCTS PAGE =================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: rgba(232, 215, 174, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.product-image {
  width: 100%;
  height: 70%;
  background: linear-gradient(135deg, var(--dark-secondary), var(--dark-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.product-content {
  padding: 2rem;
}

.product-category {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-content h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* =================== ABOUT PAGE =================== */
.about-intro {
  background: rgba(248, 248, 248, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 111, 71, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  line-height: 2;
}

.about-intro p {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.9;
}

.factories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.factory-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.factory-card:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.factory-card h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.factory-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.vm-card {
  background: rgba(26, 39, 68, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.vm-card h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.vm-card p {
  color: var(--text-light);
  line-height: 2;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.value-card h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.value-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.production-card {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  text-align: center;
}

.production-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.production-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.production-card h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.production-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.6;
}

/* =================== VALUES DETAILED SECTION =================== */
.values-detailed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.value-detailed-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(90, 37, 4, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.value-detailed-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.value-detailed-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.value-detailed-item.reverse .value-image {
  order: 2;
}

.value-detailed-item.reverse .value-content {
  order: 1;
}

.value-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.value-detailed-item:hover .value-image img {
  transform: scale(1.1);
}

.value-content {
  padding: 1rem;
}

.value-content h3 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.value-content p {
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Responsive - Stack on Mobile */
@media (max-width: 768px) {
  .value-detailed-item,
  .value-detailed-item.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-detailed-item.reverse .value-image,
  .value-detailed-item.reverse .value-content {
    order: unset;
  }
  
  .value-image {
    height: 250px;
  }
  
  .value-content h3 {
    font-size: 1.5rem;
  }
  
  .value-content p {
    font-size: 1rem;
  }
}

/* =================== CONTACT PAGE =================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: rgba(232, 215, 174, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 111, 71, 0.3);
  border-radius: 20px;
  padding: 3rem;
}

.contact-info h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.8rem;
  color: var(--primary);
  min-width: 40px;
}

.info-content h4 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-content a:hover {
  color: var(--primary);
  opacity: 1;
}

.contact-form {
  background: rgba(232, 215, 174, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 111, 71, 0.3);
  border-radius: 20px;
  padding: 3rem;
}

.contact-form h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(90, 37, 4, 0.1);
  border: 1px solid rgba(203, 179, 167, 0.3);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 85, 53, 0.5);
}

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(180deg, #F8F8F8 0%, #E8D7AE 100%);
  border-top: 1px solid rgba(139, 111, 71, 0.3);
  padding: 3rem 0 1.5rem;
  margin-top: 6rem;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(232, 184, 86, 0.3));
}

.footer-text {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-subtext {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark-bg);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--text-light);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 0;
    background: var(--white);
  }
  
  .logo-img {
    height: 50px;
  }
  
  .logo-text {
    font-size: 1rem;
    max-width: 200px;
  }
  
  .nav-menu {
    position: fixed;
    top: 90px;
    right: -100%;
    background: var(--white);
    backdrop-filter: blur(20px);
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .highlights-grid,
  .products-grid,
  .factories-grid,
  .values-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar.scrolled{
      padding: 1rem !important;
      background:var(--white) !important;
    }
  .navbar{
      padding: 1rem !important;
      background: var(--white);
  }
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .logo-img {
    height: 50px;
    background:transparent;
  }
  
  .logo-text .company-ar {
    font-size: 0.9rem;
  }
  
  .logo-text .company-en {
    font-size: 0.55rem;
  }
}

/* =================== PRODUCTS PAGE CLEAN DESIGN =================== */
/* Products Hero */
.products-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
  padding-top: 100px;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 95, 63, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 184, 86, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.products-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.products-hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 50px rgba(45, 95, 63, 0.4);
  animation: float 3s ease-in-out infinite;
}

.products-hero-icon i {
  font-size: 3rem;
  color: var(--white);
}

.products-hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.products-hero p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Products Clean Section */
.products-clean-section {
  background: var(--dark-secondary);
  padding: 6rem 0;
}

.products-clean-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto 5rem;
}

.product-clean-card {
  background: var(--card-bg);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  position: relative;
}

.product-clean-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 184, 86, 0.08) 0%, transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.product-clean-card:hover::before {
  opacity: 1;
  transform: rotate(90deg);
}

.product-clean-card:hover {
  transform: translateY(-15px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

.product-clean-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(45, 95, 63, 0.05) 0%, rgba(232, 184, 86, 0.05) 100%);
}

.product-clean-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-clean-card:hover .product-clean-image img {
  transform: scale(1.1);
}

.product-clean-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(232, 184, 86, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

[dir="ltr"] .product-clean-badge {
  right: auto;
  left: 20px;
}

.product-clean-badge i {
  font-size: 1.5rem;
  color: var(--white);
}

.product-clean-content {
  padding: 2.5rem;
}

.product-clean-content h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.product-clean-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.product-clean-content p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.product-clean-specs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(45, 95, 63, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(232, 184, 86, 0.2);
  transition: all 0.3s ease;
}

.product-spec-item:hover {
  background: rgba(232, 184, 86, 0.1);
  border-color: rgba(232, 184, 86, 0.4);
  transform: translateY(-2px);
}

.product-spec-item i {
  font-size: 1.2rem;
  color: var(--accent);
}

.product-spec-item span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

/* Products CTA */
.products-cta {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(232, 184, 86, 0.2);
  box-shadow: var(--shadow-card);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.products-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(45, 95, 63, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.products-cta-content {
  position: relative;
  z-index: 1;
}

.products-cta h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.products-cta p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .products-clean-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .products-hero h1 {
    font-size: 2.5rem;
  }
  
  .product-clean-image {
    height: 280px;
  }
  
  .products-cta {
    padding: 2.5rem 2rem;
  }
  
  .products-cta h3 {
    font-size: 1.5rem;
  }
}

.product-category-block {
  margin-bottom: 4rem;
}

.category-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.category-main-title {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category-main-title i {
  color: var(--accent);
  font-size: 2.5rem;
}

.category-main-desc {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.product-card-new {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 84, 144, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2);
}

.product-card-inner {
  position: relative;
}

.product-image-new {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.product-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card-new:hover .product-image-new img {
  transform: scale(1.15);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 84, 144, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.product-card-new:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.product-card-new:hover .product-badge {
  transform: translateY(0);
}

.product-details-new {
  padding: 2.5rem 2rem;
}

.product-name-new {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  transition: width 0.3s ease;
}

.product-card-new:hover .product-divider {
  width: 100%;
}

.product-link-new {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link-new:hover {
  color: var(--accent);
  gap: 1.2rem;
}

/* Logistics Special Card */
.logistics-card-special {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 30px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.3);
}

.logistics-card-special::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.logistics-card-special::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  filter: blur(100px);
}

.logistics-icon-large {
  width: 140px;
  height: 140px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.logistics-icon-large i {
  font-size: 5rem;
  color: white;
}

.logistics-description {
  font-size: 1.4rem;
  color: white;
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.logistics-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.logistics-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.logistics-feature-item i {
  color: var(--accent);
  font-size: 1.3rem;
}

.logistics-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  color: var(--primary);
  padding: 1.3rem 3rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logistics-cta-btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
  .products-hero h1 {
    font-size: 2.8rem;
  }
  
  .products-nav {
    flex-wrap: wrap;
  }
  
  .products-nav-item {
    flex: 1 1 45%;
  }
  
  .category-main-title {
    font-size: 2.2rem;
    flex-direction: column;
  }
  
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .logistics-card-special {
    padding: 3rem 2rem;
  }
  
  .logistics-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-hero {
    min-height: 50vh;
  }
  
  .products-hero h1 {
    font-size: 2.2rem;
  }
  
  .products-nav-item {
    flex: 1 1 100%;
    padding: 1.2rem;
  }
  
  .category-main-title {
    font-size: 1.8rem;
  }
  
  .products-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* =================== OLD PRODUCTS PAGE STYLES - KEEP FOR COMPATIBILITY =================== */
.product-item-modern {
  cursor: pointer;
}

.product-item-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.2) !important;
  border-color: var(--accent) !important;
}

.product-item-modern:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-item-modern:hover .product-image-wrapper > div {
  opacity: 1 !important;
}

.product-item-modern:hover h3 {
  color: var(--accent) !important;
}

.product-item-modern:hover .product-info-modern > div {
  width: 100px !important;
}

/* RTL Support */
[dir="rtl"] .highlight-card:hover {
  transform: translateY(-10px);
}

[dir="rtl"] .factory-card:hover {
  transform: translateX(-10px);
}

[dir="ltr"] .factory-card:hover {
  transform: translateX(10px);
}

/* =================== STATS SECTION =================== */
.stats-section {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
  padding: 80px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stats-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.stats-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stats-content .section-title {
  text-align: right;
  color: var(--primary);
  margin: 0;
  font-size: 2.5rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateX(-10px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.stat-icon i {
  font-size: 35px;
  color: var(--dark-bg);
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-unit-inline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-unit {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
}

/* =================== LATEST NEWS SECTION =================== */
.latest-news-section {
  background: var(--dark-secondary);
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.news-card {
  background: rgba(26, 39, 68, 0.5);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.news-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 25px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--accent);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: var(--accent);
  gap: 12px;
}

.news-cta {
  text-align: center;
  margin-top: 40px;
}

/* =================== CAPABILITIES SECTION =================== */
.capabilities-section {
  padding: 80px 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.capability-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(90, 37, 4, 0.1);
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 37, 4, 0.2);
}

.capability-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.capability-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.capability-card p {
  color: #d0d0d0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* =================== SERVICES SECTION =================== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(90, 37, 4, 0.03) 0%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 184, 86, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}

.service-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.service-card:hover {
  box-shadow: var(--shadow-accent);
  transform: translateY(-8px) translateX(5px);
  border-color: rgba(232, 184, 86, 0.3);
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(45, 95, 63, 0.1) 100%);
}

.service-number {
  background: var(--gradient-primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(45, 95, 63, 0.3);
  transition: all 0.4s ease;
}

.service-card:hover .service-number {
  transform: rotate(360deg) scale(1.1);
  background: var(--gradient-accent);
  color: var(--dark-bg);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-image {
    max-height: 400px;
  }
  
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-content .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .stats-list {
    gap: 20px;
  }

  .stat-item {
    padding: 20px;
    gap: 20px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 28px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
  
  .latest-news-section {
    padding: 60px 0;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-title {
    font-size: 1.2rem;
  }
  
  /* Vision & Mission mobile */
  .vision-mission {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .vm-card {
    width: 100% !important;
    margin: 0 auto !important;
  }
  
  /* What sets us apart mobile */
  .distinction-grid {
    padding: 0 1rem;
  }
  
  .distinction-item {
    text-align: center;
  }
  
  .distinction-icon {
    margin: 0 auto 1.5rem;
  }
  
  .what-sets-us-apart .container {
    text-align: center;
  }
  
  /* About page mobile styles */
  .about-paragraph-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
  
  .about-text-content,
  .about-image-content {
    order: unset !important;
    width: 100% !important;
  }
  
  .about-image-content {
    order: -1 !important;
  }
  
  .about-image-content img {
    width: 100vw !important;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-image {
    max-height: 250px;
  }

  .stats-content .section-title {
    font-size: 1.6rem;
  }

  .stat-item {
    padding: 15px;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon i {
    font-size: 28px;
  }
}

/* =================== ABOUT CAROUSEL STYLES =================== */
.about-carousel-section {
  margin-bottom: 80px;
}

.aboutSection-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.aboutSection-subtitle {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  text-align: center;
}

.about-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 450px;
  background: white;
}

.carousel-content .carousel-image {
  order: 1;
}

.carousel-content .carousel-text {
  order: 2;
}

.carousel-content.reverse .carousel-image {
  order: 2;
}

.carousel-content.reverse .carousel-text {
  order: 1;
}

.carousel-image {
  position: relative;
  overflow: hidden;
  order: 1;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-slide.active .carousel-image img {
  animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.carousel-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.carousel-text h4 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

.carousel-slide.active .carousel-text h4 {
  opacity: 1;
  transform: translateY(0);
}

.carousel-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
}

.carousel-slide.active .carousel-text p {
  opacity: 1;
  transform: translateY(0);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 111, 71, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.carousel-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: rgba(212, 175, 55, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .carousel-content.reverse {
    direction: rtl;
  }
  
  .carousel-content.reverse .carousel-image,
  .carousel-content.reverse .carousel-text {
    order: initial;
  }
  
  .carousel-image {
    order: 1 !important;
    height: 300px;
  }
  
  .carousel-text {
    order: 2 !important;
    padding: 2rem 1.5rem;
  }
  
  .carousel-text h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .carousel-text p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  .aboutSection-title {
    font-size: 1.5rem;
  }
  
  .aboutSection-subtitle {
    font-size: 1rem;
  }
}

/* =================== SERVICES SECTION =================== */
.services-section {
  background: var(--dark-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 84, 144, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(26, 84, 144, 0.25);
  border-color: var(--accent);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem auto;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(26, 84, 144, 0.3);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.service-icon i {
  font-size: 2.8rem;
  color: white;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
  color: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.service-card:hover h3 {
  color: white;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  font-size: 1.05rem;
  text-align: center;
  width: 100%;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 50%;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(26, 84, 144, 0.2);
}

.service-card:hover .service-arrow {
  background: white;
  color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* =================== WHY US SECTION =================== */
.why-us-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(26, 84, 144, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-us-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 25px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-us-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.why-us-item:hover::before {
  opacity: 1;
}

.why-us-item:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(26, 84, 144, 0.2);
  border-color: var(--accent);
}

.why-us-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 35px rgba(26, 84, 144, 0.3);
}

.why-us-item:hover .why-us-icon {
  background: white;
  transform: scale(1.2) rotateY(360deg);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

.why-us-icon i {
  font-size: 3rem;
  color: white;
  transition: all 0.5s ease;
}

.why-us-item:hover .why-us-icon i {
  color: var(--accent);
  transform: scale(1.1);
}

.why-us-item h3 {
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.7;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.why-us-item:hover h3 {
  color: white;
  transform: scale(1.05);
}

/* =================== PARTNERS SECTION =================== */
.partners-section {
  background: var(--dark-secondary);
  overflow: hidden;
  padding: 5rem 0;
}

.partners-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 3rem;
  animation: scroll-partners 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  background: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
  min-height: 140px;
  min-width: 220px;
  flex-shrink: 0;
}

.partner-logo:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-primary);
}

.partner-logo img {
  max-width: 160px;
  height: auto;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

/* =================== PRODUCT CATEGORIES =================== */
.product-category {
  scroll-margin-top: 120px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.category-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 800px;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(196, 30, 58, 0.15);
}

.product-image {
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .product-image::after {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.logistics-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.logistics-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.logistics-content::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.logistics-content p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* =================== VALUES GRID =================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item > div {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-item:hover > div {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.value-item i {
  font-size: 1.5rem;
  color: white;
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .services-grid,
  .why-us-grid,
  .partners-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .category-items {
    grid-template-columns: 1fr;
  }
  
  .logistics-content {
    padding: 2rem;
  }
  
  .logistics-content p {
    font-size: 1rem;
  }
}

/* =================== ABOUT PAGE - NEW DESIGN =================== */
.about-hero {
  position: relative;
  min-height: 350px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,84,144,0.9) 0%, rgba(212,175,55,0.2) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-title {
  font-size: 4rem;
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-hero-line {
  width: 120px;
  height: 5px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(212,175,55,0.5);
}

/* Story Timeline */
.story-section {
  background: var(--dark-secondary);
}

.story-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

[dir="ltr"] .story-timeline::before {
  right: auto;
  left: 60px;
}

.story-item {
  position: relative;
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.story-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 4px solid var(--accent);
}

.story-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.story-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-dark);
  position: relative;
}

.story-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.story-content p {
  line-height: 1.9;
  color: var(--text-light);
}

/* Vision Mission Modern Cards */
.vm-section {
  background: var(--dark-bg);
  position: relative;
}

.vm-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(45, 95, 63, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(232, 184, 86, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.vm-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vm-card-modern {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 184, 86, 0.1);
}

.vm-card-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 184, 86, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  transform: scale(0);
}

.vm-card-modern:hover::before {
  opacity: 1;
  transform: scale(1);
}

.vm-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-accent);
  border-color: rgba(232, 184, 86, 0.3);
}

.vm-icon-modern {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  box-shadow: 0 15px 40px rgba(45, 95, 63, 0.4);
  transition: all 0.4s ease;
}

.vm-card-modern:hover .vm-icon-modern {
  transform: rotateY(360deg) scale(1.1);
  background: var(--gradient-accent);
}

.vm-icon-modern i {
  font-size: 2.2rem;
  color: white;
}

.vm-card-modern h3 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 800;
}

.vm-divider {
  width: 70px;
  height: 5px;
  background: var(--gradient-accent);
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(232, 184, 86, 0.4);
}

.vm-card-modern p {
  line-height: 2;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Values Modern Grid */
.values-modern-section {
  background: var(--dark-bg);
}

.values-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-modern-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 184, 86, 0.1);
}

.value-modern-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 184, 86, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0) rotate(45deg);
}

.value-modern-card:hover::before {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.value-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-accent);
  border-color: rgba(232, 184, 86, 0.3);
}

.value-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(232, 184, 86, 0.2) 0%, rgba(45, 95, 63, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.value-modern-card:hover .value-number {
  opacity: 0.8;
  transform: scale(1.1);
}

[dir="ltr"] .value-number {
  right: auto;
  left: 20px;
}

.value-icon-bg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(45, 95, 63, 0.3);
}

.value-modern-card:hover .value-icon-bg {
  transform: scale(1.15) rotate(360deg);
  background: var(--gradient-accent);
  box-shadow: 0 15px 40px rgba(232, 184, 86, 0.4);
}

.value-icon-bg i {
  font-size: 2rem;
  color: white;
}

.value-modern-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.value-modern-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Product Grid - 3 per row on desktop */
.category-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .category-items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vm-cards-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .values-modern-grid {
    grid-template-columns: 1fr !important;
  }
  
  .story-timeline::before {
    right: 30px;
  }
  
  [dir="ltr"] .story-timeline::before {
    left: 30px;
  }
  
  .story-icon {
    width: 80px;
    height: 80px;
  }
  
  .story-icon i {
    font-size: 1.8rem;
  }
  
  .about-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .category-items {
    grid-template-columns: 1fr;
  }
  
  .values-modern-grid {
    grid-template-columns: 1fr;
  }
  
  .story-item {
    flex-direction: column;
    align-items: center;
  }
  
  .story-timeline::before {
    display: none;
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
}

/* =================== CONTACT PAGE - NEW DESIGN =================== */
.contact-hero {
  background: var(--gradient-primary);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.2) 0%, transparent 50%);
}

.contact-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.contact-hero-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-hero-icons i {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  backdrop-filter: blur(10px);
}

.contact-main-section {
  padding: 5rem 0;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(360deg);
}

.contact-card-icon i {
  font-size: 1.8rem;
  color: white;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.contact-info-card a,
.contact-info-card p {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-info-card:hover a {
  color: var(--primary);
}

.contact-form-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-modern {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-dark);
}

.contact-form-modern h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-modern {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group-modern i {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1rem;
}

[dir="ltr"] .form-group-modern i {
  right: auto;
  left: 1rem;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--dark-secondary);
}

[dir="ltr"] .form-group-modern input,
[dir="ltr"] .form-group-modern textarea {
  padding: 1rem 1.5rem 1rem 3rem;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,84,144,0.1);
  background: white;
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1rem;
}

.btn-submit-modern {
  width: 100%;
  padding: 1.2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-primary);
}

.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26,84,144,0.3);
}

.btn-submit-modern i {
  transition: transform 0.4s ease;
}

.btn-submit-modern:hover i {
  transform: translateX(5px);
}

[dir="rtl"] .btn-submit-modern:hover i {
  transform: translateX(-5px);
}

.contact-map-modern {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

/* =================== FOOTER - NEW DESIGN =================== */
.footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-about h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1rem;
}

.footer-about p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

[dir="ltr"] .footer-section h4::after {
  right: auto;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(-5px);
}

[dir="ltr"] .footer-links a:hover {
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* =================== SERVICES PAGE =================== */
.services-hero {
  background: var(--gradient-primary);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
}

.services-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-detailed-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: all 0.4s ease;
}

.service-detailed-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.service-card-header {
  background: var(--gradient-primary);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.service-card-icon {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255,255,255,0.3);
}

.service-card-icon i {
  font-size: 2.5rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-card-header h3 {
  color: white;
  font-size: 1.8rem;
}

.service-card-body {
  padding: 2.5rem;
}

.service-card-body p {
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* =================== RESPONSIVE - CONTACT & FOOTER =================== */
@media (max-width: 1024px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-map-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-map-modern {
    height: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .services-hero h1 {
    font-size: 2.5rem;
  }
}

/* =================== WHY ATHEEL SECTION =================== */
.why-atheel-section {
  background: var(--dark-secondary);
}

.why-atheel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-item {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 86, 0.1), transparent);
  transition: left 0.5s ease;
}

.why-item:hover::before {
  left: 100%;
}

.why-item:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(45, 95, 63, 0.3);
}

.why-item:hover .why-icon {
  background: var(--gradient-accent);
  transform: rotateY(360deg);
}

.why-icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-item h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-item p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* =================== PRODUCTS SIMPLE SECTION =================== */
.products-simple-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.products-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-simple-card {
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  border: 1px solid rgba(232, 184, 86, 0.1);
}

.product-simple-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-accent);
  border-color: rgba(232, 184, 86, 0.3);
}

.product-simple-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(45, 95, 63, 0.1) 0%, rgba(232, 184, 86, 0.1) 100%);
}

.product-simple-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-simple-card:hover .product-simple-image img {
  transform: scale(1.1);
}

.product-simple-content {
  padding: 2rem;
}

.product-simple-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-simple-content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =================== FEATURES MODERN SECTION =================== */
.features-modern-section {
  background: var(--dark-secondary);
  padding: 6rem 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

.features-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-modern-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.feature-modern-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 184, 86, 0.08) 0%, transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.feature-modern-card:hover::before {
  opacity: 1;
  transform: rotate(45deg);
}

.feature-modern-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(232, 184, 86, 0.15) 0%, rgba(45, 95, 63, 0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

[dir="ltr"] .feature-number {
  right: auto;
  left: 20px;
}

.feature-modern-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(45, 95, 63, 0.3);
  position: relative;
  z-index: 1;
}

.feature-modern-card:hover .feature-modern-icon {
  background: var(--gradient-accent);
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(232, 184, 86, 0.4);
}

.feature-modern-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-modern-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-modern-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* =================== ABOUT BRIEF SECTION =================== */
.about-brief-section {
  background: var(--dark-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-brief-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(45, 95, 63, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-brief-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-brief-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 60px rgba(45, 95, 63, 0.4);
  animation: float 3s ease-in-out infinite;
}

.about-brief-icon i {
  font-size: 3rem;
  color: var(--white);
}

.about-brief-content h2 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  font-weight: 800;
}

.about-brief-content p {
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .why-atheel-grid,
  .products-simple-grid,
  .features-modern-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vm-cards-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .vm-card {
    padding: 2.5rem 2rem;
  }
  
  .values-modern-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .value-modern-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .about-brief-content h2 {
    font-size: 2rem;
  }
  
  .feature-number {
    font-size: 3rem;
  }
  
  .story-cards-grid {
    grid-template-columns: 1fr !important;
  }
  
  .story-card-header {
    flex-direction: column;
    text-align: center;
  }
}

/* =================== STORY SECTION MODERN =================== */
.story-section-modern {
  background: var(--dark-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.story-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 95, 63, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.story-section-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 184, 86, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.story-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-card-modern {
  background: var(--card-bg);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  position: relative;
}

.story-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

[dir="ltr"] .story-card-modern::before {
  transform-origin: left;
}

.story-card-modern:hover::before {
  transform: scaleX(1);
}

.story-card-modern:hover {
  transform: translateY(-15px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

.story-card-header {
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(232, 184, 86, 0.1);
}

.story-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(45, 95, 63, 0.3);
}

.story-card-modern:hover .story-icon-modern {
  background: var(--gradient-accent);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(232, 184, 86, 0.4);
}

.story-icon-modern i {
  font-size: 2rem;
  color: var(--white);
}

.story-card-header h3 {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

.story-card-body {
  padding: 2rem 2.5rem;
}

.story-card-body p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
  margin: 0;
}

.story-card-footer {
  padding: 0 2.5rem 2rem;
}

.story-line {
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  transform: scaleX(0.3);
  transform-origin: right;
  transition: transform 0.5s ease;
}

[dir="ltr"] .story-line {
  transform-origin: left;
}

.story-card-modern:hover .story-line {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .story-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card-header {
    flex-direction: column;
    text-align: center;
  }
}


/* =================== STORY TIMELINE =================== */
.story-timeline {
  max-width: 1000px;
  margin: 4rem auto;
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 40px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

[dir="ltr"] .story-timeline::before {
  right: auto;
  left: 40px;
}

.timeline-item {
  position: relative;
  padding-right: 100px;
  padding-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

[dir="ltr"] .timeline-item {
  padding-right: 0;
  padding-left: 100px;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

.timeline-dot {
  position: absolute;
  right: 23px;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--dark-secondary), 0 10px 30px rgba(45, 95, 63, 0.3);
  z-index: 2;
}

[dir="ltr"] .timeline-dot {
  right: auto;
  left: 23px;
}

.timeline-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
}

.timeline-content:hover {
  transform: translateX(-10px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

[dir="ltr"] .timeline-content:hover {
  transform: translateX(10px);
}

.timeline-year {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  display: block;
}

.timeline-content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =================== VISION & MISSION ENHANCED =================== */
.vm-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.vm-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vm-card {
  background: var(--card-bg);
  padding: 3.5rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 184, 86, 0.1) 0%, transparent 70%);
  transition: all 0.7s ease;
  opacity: 0;
}

.vm-card:hover::before {
  opacity: 1;
  transform: rotate(180deg);
}

.vm-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

.vm-icon-wrapper {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
  box-shadow: 0 15px 40px rgba(45, 95, 63, 0.4);
  position: relative;
  z-index: 1;
}

.vm-card:hover .vm-icon-wrapper {
  background: var(--gradient-accent);
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 20px 50px rgba(232, 184, 86, 0.5);
}

.vm-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--white);
}

.vm-card h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

/* =================== VALUES MODERN ENHANCED =================== */
.values-modern-section {
  background: var(--dark-secondary);
  padding: 6rem 0;
}

.values-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-modern-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 25px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid rgba(232, 184, 86, 0.1);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.value-modern-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

[dir="ltr"] .value-modern-card::after {
  transform-origin: left;
}

.value-modern-card:hover::after {
  transform: scaleX(1);
}

.value-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 184, 86, 0.3);
  box-shadow: var(--shadow-accent);
}

.value-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(45, 95, 63, 0.3);
}

.value-modern-card:hover .value-icon-modern {
  background: var(--gradient-accent);
  transform: scale(1.1) rotate(10deg);
}

.value-icon-modern i {
  font-size: 1.8rem;
  color: var(--white);
}

.value-modern-content h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.value-modern-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}


/* =================== PRODUCTS CATEGORIES =================== */
.products-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--dark-secondary);
  border-radius: 15px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--card-bg);
  color: var(--text-light);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn i {
  font-size: 1.125rem;
}

.category-btn:hover {
  background: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.category-btn.active {
  background: var(--gradient-primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-primary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--dark-bg);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 5px 15px rgba(232, 184, 86, 0.4);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.product-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* No Products Message */
.no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.no-products i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.no-products p {
  font-size: 1.125rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .products-categories {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .category-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .product-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* =================== SERVICES PAGE =================== */
.services-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/pattern.png');
  opacity: 0.1;
}

.services-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--accent);
}

.services-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.services-hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Service Cards Large */
.service-card-large {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 3rem;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  align-items: start;
  transition: all 0.3s ease;
}

.service-card-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.service-card-large.service-card-reverse {
  grid-template-columns: 1fr 150px;
}

.service-card-large.service-card-reverse .service-card-content {
  order: -1;
}

.service-card-icon-large {
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent);
  box-shadow: var(--shadow-primary);
}

.service-card-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card-content > p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--dark-secondary);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.service-item i {
  color: var(--accent);
  font-size: 1.25rem;
}

.service-item span {
  font-weight: 600;
  color: var(--text-light);
}

.service-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(45, 95, 63, 0.1);
  border-radius: 10px;
  border-right: 4px solid var(--primary);
}

/* CTA Section */
.cta-section {
  background: var(--dark-secondary);
  padding: 5rem 0;
}

.cta-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3.5rem;
  color: var(--dark-bg);
  box-shadow: var(--shadow-accent);
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero-content h1 {
    font-size: 2rem;
  }
  
  .services-hero-content p {
    font-size: 1rem;
  }
  
  .service-card-large {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .service-card-large.service-card-reverse {
    grid-template-columns: 1fr;
  }
  
  .service-card-icon-large {
    width: 120px;
    height: 120px;
    font-size: 3rem;
    margin: 0 auto;
  }
  
  .service-card-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .service-items-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-card h2 {
    font-size: 1.75rem;
  }
  
  .cta-card p {
    font-size: 1rem;
  }
}

/* Contact Form Select Styling */
.form-group-modern select {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  background: var(--dark-secondary);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--text-light);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  appearance: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23E8B856%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3e%3cpolyline points=%276 9 12 15 18 9%27%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1.25rem;
}

[dir="rtl"] .form-group-modern select {
  background-position: right 1rem center;
  padding: 1rem 3.5rem 1rem 1rem;
}

.form-group-modern select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 184, 86, 0.1);
}

.form-group-modern select option {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 0.75rem;
}

/* =================== MODERN HOMEPAGE DESIGN =================== */
/* Modern Hero */
.modern-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
  opacity: 0.5;
}

.modern-hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float 20s infinite ease-in-out;
  z-index: 3;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  bottom: -100px;
  left: -50px;
  animation-delay: 5s;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-50px) scale(1.1); }
}

.modern-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-tag i {
  font-size: 1.25rem;
  color: var(--accent);
}

.modern-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modern-hero-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-size: 1.0625rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary-modern {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-outline-modern {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

/* Features Boxes */
.features-boxes-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.features-boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-box {
  position: relative;
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.feature-box:hover::before {
  opacity: 0.1;
}

.feature-box-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-accent);
}

.feature-box h3 {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-box p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.feature-box-number {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  z-index: 0;
}

/* About Wave Section */
.about-wave-section {
  position: relative;
  background: var(--dark-secondary);
  padding: 8rem 0;
}

.wave-top, .wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top {
  top: 0;
}

.wave-bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.wave-top svg, .wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-top path {
  fill: var(--dark-secondary);
}

.wave-bottom path {
  fill: var(--dark-bg);
}

.about-wave-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-wave-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-wave-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.btn-accent-modern {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-accent-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.about-image-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-primary);
  padding: 1rem 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(15, 82, 186, 0.4);
}

.about-image-badge i {
  font-size: 1.5rem;
  color: var(--accent);
}

.about-image-badge span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

/* Categories Quick Access */
.categories-quick-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-center .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-header-center .section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.categories-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-quick-card {
  position: relative;
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
}

.category-quick-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-quick-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}

.category-quick-card:hover::before {
  opacity: 0.1;
}

.category-quick-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.category-quick-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.category-quick-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.category-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  color: var(--white);
  transition: all 0.3s ease;
}

.category-quick-card:hover .category-arrow {
  background: var(--accent);
  transform: translateX(-5px);
}

/* CTA Banner */
.cta-banner-section {
  background: var(--dark-secondary);
  padding: 4rem 0;
}

.cta-banner {
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  box-shadow: var(--shadow-primary);
}

.cta-banner-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.btn-white-modern {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.btn-white-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-wave-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-wave-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .modern-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .modern-hero-content p {
    font-size: 1.0625rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .features-boxes-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-quick-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .cta-banner-content h2 {
    font-size: 1.75rem;
  }
}

/* =================== MODERN ABOUT PAGE =================== */
/* Modern About Hero */
.modern-about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.modern-about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.modern-about-hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modern-about-hero-content > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9375rem;
}

.hero-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}

/* Company Intro Section */
.company-intro-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.company-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.intro-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.intro-image-card:hover img {
  transform: scale(1.05);
}

.intro-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--gradient-primary);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-primary);
}

.intro-image-badge i {
  font-size: 2.5rem;
  color: var(--accent);
}

.intro-image-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.intro-image-badge span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 82, 186, 0.1);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-label i {
  font-size: 1rem;
}

.company-intro-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.company-intro-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.intro-features-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.intro-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.intro-feature-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.intro-feature-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* Vision Mission Values Section */
.vmv-section {
  background: var(--dark-secondary);
  padding: 6rem 0;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vmv-card {
  position: relative;
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  overflow: hidden;
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transition: height 0.4s ease;
}

.vmv-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}

.vmv-card:hover::before {
  height: 100%;
  opacity: 0.1;
}

.vmv-icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.vmv-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-accent);
  position: relative;
  z-index: 1;
}

.vmv-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  z-index: 2;
}

.vmv-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.vmv-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.vmv-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(50%, 50%);
}

/* Why Choose Modern Section */
.why-choose-modern-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.why-choose-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
}

.why-choose-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-accent);
  transition: transform 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(360deg);
}

.why-choose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.why-choose-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Stats Counter Section */
.stats-counter-section {
  position: relative;
  background: var(--dark-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.stats-counter-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  z-index: 0;
}

.stats-counter-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-counter-item {
  text-align: center;
}

.stat-counter-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-accent);
}

.stat-counter-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-counter-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .company-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .company-intro-image {
    order: -1;
  }
  
  .vmv-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .modern-about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =================== MODERN PRODUCTS PAGE =================== */
/* Products Hero */
.products-hero {
  position: relative;
  background: var(--gradient-hero);
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"rgba(255,255,255,0.05)\"/></svg>') repeat;
  opacity: 0.3;
}

.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.products-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.products-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.products-hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Products Section */
.products-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

/* Categories Filter */
.products-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 20px;
  border: 2px solid rgba(15, 82, 186, 0.1);
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-muted);
  border: 2px solid transparent;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.category-btn i {
  font-size: 1.25rem;
}

.category-btn:hover {
  background: rgba(15, 82, 186, 0.1);
  color: var(--primary);
  border-color: rgba(15, 82, 186, 0.3);
}

.category-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--dark-secondary);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-accent);
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.product-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .products-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .products-categories {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .category-btn {
    width: 100%;
    justify-content: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* =================== MODERN CONTACT PAGE =================== */
/* Contact Hero */
.contact-hero {
  position: relative;
  background: var(--gradient-hero);
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.contact-hero-icons i {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-hero-icons i:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

/* Contact Main Section */
.contact-main-section {
  background: var(--dark-bg);
  padding: 6rem 0;
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-primary);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-accent);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-modern {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid rgba(15, 82, 186, 0.1);
}

.contact-form-modern h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-modern {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group-modern i {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.125rem;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.25rem;
  background: var(--dark-secondary);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--card-bg);
}

.form-group-modern textarea {
  min-height: 150px;
  resize: vertical;
  padding-top: 1rem;
}

.btn-submit-modern {
  width: 100%;
  padding: 1.25rem;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-accent);
  font-family: 'Cairo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Map Container */
.contact-map-container {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 25px;
  border: 2px solid rgba(15, 82, 186, 0.1);
  height: 100%;
  min-height: 600px;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  min-height: 550px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-form-map-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-map-container {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero-icons {
    gap: 1rem;
  }
  
  .contact-hero-icons i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-modern {
    padding: 2rem;
  }
}

/* =================== MODERN FOOTER =================== */
.footer-modern {
  background: var(--dark-secondary);
  padding: 5rem 0 2rem;
  border-top: 2px solid rgba(15, 82, 186, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand i {
  font-size: 2rem;
  color: var(--accent);
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
}

.footer-about p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(15, 82, 186, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links li i {
  font-size: 0.875rem;
  color: var(--accent);
  min-width: 16px;
}

.footer-links li a,
.footer-links li span {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.footer-links li a:hover {
  color: var(--accent);
  padding-right: 5px;
}

.footer-contact li i {
  font-size: 1.125rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 3rem 0 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =================== HEADER LOGO UPDATE =================== */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-accent);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: var(--accent);
}

.logo-img {
  display: none;
}

/* =================== LOGO UPDATES =================== */
/* Header Logo */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: var(--accent);
}

/* Footer Logo */
.footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
}

/* Remove old icon styles */
.logo-icon {
  display: none;
}

.footer-brand i {
  display: none;
}
