/* ==============================
   GLOBAL STYLES
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: #fff;
  color: #013220;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ==============================
   COLORS
   #013220 = Green Dark
   #D4AF37 = Gold
   #FFFFFF = White
============================== */

/* ==============================
   HEADER
============================== */
header {
  background-color: #013220;
  padding: 15px 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 55px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #D4AF37;
}

/* ==============================
   MENU TOGGLE (MOBILE)
============================== */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1101;
}

.menu-toggle.open {
  color: #D4AF37;
}

/* ==============================
   RESPONSIVE NAVIGATION
============================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #013220;
    transition: right 0.4s ease;
    z-index: 1100;
    padding-top: 100px;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
    padding: 0 25px;
  }

  nav ul li {
    list-style: none;
    width: 100%;
  }

  nav ul li a {
    display: block;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  nav ul li a:hover {
    color: #D4AF37;
    transform: translateX(6px);
  }

  /* خلفية داكنة عند فتح القائمة */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
  }
}

/* ==============================
   HERO SECTION
============================== */
/* ==============================
   HERO SECTION
============================== */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  background: linear-gradient(rgba(1,50,32,0.7), rgba(1,50,32,0.7)), url('assets/hero-bg.jpg') center/cover no-repeat;
  transition: background-image 1s ease-in-out;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 50, 32, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  animation: fadeInUp 1.2s ease;
}

.hero-content span {
  color: #D4AF37;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-gold {
  margin-bottom: 60px;
  background-color: #D4AF37;
  color: #013220;
  padding: 12px 28px;
  border: none;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover {
  background-color: #fff;
  color: #013220;
}

.btn-outline {
  border: 2px solid #D4AF37;
  color: #D4AF37;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #D4AF37;
  color: #013220;
}

/* حركة بسيطة للنص */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   PAGE HEADERS
============================== */
.page-header {
  background-color: #013220;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-header h1 {
  font-size: 40px;
  color: #D4AF37;
  margin-bottom: 10px;
}

/* ==============================
   ABOUT PAGE
============================== */
.about, .about-page {
  padding: 80px 0;
  background-color: #fff;
}

.about h2, .about-page h2 {
  color: #D4AF37;
  margin-bottom: 20px;
}

.about p, .about-page p {
  color: #013220;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

/* ==============================
   PRODUCTS
============================== */
.products, .products-list {
  margin-bottom: 80px; /* تقدر تزود أو تقلل الرقم */
  padding: 80px 0;
  background-color: #f9f9f9;
}

.products h2, .products-list h1 {
  color: #013220;
  text-align: center;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: #fff;
  border: 2px solid #D4AF37;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  color: #013220;
  font-size: 18px;
  margin: 15px 0 5px;
}

.product-card p {
  font-size: 14px;
  color: #333;
  padding: 0 15px 20px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ==============================
   CONTACT
============================== */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact h2 {
  color: #013220;
  margin-bottom: 15px;
}

form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  font-weight: 600;
  color: #013220;
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
}

/* ==============================
   FOOTER
============================== */
footer {
  background-color: #013220;
  color: #fff;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #D4AF37;
}

.social a {
  color: #D4AF37;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.3s;
}

.social a:hover {
  color: #fff;
}

.copy {
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}


/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ==============================
   VISION SECTION
============================== */
.vision {
  background-color: #f9f9f9;
  text-align: center;
  padding: 80px 20px;
}

.vision h2 {
  color: #D4AF37;
  margin-bottom: 20px;
  font-size: 32px;
}

.vision p {
  color: #013220;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  font-size: 17px;
}

/* ==============================
   ISO CERTIFICATION SECTION
============================== */
.iso-cert {
  background-color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.iso-cert h2 {
  color: #D4AF37;
  margin-bottom: 15px;
  font-size: 32px;
}

.iso-cert p {
  color: #013220;
  margin-bottom: 30px;
  font-size: 16px;
}

.iso-image img {
  max-width: 400px;
  width: 100%;
  border: 3px solid #D4AF37;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.iso-image img:hover {
  transform: scale(1.03);
}
/* ===== Section Titles ===== */
.section-title {
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 32px;
}

.section-title i {
  color: #013220;
  margin-right: 10px;
}

/* ===== Lists ===== */
.product-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.product-list li {
  font-size: 17px;
  color: #013220;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.product-list i {
  color: #D4AF37;
  margin-right: 10px;
  font-size: 18px;
}

/* ===== Links ===== */
.link-gold {
  color: #D4AF37;
  font-weight: 600;
  text-decoration: none;
}

.link-gold:hover {
  text-decoration: underline;
}

/* ===== Images ===== */
img.rounded {
  border-radius: 12px;
}

.shadow-lg {
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bg-light {
  background-color: #f9f9f9 !important;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.language-switcher a:hover,
.language-switcher a.active {
  color: #FFD700;
}

/* 🔽 محوّل اللغة */
.language-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-left: 15px;
}

.selected-lang {
  background: #f6f6f6;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.selected-lang:hover {
  background: #eee;
}

.selected-lang i {
  font-size: 12px;
}

.lang-dropdown {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  width: 160px;
  z-index: 999;
}

.language-switcher.open .lang-dropdown {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

.lang-dropdown li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
}

.lang-dropdown li a:hover {
  background: #f5f5f5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* 🌾 Footer Style */
footer {
  background: #111;
  color: #eee;
  padding: 50px 0 20px;
  font-family: 'Cairo', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

/* الروابط جنب بعض */
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #ffcc00;
}

/* أزرار الاتصال والإيميل */
.footer-contact .contact-btn {
  display: flex;
  align-items: center;
  color: #ccc;
  text-decoration: none;
  margin: 6px 0;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-contact .contact-btn i {
  color: #ffcc00;
  margin-right: 8px;
}

.footer-contact .contact-btn:hover {
  color: #ffcc00;
}

.footer-contact p {
  color: #ccc;
  margin: 6px 0;
  font-size: 15px;
}

.footer-contact i {
  margin-right: 8px;
}

.social {
  margin-top: 10px;
}

.social a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social a:hover {
  color: #ffcc00;
}

.copy {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 25px;
  font-size: 14px;
  color: #bbb;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-links, .footer-contact {
    margin-top: 20px;
  }

  .footer-contact .contact-btn {
    justify-content: center;
  }

  .social a {
    margin: 0 8px;
  }
}
