/* Pure Yolk - Premium Liquid Egg Solutions */
:root {
  --navy: #0a1628;
  --navy-light: #1a2942;
  --navy-dark: #050b14;
  --gold: #f4a623;
  --gold-dark: #d68910;
  --ivory: #faf8f3;
  --gray: #e8e6e1;
  --gray-dark: #6b7280;
  --white: #ffffff;
  --shadow: rgba(10, 22, 40, 0.1);
  --shadow-lg: rgba(10, 22, 40, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Tajawal', sans-serif;
  background: var(--ivory);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', 'Tajawal', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header.light { color: var(--white); }
.section-header.light .section-tag { color: var(--gold); }
.section-header p { color: var(--gray-dark); margin-top: 1rem; font-size: 1.125rem; }
.section-header.light p { color: rgba(255,255,255,0.8); }

.accent { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 166, 35, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-maps {
  background: #4285f4;
  color: white;
}

.btn-maps:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.btn-full { width: 100%; justify-content: center; }

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px var(--shadow-lg);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--white);
}

.logo-icon { font-size: 1.75rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(244, 166, 35, 0.1);
}

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.lang-dropdown { position: relative; }

.lang-toggle {
  background: rgba(244, 166, 35, 0.15);
  border: 1px solid rgba(244, 166, 35, 0.4);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: 'Tajawal', 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.lang-toggle:hover {
  background: rgba(244, 166, 35, 0.25);
  border-color: var(--gold);
}

.lang-flag { font-size: 1.1rem; line-height: 1; }

.lang-arrow {
  font-size: 0.7rem;
  margin-left: auto;
  transition: var(--transition);
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(244, 166, 35, 0.3);
  border-radius: 12px;
  padding: 0.5rem;
  list-style: none;
  min-width: 160px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

[dir="rtl"] .lang-menu { right: auto; left: 0; }

.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-option:hover {
  background: rgba(244, 166, 35, 0.15);
  color: var(--gold);
}

.lang-option.active {
  background: rgba(244, 166, 35, 0.2);
  color: var(--gold);
  font-weight: 600;
}

.logo { display: flex; align-items: center; gap: 0; text-decoration: none; color: var(--white); }

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.logo-fallback {
  display: none;
  align-items: center;
  gap: 15.5rem;
}

.logo-icon { font-size: 1.75rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #1a2942 70%, #0d1f3c 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(244, 166, 35, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(244, 166, 35, 0.05) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,11,20,0.6) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 166, 35, 0.15);
  border: 1px solid rgba(244, 166, 35, 0.3);
  color: var(--gold);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.stat-item > span:first-child, .stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

/* Products Strip */
.products-strip {
  background: var(--navy);
  padding: 1.25rem 0;
}

.strip-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.strip-item i { color: var(--gold); font-size: 1rem; }
.strip-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* About Section */
.about { background: var(--ivory); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244,166,35,0.1) 0%, transparent 70%);
}

.egg-visual {
  position: relative;
  z-index: 1;
}

.egg-outer {
  width: 200px;
  height: 240px;
  background: linear-gradient(160deg, #fff9f0 0%, #fef3e2 50%, #fde8c0 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(244,166,35,0.3), inset 0 -10px 30px rgba(244,166,35,0.1);
  animation: eggFloat 4s ease-in-out infinite;
}

.egg-yolk {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 35% 35%, #ffd166, var(--gold) 50%, var(--gold-dark));
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(244,166,35,0.5);
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(244,166,35,0.3);
}

.about-badge-float i { font-size: 1.25rem; }

.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--gray-dark); margin-bottom: 1.5rem; font-size: 1.05rem; }

.about-vision {
  display: flex;
  gap: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
}

[dir="rtl"] .about-vision { border-left: none; border-right: 4px solid var(--gold); }

.vision-icon {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.about-vision strong { display: block; margin-bottom: 0.25rem; color: var(--gold); }
.about-vision p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }

.about-goals { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }

.goal-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--navy);
}

.goal-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.about-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-dark);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: var(--gray);
  border-radius: 8px;
}

.about-location i { color: var(--gold); }

/* Products Section */
.products { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.product-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.product-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(244,166,35,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.product-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.product-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.product-card p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; }

.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.product-features li i { color: var(--gold); font-size: 0.875rem; flex-shrink: 0; }

.product-variants { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.variant-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(244,166,35,0.15);
  border: 1px solid rgba(244,166,35,0.3);
  color: var(--gold);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-side-cards { display: flex; flex-direction: column; gap: 1rem; }

.product-mini-card {
  background: var(--ivory);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}

.product-mini-card:hover {
  border-color: var(--gold);
  transform: translateX(-4px);
  box-shadow: 0 8px 25px var(--shadow);
}

[dir="rtl"] .product-mini-card:hover { transform: translateX(4px); }

.product-mini-card > i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.product-mini-card h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--navy); }
.product-mini-card p { font-size: 0.85rem; color: var(--gray-dark); margin: 0; }

