:root{
  --bg:#ffffff;
  --text:#1a1a1a;
  --muted:#5b5b5b;
  --brand:#28431f;
  --brand-dark:#1f3318;
  --accent:#f39c12;
  --border:#e6e6e6;
  --shadow:0 8px 30px rgba(0,0,0,.08);
  --shadow-hover:0 15px 45px rgba(0,0,0,.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SMOOTH ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(40, 67, 31, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(40, 67, 31, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  scroll-behavior: smooth;
}

body{
  font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  overflow-x: hidden;
}

img{
  max-width:100%;
  display:block;
  height: auto;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

#contact .container .btn-primary {
  display: flex;
  justify-content: center;
}

.container .btn-primary {
  display: flex;
  justify-content: center;
}

/* ===== GOOGLE TRANSLATE FIX ===== */
.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  position: static !important;
  top: 0 !important;
}

.goog-logo-link,
.goog-te-gadget,
.goog-te-balloon-frame {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

/* ===== ENHANCED HEADER ===== */
.site-header {
  width: 70%;
  margin: 20px auto;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  animation: fadeInScale 0.6s ease-out;
}

.site-header:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== ENHANCED BUTTONS ===== */
.btn{
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-sm{
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:8px;
}

.btn-primary{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color:#fff;
  padding:14px 28px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  box-shadow:0 8px 20px rgba(40, 67, 31, 0.3);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.btn-primary:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow:0 15px 35px rgba(40, 67, 31, 0.4);
  animation: glow 2s infinite;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-outline{
  border:2px solid var(--border);
  padding:12px 18px;
  border-radius:10px;
  color:var(--text);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 67, 31, 0.2);
}

.link{
  color:var(--brand);
  text-decoration:none;
  font-weight:600;
  position: relative;
  transition: var(--transition);
}

.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.link:hover::after {
  width: 100%;
}

.link:hover {
  color: var(--brand-dark);
}

/* ===== ENHANCED HERO SECTION ===== */
.hero{
  padding:56px 0;
  background:linear-gradient(180deg,#f8fff8,#ffffff);
}

.hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.hero h1{
  font-size:36px;
  line-height:1.2;
  margin:0 0 10px;
  animation: slideInRight 0.8s ease-out;
}

.hero p{
  color:var(--muted);
  margin:0 0 18px;
  animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.hero-actions{
  display:flex;
  gap:10px;
  margin-bottom:16px;
  animation: slideInRight 0.8s ease-out 0.4s backwards;
}

.hero-brands{
  display:flex;
  gap:16px;
  align-items:center;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-brands img{
  height:28px;
  transition: var(--transition);
  filter: grayscale(100%);
}

.hero-brands img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.hero-image img{
  border-radius:16px;
  box-shadow:var(--shadow);
  transition: var(--transition);
  animation: fadeInScale 0.8s ease-out 0.4s backwards;
}

.hero-image img:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: var(--shadow-hover);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-home-indicator,
.scroll-potato-indicator,
.scroll-carrots-indicator,
.scroll-swpotato-indicator,
.scroll-onions-indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  width: fit-content;
  cursor: pointer;
  pointer-events: auto;
}

.scroll-home-indicator:hover,
.scroll-potato-indicator:hover,
.scroll-carrots-indicator:hover,
.scroll-swpotato-indicator:hover,
.scroll-onions-indicator:hover {
  opacity: 1;
}

.scroll-text {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
}

.scroll-line {
  display: block;
  width: 2px;
  height: 24px;
  background: #fff;
  margin: 0 auto;
  animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
  0% {
    height: 10px;
    opacity: 0.3;
  }
  50% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 10px;
    opacity: 0.3;
  }
}

/* ===== SECTIONS ===== */
.section{
  padding:60px 0;
  position: relative;
}

.section h2{
  font-size:32px;
  margin:0 auto 30px;
  text-align: center;
  color: var(--brand);
  position: relative;
  display: block;
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  border-radius: 2px;
}

#adva, #about, #specs {
  scroll-margin-top: 90px;
}

/* ===== ENHANCED CERTIFICATIONS ===== */
.cert-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  list-style:none;
  padding:0;
  margin:0;
  text-align: center;
}

.cert-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  box-shadow:var(--shadow);
  background:#fff;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out backwards;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 16px;
  z-index: -1;
}

.cert-card:hover::before {
  opacity: 0.1;
}

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.2s; }
.cert-card:nth-child(3) { animation-delay: 0.3s; }

.cert-card:hover{
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--brand);
}

.cert-card h3{
  margin:8px 0 8px;
  font-size:20px;
  color: var(--brand);
  transition: var(--transition);
}

.cert-card:hover h3 {
  color: var(--brand-dark);
  transform: scale(1.05);
}

.cert-card p{
  color:var(--muted);
  transition: var(--transition);
}

.cert-card:hover p {
  color: var(--text);
}


.contact-header {
  text-align: center;
}

