/* =================== RESET & BASE =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #D4AF37;
  --gold-light: #F4E4B4;
  --gold-dark: #B8941F;
  --dark-bg: #072916;
  --dark-secondary: #3f6c3e; /* changed to requested primary green */
  --green-primary: #2D5016;
  --green-secondary: #4A7C2C;
  --white: #FFFFFF;
  --text-light: #F5F5F5;
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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: 2000;
  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: auto;
  margin: 0 auto 18px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 6px 18px rgba(212,175,55,0.15));
}
.site-loader__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.08);
  border-top-color: var(--gold);
  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); } }

/* =================== LAYOUT UTILITIES =================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin: 0 auto 1rem;
  position: relative;
  display: block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  /*background: rgba(63, 108, 62, 0.95);*/
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: white;
  /*background: rgba(63, 108, 62, 0.98);*/
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 130px;
  width: auto;
  padding: 0;
  border-radius: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .company-ar {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.logo-text .company-en {
  font-size: 0.75rem;
  color: var(--gold-light);
  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;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  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 {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-bg);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.lang-switcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.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(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =================== HERO SECTION =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 100px;
  background-color: rgb(39 39 39 / 95%);
  background-blend-mode: overlay;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 108, 62, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  text-align: center;
  z-index: 3;
  max-width: 900px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(63,108,62,0.25) 0%, rgba(63,108,62,0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-buttons, .hero-buttons a {
  position: relative;
  z-index: 4;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-bg);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--shadow-gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

/* =================== HIGHLIGHTS SECTION =================== */
.highlights {
  background: linear-gradient(180deg, var(--dark-secondary) 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(--gold);
  box-shadow: var(--shadow-gold);
}

.highlight-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.15) rotate(5deg);
}

.highlight-card h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.highlight-card p {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.6;
}

/* =================== 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(26, 39, 68, 0.6);
  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(--gold);
  box-shadow: var(--shadow-gold);
}

.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(--gold);
  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(--gold);
  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(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* =================== ABOUT PAGE =================== */
.about-intro {
  background: rgba(26, 39, 68, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 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(--gold);
  box-shadow: var(--shadow-gold);
}

.factory-card h4 {
  color: var(--gold);
  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(--gold);
  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);
  opacity: 0.9;
  line-height: 1.9;
  font-size: 1.05rem;
}

.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(--gold);
  transform: translateY(-5px);
}

.value-card h4 {
  color: var(--gold-light);
  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(--gold);
  transform: scale(1.05);
}

.production-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.production-card h4 {
  color: var(--gold-light);
  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(26, 39, 68, 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(--gold);
  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(--gold-light);
  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(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 3rem;
}

.contact-info h3 {
  color: var(--gold);
  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(--gold);
  min-width: 40px;
}

.info-content h4 {
  color: var(--gold-light);
  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(--gold);
  opacity: 1;
}

.contact-form {
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 3rem;
}

.contact-form h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(10, 17, 40, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  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(--gold);
  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(245, 245, 245, 0.4);
}

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #05091a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem 0 1.5rem;
  margin-top: 6rem;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  height: 80px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.footer-text {
  color: var(--gold-light);
  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(--gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  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) {
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -120%;
    background: white;
    /*background: rgba(63, 108, 62, 0.95);*/
    backdrop-filter: blur(20px);
    width: 70%;
    height: calc(100vh - 80px);
    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{
      background:white !important;
    }
  .navbar{
      padding:0;
      background: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: 130px;
    background:transparent;
  }
  
  .logo-text .company-ar {
    font-size: 1rem;
  }
  
  .logo-text .company-en {
    font-size: 0.65rem;
  }
}

/* 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(--gold);
  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(--gold);
  transform: translateX(-10px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 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(--gold);
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-unit-inline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
}

.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(--gold-light);
  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(--gold);
  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(--gold-light);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-title {
  font-size: 1.4rem;
  color: var(--gold);
  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(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: var(--gold-light);
  gap: 12px;
}

.news-cta {
  text-align: center;
  margin-top: 40px;
}

/* 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;
  }
}

@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;
  }
}