/* ===== CSS VARIABLES ===== */
:root {
  --primary: #183268;
  --primary-dark: #183268;
  --primary-mid: #1A3A6B;
  --gold: #f68311;
  --gold-light: #f68311;
  --gold-pale: #F5EDD6;
  --cream: #F8F9FC;
  --light-bg: #F2F4F8;
  --dark: #0f234d;
  --dark2: #183268;
  --text: #1C2B3A;
  --text-light: #5A6B7C;
  --white: #ffffff;
  --border: #D8E0EA;
  --border-light: #EBF0F6;
  --shadow: 0 4px 24px rgba(11,37,69,0.10);
  --shadow-lg: 0 12px 48px rgba(11,37,69,0.18);
  --radius: 6px;
  --radius-sm: 4px;
  --transition: all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 88px 0; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark2); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== TOPBAR ===== */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,0.75); font-size: 13px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 28px; }
.topbar-left span { color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { color: var(--gold-light); font-weight: 600; letter-spacing: 0.02em; }
.lang-selector select {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); padding: 3px 10px; border-radius: 3px;
  font-size: 12px; cursor: pointer; font-family: inherit;
}
.lang-selector select option { background: var(--primary-dark); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(11,37,69,0.07);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(11,37,69,0.12); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon { font-size: 28px; line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700; font-size: 18px; color: var(--primary);
  letter-spacing: -0.01em;
}
.logo-sub { font-size: 10.5px; color: var(--gold); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: 8px 16px;
  color: var(--text); font-weight: 500; font-size: 14px;
  letter-spacing: 0.01em;
  transition: var(--transition); white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--gold); font-weight: 600; }

/* DROPDOWN */
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: -8px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--text);
}
.dropdown-menu a:hover { background: var(--light-bg); color: var(--primary); }
.dropdown-menu a.view-all {
  color: var(--gold); border-top: 1px solid var(--border);
  margin-top: 4px; font-weight: 600; font-size: 13px;
}

.btn-nav {
  background: var(--primary); color: var(--white);
  padding: 9px 22px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13.5px;
  white-space: nowrap; transition: var(--transition);
  letter-spacing: 0.02em; border: 2px solid var(--primary);
}
.btn-nav:hover { background: var(--gold); border-color: var(--gold); }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--primary); margin-left: auto; }

/* ===== DIVIDER LINE ===== */
.gold-line { display: inline-block; width: 40px; height: 3px; background: var(--gold); margin-bottom: 20px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary); color: var(--white);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  transition: var(--transition); border: 2px solid var(--primary);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 12px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em; transition: var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-light {
  display: inline-block;
  border: 2px solid var(--gold); color: var(--gold);
  padding: 12px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em; transition: var(--transition);
}
.btn-outline-light:hover { background: var(--gold); color: var(--dark); }
.btn-small {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  letter-spacing: 0.03em; transition: var(--transition); margin-top: 12px;
  border: 2px solid var(--primary);
}
.btn-small:hover { background: var(--gold); border-color: var(--gold); }

/* ===== SECTION TITLES ===== */
.section-title { text-align: center; margin-bottom: 56px; }
.section-title.light h2, .section-title.light p { color: var(--white); }
.section-tag {
  display: inline-block;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag.light { color: var(--gold-light); }
.section-title h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 34px; font-weight: 700; color: var(--dark);
  margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.25;
}
.section-title p { color: var(--text-light); font-size: 16px; max-width: 520px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  background: var(--primary);
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(184,145,42,0.08) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23B8912A' fill-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; padding: 100px 32px 80px; max-width: 740px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,145,42,0.12);
  border: 1px solid rgba(184,145,42,0.35);
  color: var(--gold-light);
  padding: 7px 18px; border-radius: 3px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease;
}
.hero-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 22px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.7s ease 0.15s both;
}
.hero-title .gold { color: var(--gold-light); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 40px; line-height: 1.75;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-btns .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }
.hero-btns .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.hero-stats { display: flex; gap: 0; animation: fadeInUp 0.7s ease 0.55s both; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 36px; }
.stat { text-align: left; padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 36px; font-weight: 700; color: var(--gold-light); line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 20px; animation: bounce 2s infinite; cursor: pointer; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-card {
  padding: 40px 36px; background: var(--white);
  transition: var(--transition); text-align: left;
}
.feature-card:hover { background: var(--light-bg); }
.feature-icon { font-size: 32px; margin-bottom: 18px; }
.feature-card h3 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px; margin-bottom: 10px; color: var(--primary); font-weight: 700;
}
.feature-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.7; }

