/* =============================================
   ROOT VARIABLES & RESET
   ============================================= */
:root {
  --primary:       #1a5e32;
  --primary-light: #2d8a4e;
  --primary-dark:  #0d1f15;
  --accent:        #eab308;
  --accent-light:  #fde047;
  --bg:            #ffffff;
  --bg-card:       #f8faf7;
  --dark-bg:       #0d1f15;
  --dark-card:     #142212;
  --text:          #1a2e1e;
  --text-muted:    #4b5563;
  --text-light:    #ffffff;
  --border:        #e5e7eb;
  --shadow:        0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg:     0 10px 15px -3px rgb(0 0 0 / 0.1);
  --radius:        24px;
  --radius-sm:     12px;
  --transition:    0.3s ease;
  --font:          'Cairo', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

img { 
  max-width: 100%; 
  display: block; 
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
a { color: inherit; text-decoration: none; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  position: fixed;
  background: rgba(26, 94, 50, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.logo-img {
  height: 32px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}

.nav-links .nav-cta {
  background: #1a5e32;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: #000;
  transform: none;
}

.nav-links .nav-cta::after {
  content: '→';
  background: #fff;
  color: #1a5e32;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('produit 5.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  color: #fff;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 800px;
  z-index: 2;
}

.hero-badge {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-discover {
  background: #1a5e32;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-discover::after {
  content: '●';
  background: #fff;
  color: #1a5e32;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.btn-services {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-services::after {
  content: '●';
  background: var(--accent);
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Yellow Banner */
.stats-banner {
  background: #facc15;
  padding: 40px 0;
  position: relative;
  z-index: 3;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-avatars {
  display: flex;
}

.stat-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #facc15;
  margin-right: -10px;
}

.stat-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.2;
}

.veg-circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px dashed #1a5e32;
  text-align: center;
}

.veg-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a5e32;
  text-transform: uppercase;
}

.veg-text i {
  width: 40px;
  height: 40px;
  background: #1a5e32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 5px;
}

.product-video {
  position: relative;
  width: 200px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.product-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,138,78,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,138,78,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
}

.full-btn { width: 100%; }

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 110px 0;
}

.services {
  padding: 120px 0;
  background: #fff;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.services-title-wrap {
  max-width: 600px;
}

.services-label {
  display: inline-block;
  border: 1px solid #e5e7eb;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #1a5e32;
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

.services-nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-btn.active {
  background: #1a5e32;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #1a5e32;
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  color: #fff;
  transition: var(--transition);
}

.service-img {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  margin-bottom: 40px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.about-list li i {
  color: #1a5e32;
  font-weight: 900;
}

/* About Image Styling */
.side-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.side-image-wrapper img {
  border-radius: 20px;
  display: block;
  transition: all 0.3s ease;
}

.side-image-wrapper:hover {
  box-shadow: 0 0 0 4px #f5a623;
}

.side-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Dark Section Update */
.dark-section {
  background: #1a5e32;
  color: #fff;
  padding: 120px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.benefit-card:hover {
  background: var(--accent);
  transform: translateY(-10px);
}

.benefit-card:hover h3, .benefit-card:hover p {
  color: #000;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}


/* Before After */
.before-after { text-align: center; }

.ba-wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  width: 100%;
}

.ba-img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-labels {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ba-label {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}
.before-lbl { border-radius: 0 0 var(--radius-sm) 0; }
.after-lbl { border-radius: 0 0 0 var(--radius-sm); }

/* =============================================
   PRODUCTS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

/* Last two cards centered if 5 total */
.products-grid .product-card:nth-child(4),
.products-grid .product-card:nth-child(5) {
  grid-column: span 1;
}

/* Center last row for 5 items */
.products-grid {
  grid-template-columns: repeat(3, 1fr);
}

.products-grid .product-card:nth-child(4) {
  grid-column: 1;
}
.products-grid .product-card:nth-child(5) {
  grid-column: 2;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: linear-gradient(45deg, #f8faf7, #e8f5e8);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.02);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1.08) contrast(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,21,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-info {
  padding: 28px;
  background: linear-gradient(to bottom, #ffffff, #fafbff);
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =============================================
   SPECS
   ============================================= */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.spec-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.spec-table-wrap h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: right;
}

.spec-table th:first-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.spec-table th:last-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }

.spec-table td {
  padding: 12px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: rgba(45,138,78,0.04); }

.spec-val {
  color: var(--primary);
  font-weight: 700;
}

/* =============================================
   APPLICATION
   ============================================= */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.app-rates h3, .app-steps h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.rate-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.rate-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.rate-card:hover {
  border-color: rgba(45,138,78,0.4);
  transform: translateX(-4px);
}

.rate-icon { font-size: 1.4rem; flex-shrink: 0; }

.rate-card strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.rate-val {
  display: block;
  color: var(--accent-light);
  font-size: 1.1rem;
  font-weight: 800;
}

.app-tip, .app-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.app-warning {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  margin-top: 16px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-list strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.steps-list p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: right;
  gap: 12px;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a p, .faq-a ul {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-a ul {
  padding-right: 40px;
}

.faq-a ul li { margin-bottom: 6px; }
.faq-a strong { color: var(--text); }

/* =============================================
   CATALOGUE
   ============================================= */
.catalogue {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
}

.catalogue .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.catalogue .section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.catalogue .section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.catalogue-content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.catalogue-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgb(0 0 0 / 0.15);
}

.catalogue-preview {
  margin-bottom: 30px;
}

.catalogue-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(26, 94, 50, 0.3);
}

.catalogue-icon svg {
  stroke: currentColor;
}

.catalogue-preview h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.catalogue-preview p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.catalogue-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(26, 94, 50, 0.35);
}

.catalogue-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 94, 50, 0.45);
  color: #fff;
}

.catalogue-btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
  margin-top: 15px;
}

.catalogue-btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(26, 94, 50, 0.35);
}

.btn-icon {
  display: flex;
  align-items: center;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateX(-4px);
}

.contact-icon { font-size: 1.8rem; }

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-val {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.contact-val:hover { color: var(--primary-light); }
.whatsapp-link:hover { color: #25D366; }

/* FORM */
.contact-form {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: rgba(45,138,78,0.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  color: var(--primary-light);
  font-weight: 600;
  padding: 12px;
  background: rgba(45,138,78,0.1);
  border-radius: var(--radius-sm);
  margin-top: -8px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #070f0a;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand .logo-img {
  height: 64px;
  width: auto;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--primary-light);
}

.footer-contact p { margin-bottom: 10px; }

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   WHATSAPP FAB
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: wobble 3s ease-in-out 5s infinite;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.55);
}

@keyframes wobble {
  0%, 90%, 100% { transform: rotate(0deg); }
  93% { transform: rotate(-10deg); }
  96% { transform: rotate(10deg); }
  99% { transform: rotate(-5deg); }
}

/* =============================================
   RESPONSIVE - Tablet (1024px)
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .product-card:nth-child(4),
  .products-grid .product-card:nth-child(5) { grid-column: auto; }
  .specs-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  
  .stats-inner { flex-wrap: wrap; justify-content: center; }
  .stat-item { flex: 1 1 45%; min-width: 200px; }
  .veg-circle { flex: 0 0 auto; }
  .product-video { flex: 0 0 auto; }
}

/* =============================================
   RESPONSIVE - Mobile (768px)
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .services { padding: 60px 0; }
  .dark-section { padding: 60px 0; }

  /* Safe area for notched phones */
  .navbar { padding-top: env(safe-area-inset-top, 12px); }
  .nav-links { 
    padding-top: calc(16px + env(safe-area-inset-top, 0px)); 
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }

  /* Navbar */
  .navbar {
    background: rgba(7,15,10,0.97);
    padding: 12px 0;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: rgba(7,15,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { 
    width: 100%; 
    text-align: center; 
    padding: 14px 12px;
    font-size: 1rem;
  }
  .nav-links .nav-cta { 
    margin-top: 8px;
    justify-content: center;
  }

  .hamburger { display: flex; }
  .logo { font-size: 1.4rem; }
  .logo-img { height: 28px !important; }

  /* Hero */
  .hero { 
    min-height: 100vh; 
    padding: 80px 0 60px;
    background-size: cover;
  }
  .hero-inner { 
    padding: 20px 16px; 
    text-align: center;
    align-items: center;
  }
  .hero-badge { 
    font-size: 0.8rem; 
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .hero-title { 
    font-size: clamp(1.8rem, 8vw, 2.8rem) !important;
    margin-bottom: 16px;
  }
  .hero-desc { 
    font-size: 1rem !important;
    margin-bottom: 28px;
  }
  .hero-actions { 
    flex-direction: column; 
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn { 
    width: 100%; 
    justify-content: center;
    padding: 14px 24px;
  }

  /* Stats Banner */
  .stats-banner { padding: 24px 0; }
  .stats-inner { 
    flex-direction: column; 
    gap: 20px;
    align-items: center;
  }
  .stat-item { 
    flex-direction: row; 
    gap: 12px;
    width: 100%;
    justify-content: center;
  }
  .stat-avatars img { width: 36px; height: 36px; }
  .stat-text { font-size: 0.95rem; }
  .veg-circle { 
    width: 90px; 
    height: 90px; 
  }
  .veg-text { font-size: 0.6rem; }
  .veg-text i { width: 30px; height: 30px; font-size: 1rem; }
  .product-video { 
    width: 100%; 
    max-width: 200px;
    height: 100px; 
  }

  /* Services */
  .services-header { margin-bottom: 40px; }
  .services-title-wrap { max-width: 100%; }
  .services-header h2 { font-size: 1.8rem !important; }
  .services-nav { display: none; }
  .services-grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .service-card { padding: 12px; }
  .service-img { 
    height: 180px; 
    margin-bottom: 14px;
  }
  .service-card h3 { font-size: 1.2rem; }
  .service-card p { font-size: 0.9rem; }

  /* About */
  .about-grid { gap: 32px; }
  .section-title { font-size: 1.8rem !important; }
  .section-desc { font-size: 1rem !important; }
  .about-list li { font-size: 0.95rem; }
  .side-image-wrapper img { 
    width: 100%; 
    height: auto;
    min-height: 250px;
    object-fit: cover;
  }

  /* Benefits */
  .benefits-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .benefit-card { 
    padding: 20px; 
    border-radius: 16px;
  }
  .benefit-icon { 
    font-size: 2.2rem; 
    margin-bottom: 12px;
  }
  .benefit-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 8px;
  }
  .benefit-card p { 
    font-size: 0.88rem; 
    line-height: 1.6;
  }

  /* Products */
  .products-grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
    padding: 0 8px;
  }
  .products-grid .product-card:nth-child(4),
  .products-grid .product-card:nth-child(5) { grid-column: auto; }
  .product-img-wrap { height: 220px; }
  .product-info { padding: 20px; }
  .product-info h3 { font-size: 1.1rem; }
  .product-info p { font-size: 0.88rem; }

  /* Specs */
  .specs-grid { gap: 20px; }
  .spec-table-wrap { 
    padding: 20px; 
    border-radius: 16px;
  }
  .spec-table-wrap h3 { font-size: 1rem; }
  .spec-table th, .spec-table td { 
    padding: 10px 12px; 
    font-size: 0.8rem;
  }

  /* Application */
  .app-grid { gap: 32px; }
  .app-rates h3, .app-steps h3 { font-size: 1.1rem; }
  .rate-card { 
    padding: 16px; 
    border-radius: 16px;
  }
  .steps-list { gap: 16px; }
  .step-num { 
    width: 36px; 
    height: 36px; 
    font-size: 0.8rem;
  }
  .steps-list strong { font-size: 0.95rem; }
  .steps-list p { font-size: 0.82rem; }
  .app-tip, .app-warning { 
    padding: 14px; 
    font-size: 0.82rem;
  }

  /* Before/After */
  .before-after { padding: 60px 0; }
  .ba-label { 
    padding: 6px 14px; 
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq-list { gap: 10px; }
  .faq-q { 
    padding: 16px; 
    font-size: 0.9rem;
  }
  .faq-a p, .faq-a ul { 
    padding: 0 16px 16px; 
    font-size: 0.85rem;
  }

  /* Catalogue */
  .catalogue { padding: 60px 0; }
  .catalogue .section-header h2 { font-size: 1.6rem; }
  .catalogue-content { padding: 30px 20px; }
  .catalogue-icon { width: 70px; height: 70px; }
  .catalogue-icon svg { width: 35px; height: 35px; }
  .catalogue-preview h3 { font-size: 1.2rem; }
  .catalogue-btn { padding: 12px 24px; font-size: 0.9rem; }

  /* Contact */
  .contact-grid { gap: 24px; }
  .contact-info { gap: 12px; }
  .contact-card { 
    padding: 16px; 
    border-radius: 16px;
  }
  .contact-icon { font-size: 1.5rem; }
  .contact-form { 
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 16px;
    gap: 12px;
  }
  .form-group input, .form-group textarea { 
    padding: 12px 14px; 
    font-size: 0.9rem;
  }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-brand .logo-img { height: 50px !important; }
  .footer-links h4, .footer-contact h4 { font-size: 1rem; }
  .footer-links a, .footer-contact a { font-size: 0.85rem; }
  .footer-bottom { 
    padding: 16px; 
    font-size: 0.75rem;
  }

  /* Blog */
  .blog-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .blog-card { 
    padding: 24px 20px; 
    border-radius: 16px;
  }
  .blog-card-icon { font-size: 2rem; }
  .blog-card-body h3 { font-size: 0.95rem; }
  .blog-card-body p { font-size: 0.82rem; }

  /* WhatsApp FAB */
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* Section Headers */
  .section-header h2 { font-size: 1.8rem !important; }
  .section-header p { font-size: 0.95rem !important; }
  .services-label { 
    font-size: 0.75rem; 
    padding: 3px 10px;
  }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* =============================================
   SELECTION
   ============================================= */
::selection {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   BLOG
   ============================================= */
.blog {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at top right, rgba(45,138,78,0.08), transparent 70%);
  pointer-events: none;
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.blog-card-icon {
  font-size: 2.6rem;
  line-height: 1;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.5;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.blog-read-more:hover {
  color: var(--primary-light);
  gap: 10px;
}

/* =============================================
   RESPONSIVE - Small Tablet (960px)
   ============================================= */
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE - Small Mobile (600px)
   ============================================= */
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* =============================================
   RESPONSIVE - Landscape Mobile
   ============================================= */
@media (max-width: 480px) and (orientation: landscape) {
  .hero { min-height: 100vh; padding: 70px 0 40px; }
  .hero-title { font-size: 1.6rem !important; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { flex: 1 1 45%; }
  .section { padding: 40px 0; }
  .stats-inner { flex-direction: row; flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(180deg, #f0f7f2 0%, #fff 50%, #f0f7f2 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a5e32, #2d8a4e, #1a5e32);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials .section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a5e32;
  margin-bottom: 16px;
}

.testimonials .section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26,94,50,0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(26,94,50,0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(26,94,50,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26,94,50,0.2);
}

.testimonial-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  gap: 4px;
}

.testimonial-img:first-child {
  flex: 1;
}

.testimonial-img img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.testimonial-card:hover .testimonial-img img {
  transform: scale(1.05);
}

.testimonial-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 10;
}

.testimonial-badge.after {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, #1a5e32 0%, #2d8a4e 100%);
  box-shadow: 0 4px 15px rgba(26,94,50,0.4);
}

.testimonial-content {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-right: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(26,94,50,0.1);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a5e32 0%, #2d8a4e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(26,94,50,0.3);
}

.testimonial-author h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a5e32;
  margin: 0 0 4px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #1a5e32 0%, #2d8a4e 50%, #1a5e32 100%);
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(26,94,50,0.25);
  position: relative;
  overflow: hidden;
}

.testimonials-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.testimonial-stat {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 30px;
}

.testimonial-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

.testimonial-stat .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.testimonial-stat .stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-stats {
    gap: 20px;
    padding: 40px 30px;
  }
  .testimonial-stat .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-stats {
    flex-direction: column;
    gap: 25px;
    padding: 35px 25px;
  }
  .testimonial-stat:not(:last-child)::after {
    display: none;
  }
  .testimonial-stat {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .testimonial-stat:last-child {
    border-bottom: none;
  }
}