.subtitle {
  text-align: center;
}


/* ===== ENHANCED METRICS ===== */
.metrics {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #eafff0;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.metrics::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: shimmer 20s linear infinite;
}

.metrics-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  position: relative;
  z-index: 1;
}

.metric{
  padding:24px;
  text-align:center;
  transition: var(--transition);
  border-radius: 12px;
  animation: fadeInScale 0.6s ease-out backwards;
}

.metric:nth-child(1) { animation-delay: 0.1s; }
.metric:nth-child(2) { animation-delay: 0.2s; }
.metric:nth-child(3) { animation-delay: 0.3s; }
.metric:nth-child(4) { animation-delay: 0.4s; }

.metric:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

.metric-value{
  font-size:36px;
  font-weight:700;
  animation: float 3s ease-in-out infinite;
}

.metric-label{
  opacity:.9;
}

/* ===== ENHANCED PRODUCTS ===== */
.products .product-tabs{
  display:flex;
  gap:12px;
  list-style:none;
  padding:0;
  margin:0 0 24px;
  border-bottom:2px solid var(--border);
  justify-content: center;
  flex-wrap: wrap;
}

.products .product-tabs li{
  padding:12px 24px;
  border-radius:10px 10px 0 0;
  cursor:pointer;
  transition: var(--transition);
  position: relative;
  font-weight: 600;
}

.products .product-tabs li::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.products .product-tabs li:hover::after {
  width: 100%;
}

.products .product-tabs li.active{
  background: linear-gradient(135deg, #f2fff6 0%, #e8f7ee 100%);
  color: var(--brand);
  border:2px solid #ccebd6;
  border-bottom: none;
  transform: translateY(-2px);
}

.products .product-tabs li.active::after {
  width: 100%;
}

.tab-panel{
  display:none;
}

.tab-panel.active{
  display:block;
  animation: fadeInUp 0.5s ease-out;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
  list-style:none;
  padding:0;
  margin:0;
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  border:2px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  display:flex;
  flex-direction:column;
  transition: var(--transition);
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
  position: relative;
  animation: fadeInScale 0.5s ease-out backwards;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(40, 67, 31, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f2fff6 100%);
  border-color: var(--brand);
}

.product-card img {
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.product-card h3 {
  padding: 14px 14px 6px;
  margin: 0;
  font-size: 19px;
  transition: var(--transition);
  color: var(--text);
}

.product-card:hover h3 {
  color: var(--brand);
  transform: translateX(5px);
}

.product-card p {
  padding: 0 14px 14px;
  margin: 0;
  color: var(--muted);
  transition: var(--transition);
}

.product-card:hover p {
  color: var(--brand-dark);
}

.product-card .link {
  padding: 0 14px 16px;
  margin-top: auto;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-card .link::after {
  content: '→';
  transition: transform 0.3s;
}

.product-card .link:hover::after {
  transform: translateX(5px);
}

/* ===== ENHANCED PROCESS ===== */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-steps li {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  background: #fff;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.process-steps li:nth-child(1) { animation-delay: 0.1s; }
.process-steps li:nth-child(2) { animation-delay: 0.2s; }
.process-steps li:nth-child(3) { animation-delay: 0.3s; }
.process-steps li:nth-child(4) { animation-delay: 0.4s; }
.process-steps li:nth-child(5) { animation-delay: 0.5s; }

.process-steps li::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 67, 31, 0.05) 0%, rgba(40, 67, 31, 0.1) 100%);
  transition: top 0.5s;
}

.process-steps li:hover::before {
  top: 0;
}

.process-steps li:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f2fff6 100%);
  border-color: var(--brand);
}

.step-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f7ee 0%, #d4f0dd 100%);
  color: var(--brand);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.process-steps li:hover .step-icon {
  transform: scale(1.2) rotate(360deg);
  background: var(--brand);
  color: white;
  box-shadow: 0 0 20px rgba(40, 67, 31, 0.4);
}

/* ===== ENHANCED ABOUT ===== */
.about-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.about-copy h2{
  text-align: left;
  animation: slideInRight 0.8s ease-out;
}

.about-copy p{
  color:var(--muted);
  animation: slideInRight 0.8s ease-out 0.2s backwards;
  line-height: 1.8;
}

.about-image img{
  border-radius:20px;
  box-shadow:var(--shadow);
  transition: var(--transition);
  animation: fadeInScale 0.8s ease-out 0.4s backwards;
}

.about-image img:hover {
  transform: scale(1.03) rotate(-2deg);
  box-shadow: var(--shadow-hover);
}

/* ===== ENHANCED ADVANTAGES ===== */
.advantage-section {
  text-align: center;
  color: var(--brand);
}

.advantage-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  justify-content: center;
}

.products .card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.adv-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.adv-card:nth-child(1) { animation-delay: 0.1s; }
.adv-card:nth-child(2) { animation-delay: 0.2s; }
.adv-card:nth-child(3) { animation-delay: 0.3s; }