/* Why Choose Us */
.why-us { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(244,166,35,0.08);
  border-color: rgba(244,166,35,0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(244,166,35,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.why-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.75rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* Quality Section */
.quality { background: var(--ivory); }

.quality-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.quality-content h2 { margin-bottom: 1rem; }
.quality-content > p { color: var(--gray-dark); margin-bottom: 2rem; font-size: 1.05rem; }

.quality-pillars { display: flex; flex-direction: column; gap: 1.25rem; }

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.pillar strong { display: block; color: var(--navy); margin-bottom: 0.25rem; }
.pillar p { color: var(--gray-dark); font-size: 0.9rem; margin: 0; }

.quality-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.q-stat {
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.q-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.q-stat > span:last-child {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Contact Section */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(244,166,35,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-icon.whatsapp-icon { background: rgba(37,211,102,0.15); color: #25d366; }

.contact-item strong {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-item a, .contact-item span {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-item a:hover { color: var(--gold); }

.social-links { display: flex; align-items: center; gap: 1rem; }
.social-links > span { color: var(--gray-dark); font-size: 0.875rem; font-weight: 600; }

.social-icons { display: flex; gap: 0.75rem; }

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input, .form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244,166,35,0.1);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #16a34a;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-success.show { display: flex; }
.form-success i { font-size: 1.25rem; }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-family: 'Inter', 'Tajawal', sans-serif;
  font-weight: 600;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact i { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}

[dir="rtl"] .whatsapp-float { right: auto; left: 2rem; }

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes eggFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RTL Support */
[dir="rtl"] body { font-family: 'Tajawal', 'Inter', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Tajawal', serif; }
[dir="rtl"] .about-vision { border-left: none; border-right: 4px solid var(--gold); }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-ctas { justify-content: flex-start; }

/* Urdu Font */
[lang="ur"] body, [lang="ur"] h1, [lang="ur"] h2, [lang="ur"] h3, [lang="ur"] h4 {
  font-family: 'Noto Nastaliq Urdu', 'Tajawal', serif;
}

/* Hindi Font */
[lang="hi"] body, [lang="hi"] h1, [lang="hi"] h2, [lang="hi"] h3, [lang="hi"] h4 {
  font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-img-placeholder { height: 350px; }
  .products-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; }
  .hamburger { display: flex; z-index: 1000; }

  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-goals { grid-template-columns: 1fr; }
  .quality-stats-grid { grid-template-columns: 1fr 1fr; }

  .strip-items { gap: 1rem; }
  .strip-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 4rem 0; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .quality-stats-grid { grid-template-columns: 1fr; }
}

/* ── Products New Grid & Slider ─────────────────────────────────────── */
.products-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.product-new-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.product-new-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.product-new-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-lg);
  border-color: rgba(244,166,35,0.3);
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: var(--navy);
  direction: ltr;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-track img {
  min-width: 100%;
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: #f5f5f5;
  flex-shrink: 0;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,22,40,0.6);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.slider-btn:hover { background: var(--gold); color: var(--navy); }
.slider-btn.prev { left: 0.75rem; }
.slider-btn.next { right: 0.75rem; }

.slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active { background: var(--gold); transform: scale(1.3); }

/* Product Info */
.product-new-info {
  padding: 1.75rem;
}

.product-new-info h3 { margin: 0.5rem 0 0.75rem; font-size: 1.4rem; }
.product-new-info p  { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 1.25rem; }

@media (max-width: 768px) {
  .products-new-grid { grid-template-columns: 1fr; }
  .slider { height: 260px; }
}

/* ── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox.active { display: flex; }

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 82vh;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  cursor: zoom-in;
}

.lb-img-wrap.zoomed { cursor: zoom-out; }

#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  user-select: none;
  opacity: 1;
}

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.lb-close:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.1); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }

.lb-download {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.lb-download:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: scale(1.1); }

.lb-counter {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  background: rgba(0,0,0,0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.slider-track img { cursor: pointer; }

@media (max-width: 768px) {
  .lb-prev { left: 0.25rem; }
  .lb-next { right: 0.25rem; }
  #lb-img { max-width: 95vw; max-height: 75vh; }
}

/* ── Footer cert images ─────────────────────────────────────────────────── */
.footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-cert-imgs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cert-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  transition: var(--transition);
}

.cert-img:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.1);
}