/* ===== PRODUCTS GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  border: 1px solid var(--border); overflow: hidden;
  background: var(--white); cursor: pointer; transition: var(--transition);
  border-radius: var(--radius);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product-img {
  min-height: 160px; display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.almond-bg { background: #F5F0E8; }
.cashew-bg { background: #F8F5E0; }
.walnut-bg { background: #EDE8E0; }
.pistachio-bg { background: #EBF0E8; }
.dates-bg { background: #EDE0D8; }
.raisin-bg { background: #EDE8F0; }
.fig-bg { background: #EDE8F0; }
.apricot-bg { background: #F5EDE0; }
.product-info { padding: 20px 22px 22px; border-top: 1px solid var(--border-light); }
.product-info h3 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px; margin-bottom: 5px; color: var(--primary); font-weight: 700;
}
.product-info p { font-size: 13.5px; color: var(--text-light); margin-bottom: 6px; line-height: 1.5; }
.product-origin { font-size: 11.5px; color: var(--gold); font-weight: 700; display: block; letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== ABOUT SNIPPET ===== */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main {
  height: 480px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: white; font-size: 72px;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder span { display: block; font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 18px; margin-top: 14px; opacity: 0.8; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--primary-dark);
  padding: 22px 28px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.badge-num { display: block; font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 40px; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }
.about-text .section-tag { display: block; margin-bottom: 10px; }
.about-text h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px; margin: 0 0 20px; color: var(--dark);
  line-height: 1.3; letter-spacing: -0.01em;
}
.about-text p { color: var(--text-light); margin-bottom: 14px; font-size: 15px; line-height: 1.8; }
.check-list { margin: 22px 0 28px; }
.check-list li {
  padding: 10px 0; font-size: 14.5px; font-weight: 500;
  border-bottom: 1px solid var(--border-light); color: var(--text);
  display: flex; align-items: center; gap: 10px;
}

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.08); }
.stars { color: var(--gold-light); font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.testi-card p { color: rgba(255,255,255,0.75); font-size: 14.5px; font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.testi-author strong { display: block; color: var(--white); font-size: 14px; font-weight: 600; }
.testi-author small { color: rgba(255,255,255,0.45); font-size: 12.5px; }

/* ===== CERTIFICATIONS ===== */
.cert-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cert-badge {
  min-width: 140px; padding: 28px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; font-size: 13.5px; font-weight: 600;
  line-height: 1.5; color: var(--text); transition: var(--transition);
}
.cert-badge:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.cert-badge .cert-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.cert-badge span:not(.cert-icon) { font-size: 13px; color: var(--primary); font-weight: 700; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--primary); padding: 70px 0; border-top: 3px solid var(--gold); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px; color: var(--white); margin-bottom: 8px;
  font-weight: 700; letter-spacing: -0.01em;
}
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 15px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btns .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); font-weight: 700; }
.cta-btns .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 24px; }
.footer-logo strong {
  display: block; color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 17px; font-weight: 700;
}
.footer-logo small { color: var(--gold); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-col > p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-col h4 {
  color: var(--white); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 13.5px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact p { margin-bottom: 10px; font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.social-links { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.social-links a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12.5px; color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 12px 20px 12px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-weight: 600; font-size: 13.5px;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.whatsapp-text { white-space: nowrap; letter-spacing: 0.02em; }


/* ===== call FLOAT ===== */
.call-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #fa9016; color: var(--white);
  padding: 12px 20px 12px 14px;
  border-radius: 4px;
  box-shadow: rgb(250 144 22 / 44%) 0px 4px 20px;
  font-weight: 600; font-size: 13.5px;
  transition: var(--transition);
  text-decoration: none;
}
.call-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.call-text { white-space: nowrap; letter-spacing: 0.02em; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: var(--primary);
  padding: 64px 0 60px; color: white;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px; font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: var(--gold-light); }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 88px 0; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-page-grid h2 { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 30px; margin: 10px 0 18px; color: var(--dark); line-height: 1.3; }
.about-page-grid p { color: var(--text-light); font-size: 15px; line-height: 1.85; margin-bottom: 14px; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 60px 0; }
.mv-card {
  padding: 32px 28px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.mv-card h3 { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 18px; margin-bottom: 12px; color: var(--primary); }
.mv-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.75; }
.team-section { padding: 88px 0; background: var(--light-bg); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 60px; background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}
.team-info { padding: 18px 16px 20px; }
.team-info h4 { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 16px; color: var(--dark); font-weight: 700; margin-bottom: 4px; }
.team-info span { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.team-info p { font-size: 13px; color: var(--text-light); margin-top: 8px; }

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 88px 0; }
.products-all-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail { padding: 88px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.product-detail-img {
  height: 513px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 110px;
  border: 1px solid var(--border); background: var(--light-bg);
}
.product-detail-info h1 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 36px; color: var(--dark); margin-bottom: 12px;
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.2;
}
.product-detail-info .origin-tag {
  display: inline-block; background: var(--gold-pale); border: 1px solid var(--gold);
  color: var(--gold); padding: 4px 14px; border-radius: 3px;
  font-size: 11.5px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.08em; text-transform: uppercase;
}
.product-detail-info p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.specs-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.specs-table tr:nth-child(even) td { background: var(--light-bg); }
.specs-table td { padding: 11px 16px; border: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 600; color: var(--primary); width: 42%; background: var(--light-bg); }
.specs-table tr:nth-child(even) td:first-child { background: #E8EDF4; }

/* ENQUIRY FORM */
.enquiry-section { padding: 72px 0; background: var(--light-bg); border-top: 1px solid var(--border); }
.enquiry-form-wrap { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 14px;
  color: var(--text); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,37,69,0.06);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--primary); color: white; border: 2px solid var(--primary);
  padding: 14px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-family: inherit; margin-top: 8px;
  letter-spacing: 0.05em;
}
.form-submit:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-page { padding: 88px 0; }
.testi-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-full-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.testi-full-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.testi-full-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; }
.testi-full-card p { color: var(--text-light); font-style: italic; margin: 14px 0 22px; line-height: 1.8; font-size: 14.5px; }
.testi-full-card .testi-author .author-avatar { background: var(--primary); color: white; }
.testi-full-card .testi-author strong { color: var(--dark); font-size: 14px; }
.testi-full-card .testi-author small { color: var(--text-light); font-size: 12.5px; }

/* ===== FAQ PAGE ===== */
.faq-section { padding: 88px 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.faq-question {
  padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); color: var(--dark); transition: var(--transition);
  letter-spacing: 0.01em;
}
.faq-question:hover { background: var(--light-bg); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-light); font-size: 14.5px; line-height: 1.85; }
.faq-answer.open { max-height: 300px; }
.faq-chevron { font-size: 18px; transition: transform 0.3s; opacity: 0.6; }
.faq-question.active .faq-chevron { transform: rotate(180deg); opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.contact-info-card {
  padding: 40px 36px; background: var(--primary);
  border-radius: var(--radius); color: white; height: fit-content;
  border-top: 4px solid var(--gold);
}
.contact-info-card h3 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 22px;
  margin-bottom: 32px; font-weight: 700;
}
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item .icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.55; margin-bottom: 5px; }
.contact-item p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.8); }
.map-placeholder {
  height: 260px; background: var(--light-bg); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-top: 24px; font-size: 48px; flex-direction: column; gap: 10px;
}
.map-placeholder span { font-size: 13px; color: var(--text-light); font-weight: 500; }
.contact-form-section h3 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 26px; color: var(--dark);
  margin-bottom: 8px; font-weight: 700; letter-spacing: -0.01em;
}
.contact-form-section > p { color: var(--text-light); margin-bottom: 28px; font-size: 15px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .products-all-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 68px;
    left: 0; right: 0; background: white; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); padding: 12px 16px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .btn-nav { display: none; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--border); padding: 0 0 0 12px; margin: 4px 0; }
  .about-flex, .about-page-grid, .product-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .features-grid, .products-grid, .testi-grid, .testi-full-grid, .products-all-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat { padding-right: 24px; margin-right: 24px; }
  .whatsapp-text { display: none; }
  .whatsapp-float { padding: 12px; border-radius: 4px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 80px 20px 60px; }
  .container { padding: 0 20px; }
  .enquiry-form-wrap { padding: 28px 20px; }
  .section-title h2 { font-size: 26px; }
}

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: url('images/slider1.jpg') center/cover no-repeat;
}