.adv-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 67, 31, 0.05) 0%, rgba(40, 67, 31, 0.15) 100%);
  transition: top 0.5s;
}

.adv-card:hover::before {
  top: 0;
}

.adv-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #ffffff 0%, #f2fff6 100%);
  border-color: var(--brand);
}

.adv-card img {
  height: 50px;
  margin-bottom: 16px;
  opacity: 0.9;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.adv-card:hover img {
  transform: scale(1.2) rotate(5deg);
  opacity: 1;
  animation: float 2s ease-in-out infinite;
}

.adv-card h3 {
  margin: 12px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.adv-card:hover h3 {
  color: var(--brand-dark);
  transform: scale(1.08);
}

.adv-card p {
  color: var(--muted);
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.adv-card:hover p {
  color: var(--brand-dark);
}

/* ===== ENHANCED FAQ ===== */
.faq-list details {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  margin-bottom: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: fadeInUp 0.5s ease-out backwards;
}

.faq-list details:nth-child(1) { animation-delay: 0.05s; }
.faq-list details:nth-child(2) { animation-delay: 0.1s; }
.faq-list details:nth-child(3) { animation-delay: 0.15s; }

.faq-list details:hover,
.faq-list details[open] {
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(40, 67, 31, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f2fff6 100%);
  border-color: var(--brand);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  transition: var(--transition);
  position: relative;
  padding-left: 30px;
}

.faq-list summary::before {
  content: '+';
  position: absolute;
  left: 0;
  font-size: 24px;
  color: var(--brand);
  transition: transform 0.3s;
}

.faq-list details[open] summary::before {
  content: '−';
  transform: rotate(180deg);
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--brand);
}

.faq-content {
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  transition: var(--transition);
  line-height: 1.8;
  animation: fadeInUp 0.4s ease-out;
}

.faq-list details[open] .faq-content {
  color: var(--brand-dark);
}

/* ===== ENHANCED CONTACT ===== */
.section.contact {
  background: linear-gradient(135deg, #f1f3f1 0%, #ffffff 100%);
  padding: 80px 20px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  animation: fadeInScale 0.8s ease-out;
}

.contact-info,
.contact-form {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.contact-info:hover,
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.contact-points{
  list-style:none;
  padding:0;
  margin:12px 0 20px;
}

.contact-points li{
  margin-bottom:10px;
  padding-left: 30px;
  position: relative;
  transition: var(--transition);
}

.contact-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
}

.contact-points li:hover {
  transform: translateX(5px);
  color: var(--brand);
}

.form-row{
  display:flex;
  flex-direction:column;
  margin-bottom:16px;
}

label{
  font-weight:600;
  margin-bottom:8px;
  color: var(--brand-dark);
}

input,textarea{
  border:2px solid var(--border);
  border-radius:10px;
  padding:12px;
  font:inherit;
  transition: var(--transition);
  background: white;
}

input:focus,textarea:focus{
  outline:none;
  border-color: var(--brand);
  box-shadow:0 0 0 4px rgba(40, 67, 31, 0.1);
  transform: translateY(-2px);
}

input:hover,textarea:hover {
  border-color: var(--brand);
}

/* ===== ENHANCED FOOTER ===== */
.site-footer{
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-top:2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(40, 67, 31, 0.03), transparent);
  animation: shimmer 3s infinite;
}

.footer-inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:24px;
  padding:40px 0;
  position: relative;
  z-index: 1;
}

.footer-col h3{
  margin-top:0;
  color: var(--brand);
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--brand);
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
  transition: var(--transition);
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a{
  text-decoration:none;
  color:var(--muted);
  transition: var(--transition);
  position: relative;
}

.footer-links a:hover {
  color: var(--brand);
  font-weight: 600;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:20px 0;
  color:var(--muted);
  text-align:center;
  background: rgba(255,255,255,0.5);
}

.site-footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.site-footer .logo:hover {
  transform: scale(1.05);
}

.site-footer .logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.site-footer .logo:hover img {
  filter: drop-shadow(0 4px 8px rgba(40, 67, 31, 0.3));
}

.site-footer .logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--brand);
  letter-spacing: 1px;
  margin-left: -20px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform-origin: center;
}

.hero-slides img.active {
  opacity: 1;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  animation: fadeIn 1s ease-out;
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(28px, 6vw, 60px);
  margin-bottom: 14px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  width: 100%;
}

.hero-content p {
  font-size: clamp(15px, 3vw, 20px);
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.4s backwards;
  width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
  margin-left: auto;
}

.logo img {
  height: 60px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(40, 67, 31, 0.3));
}

.logo-with-name {
  display: flex;
  align-items: center;
  gap: 0px;
  transition: var(--transition);
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--brand);
  letter-spacing: 1px;
  transform: translateX(-25px);
  transition: var(--transition);
}

.logo-with-name:hover .logo-text {
  color: var(--brand-dark);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-list a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--brand-dark);
  transform: translateY(-2px);
}

.nav-list .btn span {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  transition: var(--transition);
  display: inline-block;
}

.nav-list .btn:hover span {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0f1e0c 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(40, 67, 31, 0.3);
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--brand);
  position: relative;
  transition: var(--transition);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2.5px;
  background: var(--brand);
  transition: var(--transition);
}

.nav-toggle-bar::before { top: -8px; }
.nav-toggle-bar::after  { top: 8px; }

.nav-toggle:hover .nav-toggle-bar,
.nav-toggle:hover .nav-toggle-bar::before,
.nav-toggle:hover .nav-toggle-bar::after {
  background: var(--brand-dark);
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
  margin-right: -8px;
}

.dropdown .arrow {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  list-style: none;
  padding: 12px 0;
  margin: 0;
  min-width: 200px;
  display: none;
  z-index: 100;
  animation: fadeInUp 0.3s ease-out;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li a,
.dropdown-sub > a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none !important;
  border: none !important;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--brand);
  transition: height 0.3s;
}

.dropdown-menu li a:hover::before {
  height: 100%;
}

.dropdown-menu li a:hover,
.dropdown-sub > a:hover {
  background: linear-gradient(90deg, #f2fff6 0%, transparent 100%);
  color: var(--brand);
  transform: translateX(5px);
}

.dropdown-sub {
  position: relative;
}

.dropdown-sub .arrow {
  font-size: 14px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown-sub.open .arrow {
  transform: rotate(180deg);
}

.dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  display: none;
  z-index: 200;
  animation: fadeInUp 0.3s ease-out;
}

.dropdown-submenu.show {
  display: block;
}

.dropdown-submenu li a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-submenu li a:hover {
  background: linear-gradient(90deg, #f2fff6 0%, transparent 100%);
  color: var(--brand);
  transform: translateX(5px);
}

/* ===== LANGUAGE MENU ===== */
.lang-menu {
  position: relative;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 8px;
}

.lang-btn:hover {
  background: rgba(40, 67, 31, 0.1);
  transform: scale(1.05);
}

.lang-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  display: none;
  min-width: 150px;
  z-index: 1000;
  animation: fadeInUp 0.3s ease-out;
}

.lang-dropdown.open {
  display: block;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.lang-dropdown li a:hover {
  background: linear-gradient(90deg, #f2fff6 0%, transparent 100%);
  color: var(--brand);
  transform: translateX(3px);
}

.lang-dropdown img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ===== WATERMARK ===== */
.white-bg-watermark {
  position: fixed;
  top: 50%;
  right: -100%;
  transform: translate(-50%, -50%);
  width: 95vw;
  height: 95vh;
  background: url('assets/onlypalm.png') no-repeat center;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* ===== PRODUCT HERO BANNERS ===== */
.hero-banner-potato,
.hero-banner-carrots,
.hero-banner-swpotato,
.hero-banner-onions {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-banner-potato::before,
.hero-banner-carrots::before,
.hero-banner-swpotato::before,
.hero-banner-onions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  animation: fadeIn 1s ease-out;
  pointer-events: none;
}

.potato-bg,
.carrots-bg,
.swpotato-bg,
.onion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-content-hero-potato,
.hero-content-hero-carrots,
.hero-content-hero-swpotato,
.hero-content-hero-onions {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.hero-content-hero-potato h1,
.hero-content-hero-carrots h1,
.hero-content-hero-swpotato h1,
.hero-content-hero-onions h1 {
  font-size: clamp(26px, 5vw, 42px);
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  width: 100%;
  text-align: center;
}

.hero-content-hero-potato p,
.hero-content-hero-carrots p,
.hero-content-hero-swpotato p,
.hero-content-hero-onions p {
  font-size: clamp(15px, 3vw, 20px);
  max-width: 720px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  width: 100%;
  text-align: center;
  margin: 0 auto 24px;
}

.hero-potato-btn,
.hero-carrots-btn,
.hero-swpotato-btn,
.hero-onions-btn {
  margin: 24px auto 0;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: block;
  width: fit-content;
  text-align: center;
  box-shadow: 0 8px 20px rgba(40, 67, 31, 0.4);
}

.hero-potato-btn:hover,
.hero-carrots-btn:hover,
.hero-swpotato-btn:hover,
.hero-onions-btn:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #0f1e0c 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(40, 67, 31, 0.5);
}

.scroll-potato-indicator,
.scroll-carrots-indicator,
.scroll-swpotato-indicator,
.scroll-onions-indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  opacity: 0.8;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

/* ===== SUPPLY CHAIN & STORY ===== */
.supply-chain,
.our-story-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  text-align: center;
}

.chain-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.chain-step,
.story-point {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  animation: fadeUp 0.8s ease forwards;
  position: relative;
  overflow: hidden;
}

.chain-step::before,
.story-point::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 67, 31, 0.05) 0%, rgba(40, 67, 31, 0.1) 100%);
  transition: top 0.5s;
}