/* Each slide */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 92vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* Slide backgrounds using CSS gradients + SVG patterns (no external images needed) */
.slide-1 {
  /* background:url('images/slider1.jpg'); */
}
.slide-1::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,145,42,0.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='1.5' fill='%23B8912A' fill-opacity='0.07'/%3E%3C/svg%3E"); 
}

.slide-2 {
  background:
    /* linear-gradient(135deg, #0D2B1A 0%, #14432A 45%, #1B5C3A 100%); */
}
.slide-2::before {
  content: '';
  position: absolute; inset: 0;
 background:
    radial-gradient(ellipse at 65% 40%, rgba(184,145,42,0.22) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='48' y='48' width='4' height='4' rx='1' fill='%23B8912A' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.slide-3 {
  background:
    /* linear-gradient(135deg, #1C1205 0%, #2E1F08 40%, #3D2D10 100%); */
}
.slide-3::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 55%, rgba(184,145,42,0.25) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 28 L32 30 L30 32 L28 30 Z' fill='%23B8912A' fill-opacity='0.06'/%3E%3C/svg%3E");
}

/* Decorative right-side geometric shape on each slide */
.slide-1::after, .slide-2::after, .slide-3::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.06;
}
/* .slide-1::after { background: linear-gradient(180deg, #B8912A, #D4A843); }
.slide-2::after { background: linear-gradient(180deg, #B8912A, #6EBF8A); }
.slide-3::after { background: linear-gradient(180deg, #D4A843, #B8912A); } */