.chain-step:hover::before,
.story-point:hover::before {
  top: 0;
}

.chain-step:nth-child(1) { animation-delay: 0.2s; }
.chain-step:nth-child(2) { animation-delay: 0.4s; }
.chain-step:nth-child(3) { animation-delay: 0.6s; }
.chain-step:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chain-step:hover,
.story-point:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.chain-step .icon,
.story-point .icon {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--brand);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.chain-step:hover .icon,
.story-point:hover .icon {
  transform: scale(1.2) rotate(10deg);
  animation: float 2s ease-in-out infinite;
}

/* ===== PROCESS ITEM ENHANCED ===== */
.process-item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.process-item::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 67, 31, 0.05) 0%, rgba(40, 67, 31, 0.15) 100%);
  transition: top 0.5s;
}

.process-item:hover::before {
  top: 0;
}

.process-item:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.process-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f1f5ef 0%, #e8f7ee 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  color: var(--brand);
}

.process-item:hover .process-icon {
  transform: scale(1.2) rotate(360deg);
  background: var(--brand);
  color: white;
  box-shadow: 0 0 25px rgba(40, 67, 31, 0.5);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-grid img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== SECTION SEPARATORS ===== */
.section:not(:last-child)::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 80px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    var(--brand),
    transparent
  );
  opacity: 0.25;
  animation: shimmer 3s infinite;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #fafcf9 0%, #ffffff 100%);
}

/* ===== SPECS & TABLES ===== */
.specs,
.seasonality {
  margin: 40px 0;
}

.specs table,
.seasonality table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 100%;
  border-collapse: collapse;
}

.specs th,
.seasonality th {
  background: linear-gradient(135deg, #f7f9f6 0%, #edf5ed 100%);
  font-weight: 600;
  color: var(--brand);
  padding: 16px;
  text-align: center;
}

.specs td,
.seasonality td {
  color: #444;
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.specs tr,
.seasonality tr {
  transition: var(--transition);
}

.specs tr:hover,
.seasonality tr:hover {
  background: linear-gradient(90deg, #fafcf9 0%, transparent 100%);
  transform: scale(1.01);
}

.season-table {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.season-table th {
  background: var(--brand);
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 14px;
}

.season-table td {
  text-align: center;
  font-size: 15px;
  padding: 12px;
  transition: var(--transition);
}

.season-table tr:nth-child(even) {
  background: #f9faf9;
}

.season-table tr:hover td {
  background: #f2fff6;
  transform: scale(1.02);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===== LEGEND ===== */
.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  direction: ltr;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
  padding: 8px 16px;
  background: #f9f9f9;
  border-radius: 20px;
  transition: var(--transition);
}

.legend-item:hover {
  background: #f2fff6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.legend-icon {
  font-size: 16px;
  line-height: 1;
}

html[lang="ar"] .legend {
  direction: rtl;
}

html[lang="ar"] .legend-item {
  flex-direction: row-reverse;
}

/* ===== OUR STORY BOX ===== */
.our-story-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: fadeInScale 0.8s ease-out;
}

.our-story-text {
  flex: 1;
  background: linear-gradient(135deg, #f1f3f1 0%, #f9f9f9 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.our-story-text h1 {
  margin-top: 0;
  font-size: 40px;
  color: var(--brand);
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.our-story-text h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.our-story-image {
  flex: 1;
  text-align: right;
  animation: fadeInScale 0.8s ease-out 0.4s backwards;
}

.our-story-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.our-story-image img:hover {
  transform: scale(1.03) rotate(-2deg);
  box-shadow: var(--shadow-hover);
}

.section-title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
  background-color: #f1f3f1;
  padding: 40px 0;
}

.section-title h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  margin: 0;
  background-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

/* ===== EXPORT PROCESS ===== */
.export-process {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.process-title {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 10px;
  color: var(--brand);
  animation: fadeInUp 0.6s ease-out;
}

.process-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

.scroll-offset {
  scroll-margin-top: 100px;
}

/* ===== RESPONSIVE - LAPTOP/TABLET (1280px) ===== */
@media (max-width: 1280px) and (min-width: 769px) {
  .site-header {
    width: 90%;
    margin: 12px auto;
    border-radius: 40px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex !important;
    flex-direction: row;
    gap: 26px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border-radius: 12px;
    z-index: 2000;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-submenu {
    left: 100%;
    top: 0;
  }

  .dropdown-submenu.show {
    display: block;
  }

  .nav-list .btn span {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* ===== RESPONSIVE - MOBILE (768px) ===== */
@media (max-width: 768px) {

  h1, h2, h3, p {
    word-break: break-word;
  }

  .container {
    padding: 0 16px;
  }

  .site-header {
    width: 95%;
    margin: 10px auto;
    border-radius: 30px;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .logo img {
    height: 50px;
  }

  .logo-text {
    font-size: 16px;
    margin-left: 0;
  }

  .nav-toggle {
    display: block;
    z-index: 10000;
  }

  .nav-list {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    display: none;
    padding: 16px 14px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    gap: 12px;
  }

  .nav-list.show {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    border-radius: 8px;
  }

  .nav-list a:hover {
    background: #f2fff6;
    transform: translateX(5px);
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list .btn span {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding: 14px 20px;
  }

  .dropdown-menu,
  .dropdown-submenu {
    position: static !important;
    width: 100% !important;
    display: none;
    background: #fafafa !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dropdown-menu.show,
  .dropdown-submenu.show {
    display: block !important;
  }

  .dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
  }

  .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px 14px 36px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #444 !important;
    background: #fafafa !important;
    text-align: right !important;
    border: none !important;
  }

  .dropdown-menu li a:hover {
    background: #f0f0f0 !important;
    transform: translateX(3px);
  }

  .dropdown-submenu li a {
    padding: 12px 20px 12px 52px !important;
    font-size: 14px !important;
    background: #f0f0f0 !important;
  }

  .arrow {
    display: inline-block;
    font-size: 14px;
    margin-left: 8px;
  }

  .hero,
  .hero-slider,
  .hero-banner-potato,
  .hero-banner-carrots,
  .hero-banner-swpotato,
  .hero-banner-onions {
    min-height: 100vh;
    height: 100vh;
    background-attachment: scroll;
  }

  .hero-content,
  .hero-content-hero-potato,
  .hero-content-hero-carrots,
  .hero-content-hero-swpotato,
  .hero-content-hero-onions {
    text-align: center;
    padding: 0 18px;
    max-width: 680px;
  }

  .hero-content h1,
  .hero-content-hero-potato h1,
  .hero-content-hero-carrots h1,
  .hero-content-hero-swpotato h1,
  .hero-content-hero-onions h1 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-content p,
  .hero-content-hero-potato p,
  .hero-content-hero-carrots p,
  .hero-content-hero-swpotato p,
  .hero-content-hero-onions p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero .btn,
  .hero-potato-btn,
  .hero-carrots-btn,
  .hero-swpotato-btn,
  .hero-onions-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    display: block;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .hero-inner,
  .about-inner,
  .contact-inner {
    display: block;
  }

  .contact-inner {
    padding: 30px 20px;
  }

  .card-grid,
  .cert-grid,
  .process-steps,
  .metrics-inner {
    grid-template-columns: 1fr !important;
  }

  .product-tabs {
    flex-direction: column;
  }

  .product-tabs li {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #dfe8d9;
    background: #f6fbf4;
  }

  .product-tabs li.active {
    background: var(--brand);
    color: #fff;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .season-table {
    min-width: 700px;
    font-size: 14px;
  }

  .season-table th,
  .season-table td {
    padding: 8px;
    text-align: center;
    white-space: nowrap;
  }

  .legend {
    gap: 14px 20px;
  }

  .legend-item {
    font-size: 14px;
  }

  .legend-icon {
    font-size: 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }

  .gallery-grid img {
    height: 200px;
  }

  html[lang="ar"] .logo-with-name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -30px;
  }

  html[lang="ar"] .logo-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  html[lang="ar"] .logo img {
    width: 80px;
    height: auto;
  }
}

/* ===== FIX BACKGROUND ZOOM OUTSIDE OVERLAY ===== */
.hero,
.hero-slider,
.hero-banner-potato,
.hero-banner-carrots,
.hero-banner-swpotato,
.hero-banner-onions,
.hero-banner-lemon {
  position: relative;
  overflow: hidden;
}

.potato-bg,
.carrots-bg,
.swpotato-bg,
.onion-bg,
.lemon-bg,
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  z-index: 0;
}

.hero-overlay,
.hero-banner-potato::before,
.hero-banner-carrots::before,
.hero-banner-swpotato::before,
.hero-banner-onions::before,
.hero-banner-lemon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero-content,
.hero-content-hero-potato,
.hero-content-hero-carrots,
.hero-content-hero-swpotato,
.hero-content-hero-onions,
.hero-content-hero-lemon {
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none;
}

.hero-slider .hero-content {
  position: relative;
  z-index: 2;
}

/* ===== ABOUT HERO SECTION ===== */
/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  background-image: url("assets/aboutus.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
  padding-top: 90px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.about-overlay h1 {
  font-size: 36px;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.about-overlay p {
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .about-hero {
    background-attachment: scroll;
    padding-top: 80px;
  }
}

/* ===== RESPONSIVE - LARGE LAPTOPS (1441px - 1920px) ===== */
@media (min-width: 1441px) and (max-width: 1920px) {
  .container {
    max-width: 1300px;
  }

  .site-header {
    width: 75%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section h2 {
    font-size: 36px;
  }
}

/* ===== RESPONSIVE - STANDARD LAPTOPS (1281px - 1440px) ===== */
@media (min-width: 1281px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .site-header {
    width: 80%;
  }

  .nav-list {
    gap: 28px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== RESPONSIVE - SMALL LAPTOPS & LARGE TABLETS (1025px - 1280px) ===== */
@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    max-width: 1000px;
    padding: 0 30px;
  }

  .site-header {
    width: 85%;
    margin: 12px auto;
  }

  .header-inner {
    padding: 0 24px;
  }

  .nav-list {
    gap: 22px;
  }

  .nav-list a {
    font-size: 14px;
  }

  .nav-list .btn span {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 28px;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .metrics-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
  }
}

/* ===== RESPONSIVE - iPAD PRO & LARGE TABLETS (835px - 1024px) ===== */
@media (min-width: 835px) and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 40px;
  }

  .site-header {
    width: 90%;
    margin: 12px auto;
  }

  .header-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    gap: 18px;
  }

  .nav-list a {
    font-size: 14px;
    padding: 8px 2px;
  }

  .nav-list .btn span {
    padding: 10px 18px;
    font-size: 13px;
  }

  .dropdown-menu {
    min-width: 180px;
  }

  .hero,
  .hero-slider {
    min-height: 70vh;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .advantage-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVE - iPAD STANDARD & MEDIUM TABLETS (769px - 834px) ===== */
@media (min-width: 769px) and (max-width: 834px) {
  .container {
    padding: 0 32px;
  }

  .site-header {
    width: 92%;
  }

  .nav-list {
    gap: 16px;
  }

  .nav-list a {
    font-size: 13px;
  }

  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-copy h2 {
    text-align: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVE - APPLE MACBOOK SPECIFIC ===== */
@media (min-width: 1280px) and (max-width: 1440px) and (-webkit-min-device-pixel-ratio: 2) {
  .site-header {
    width: 78%;
  }

  .container {
    max-width: 1150px;
  }

  .nav-list {
    gap: 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
/* ===== RESPONSIVE - MEDIUM SCREENS (835px - 900px) ===== */
@media (min-width: 835px) and (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .site-header {
    width: 94%;
    margin: 10px auto;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo img {
    height: 52px;
  }

  .logo-text {
    font-size: 17px;
  }

  .nav-list {
    gap: 12px;
  }

  .nav-list a {
    font-size: 13px;
    padding: 8px 4px;
  }

  .nav-list .btn span {
    padding: 9px 16px;
    font-size: 12px;
  }

  .dropdown-menu {
    min-width: 160px;
  }

  .hero,
  .hero-slider {
    min-height: 75vh;
  }

  .hero-content h1,
  .hero-content-hero-potato h1,
  .hero-content-hero-carrots h1,
  .hero-content-hero-swpotato h1,
  .hero-content-hero-onions h1 {
    font-size: 32px;
  }

  .hero-content p,
  .hero-content-hero-potato p,
  .hero-content-hero-carrots p,
  .hero-content-hero-swpotato p,
  .hero-content-hero-onions p {
    font-size: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-copy h2 {
    text-align: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVE - MOBILE LANDSCAPE (ROTATE) ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .site-header {
    width: 96%;
    margin: 8px auto;
    border-radius: 25px;
  }

  .header-inner {
    height: 50px;
    padding: 0 12px;
  }

  .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 14px;
  }

  .nav-toggle {
    width: 30px;
    height: 30px;
  }

  .nav-toggle-bar {
    width: 22px;
    height: 2px;
  }

  .nav-toggle-bar::before { top: -6px; }
  .nav-toggle-bar::after { top: 6px; }

  .nav-list {
    top: 50px;
    max-height: calc(100vh - 50px);
    padding: 12px;
  }

  .nav-list a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero,
  .hero-slider,
  .hero-banner-potato,
  .hero-banner-carrots,
  .hero-banner-swpotato,
  .hero-banner-onions {
    min-height: 100vh;
    height: auto;
    padding: 70px 20px 40px;
  }

  .hero-content,
  .hero-content-hero-potato,
  .hero-content-hero-carrots,
  .hero-content-hero-swpotato,
  .hero-content-hero-onions {
    padding: 20px 16px;
    max-width: 90%;
  }

  .hero-content h1,
  .hero-content-hero-potato h1,
  .hero-content-hero-carrots h1,
  .hero-content-hero-swpotato h1,
  .hero-content-hero-onions h1 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-content p,
  .hero-content-hero-potato p,
  .hero-content-hero-carrots p,
  .hero-content-hero-swpotato p,
  .hero-content-hero-onions p {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .btn-primary,
  .hero-potato-btn,
  .hero-carrots-btn,
  .hero-swpotato-btn,
  .hero-onions-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 12px;
  }

  .scroll-home-indicator,
  .scroll-potato-indicator,
  .scroll-carrots-indicator,
  .scroll-swpotato-indicator,
  .scroll-onions-indicator {
    bottom: 15px;
  }

  .scroll-text {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .scroll-line {
    height: 18px;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .card-grid,
  .cert-grid,
  .process-steps,
  .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card,
  .cert-card,
  .process-steps li,
  .adv-card {
    padding: 16px;
  }

  .product-card h3,
  .cert-card h3,
  .adv-card h3 {
    font-size: 16px;
  }

  .product-card p,
  .cert-card p,
  .adv-card p {
    font-size: 13px;
  }

  .metric {
    padding: 16px;
  }

  .metric-value {
    font-size: 28px;
  }

  .metric-label {
    font-size: 13px;
  }

  .about-hero {
    min-height: 300px;
    padding-top: 70px;
  }

  .about-overlay h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .about-overlay p {
    font-size: 14px;
  }

  .contact-inner {
    padding: 30px 20px;
  }

  .form-row {
    margin-bottom: 12px;
  }

  input,
  textarea {
    padding: 10px;
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 0;
  }

  .footer-col h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-links li {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .gallery-grid img {
    height: 140px;
  }

  .our-story-box {
    padding: 24px;
    gap: 20px;
  }

  .our-story-text {
    padding: 20px;
  }

  .our-story-text h1 {
    font-size: 26px;
  }

  .our-story-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .process-grid,
  .chain-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-item,
  .chain-step,
  .story-point {
    padding: 20px 16px;
  }

  .process-icon,
  .chain-step .icon,
  .story-point .icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .faq-list details {
    padding: 12px;
    margin-bottom: 10px;
  }

  .faq-list summary {
    font-size: 15px;
    padding-left: 25px;
  }

  .faq-content {
    font-size: 13px;
    margin-top: 10px;
  }

  .advantage-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== LANDSCAPE SPECIFIC FOR SMALL PHONES (max-height: 420px) ===== */
@media (max-height: 420px) and (orientation: landscape) {
  .site-header {
    border-radius: 20px;
  }

  .header-inner {
    height: 45px;
  }

  .logo img {
    height: 36px;
  }

  .hero,
  .hero-slider,
  .hero-banner-potato,
  .hero-banner-carrots,
  .hero-banner-swpotato,
  .hero-banner-onions {
    padding: 60px 20px 30px;
  }

  .hero-content h1,
  .hero-content-hero-potato h1,
  .hero-content-hero-carrots h1,
  .hero-content-hero-swpotato h1,
  .hero-content-hero-onions h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero-content p,
  .hero-content-hero-potato p,
  .hero-content-hero-carrots p,
  .hero-content-hero-swpotato p,
  .hero-content-hero-onions p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .btn-primary,
  .hero-potato-btn,
  .hero-carrots-btn,
  .hero-swpotato-btn,
  .hero-onions-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .section {
    padding: 30px 0;
  }

  .section h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .card-grid,
  .cert-grid,
  .process-steps,
  .metrics-inner {
    gap: 10px;
  }

  .scroll-home-indicator,
  .scroll-potato-indicator,
  .scroll-carrots-indicator,
  .scroll-swpotato-indicator,
  .scroll-onions-indicator {
    bottom: 10px;
  }
}

/* ===== LANDSCAPE - TABLETS IN LANDSCAPE ===== */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero,
  .hero-slider,
  .hero-banner-potato,
  .hero-banner-carrots,
  .hero-banner-swpotato,
  .hero-banner-onions {
    min-height: 85vh;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .metrics-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* FAQ Section Styles */
.faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-size: 1.1rem;
  color: #2c3e50;
  user-select: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3:hover {
  background-color: #f8f9fa;
  color: #27ae60;
}

/* Arrow Icon */
.faq-item h3::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #27ae60;
  margin-left: 10px;
}

.faq-item.active h3::after {
  transform: rotate(180deg);
}

/* Answer Paragraph */
.faq-item p {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  margin: 0;
  opacity: 0;
  transition: all 0.4s ease;
  color: #555;
  line-height: 1.6;
}

.faq-item.active p {
  max-height: 500px;
  padding: 0 25px 20px 25px;
  opacity: 1;
  margin-top: 0;
}

/* Active State */
.faq-item.active {
  border-color: #27ae60;
  box-shadow: 0 3px 10px rgba(39, 174, 96, 0.1);
}

.faq-item.active h3 {
  color: #27ae60;
  background-color: #f0f8f4;
}

/* ===== LOGO SPACING FIX ===== */
.logo-with-name {
  gap: 8px; /* زود المسافة بين اللوجو والنص */
}

.logo-text {
  margin-left: 0; /* إلغاء المسافة السالبة الموجودة */
  transform: translateX(0); /* إلغاء التحريك */
}

/* للفوتر كمان */
.site-footer .logo {
  gap: 16px;
}

.site-footer .logo-text {
  margin-left: 0;
}

/* للموبايل */
@media (max-width: 768px) {
  .logo-with-name {
    gap: 6px;
  }
  
  html[lang="ar"] .logo-with-name {
    margin-left: 0;
  }
}