.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 100%);
}

.slide-content {
  position: relative; z-index: 2;
  padding: 0 32px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

/* Content animations when slide becomes active */
.slide.active .hero-badge { animation: slideUp 0.6s ease 0.1s both; }
.slide.active .hero-title  { animation: slideUp 0.6s ease 0.25s both; }
.slide.active .hero-sub    { animation: slideUp 0.6s ease 0.4s both; }
.slide.active .hero-btns   { animation: slideUp 0.6s ease 0.52s both; }
@keyframes slideUp { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }

/* Hero content text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #18326899;
  border: 1px solid #fff;
  color: #fff;
  padding: 7px 18px; border-radius: 3px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-title {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700; line-height: 1.2;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title .gold { color: var(--gold-light); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 36px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn-primary {
  background: var(--gold); border-color: var(--gold);
  color: #0D1B2A; font-weight: 700;
}
.hero-btns .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* SLIDER ARROWS */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-70%);
  z-index: 10; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 22px; font-weight: 300;
  width: 52px; height: 52px;
  border-radius: 3px; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* DOTS */
.slider-dots {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer; transition: var(--transition); padding: 0;
}
.dot.active { background: var(--gold); width: 44px; }

/* STATS BAR at bottom of slider */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184,145,42,0.25);
}
.stats-inner {
  display: flex; align-items: center;
  padding: 18px 0; gap: 0;
}
.stats-inner .stat {
  flex: 1; text-align: center;
  border-right: none; margin-right: 0; padding-right: 0;
}
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.stats-inner .stat-num {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px; font-weight: 700; color: var(--gold-light);
  display: block; line-height: 1; margin-bottom: 3px;
}
.stats-inner .stat-label {
  font-size: 11px; color: rgba(255,255,255,0.55);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ===========================
   MOBILE NAV DROPDOWN FIX
   =========================== */
@media (max-width: 768px) {
  /* Hide all dropdown menus by default on mobile */
  .nav-links .dropdown-menu {
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--gold) !important;
    padding: 4px 0 4px 14px !important;
    margin: 4px 0 8px !important;
    background: transparent !important;
  }
  /* Show only when .open class is added via JS */
  .nav-links .dropdown-menu.open {
    display: block !important;
  }
  /* Make dropdown trigger look clickable */
  .nav-links .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Hero slider on mobile */
  .slide { height: 80vh; min-height: 520px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 18px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-dots { bottom: 72px; }
  .stats-inner { flex-wrap: wrap; padding: 12px 0; }
  .stats-inner .stat { min-width: 50%; padding: 6px 0; }
  .stat-divider { display: none; }
  .hero-stats-bar { position: relative; }
}


/* Facebook */
.fb i {
    color: #1877F2;
}



/* Twitter (X) */
.tw i {
    color: #000000;
}

/* LinkedIn */
.li i {
    color: #0A66C2;
}

/* YouTube */
.yt i {
    color: #FF0000;
}

/* Hover Effect */
a:hover i {
    transform: scale(1.2);
    opacity: 0.8;
}
