/*
Theme Name: Mahaan Industries
Theme URI: https://example.com/mahan-industries
Author: Mahaan Industries
Author URI: https://example.com
Description: Mahaan Industries — Agricultural Equipment Manufacturer. किसानों के लिए टिकाऊ और किफायती कृषि यंत्रों का विश्वसनीय निर्माता। Mobile-first theme with Hindi/English support, WhatsApp integration and product showcase.
Version: 1.0.0
Requires at least: 5.5
Tested up to: 6.4
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mahan-industries
Tags: agriculture, business, one-column, custom-menu, featured-images, translation-ready
*/

/* ============================================================
   Mahaan Industries — Agricultural Equipment Manufacturer
   Theme: Green + White
   ============================================================ */

:root {
  --green-dark: #14532d;
  --green: #15803d;
  --green-light: #22c55e;
  --green-pale: #ecfdf5;
  --white: #ffffff;
  --ink: #1c2b21;
  --ink-soft: #4b5d51;
  --line: #e5e7eb;
  --amber: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(16, 44, 28, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 44, 28, 0.10);
  --shadow-lg: 0 16px 40px rgba(16, 44, 28, 0.14);
  --radius: 14px;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans Devanagari", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Language-specific bits ---------- */
[data-lang="hi"] .lang-en { display: none; }
[data-lang="en"] .lang-hi { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--green-pale); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  display: grid; place-items: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
}
.brand-text { line-height: 1.15; display: block; min-width: 0; }
.brand-name { font-weight: 800; font-size: 17px; color: var(--ink); display: block; }
.brand-tagline { font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: .4px; display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.nav-links a.active { color: var(--green); background: var(--green-pale); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.lang-toggle:hover { background: var(--green-pale); border-color: var(--green); }

.nav-cta { padding: 10px 22px; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(34, 197, 94, 0.16), transparent 55%),
    linear-gradient(120deg, #f0fdf4 0%, #ffffff 55%, #f0fdf4 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 84px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid #bbf7d0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero p.lead { font-size: 17px; color: var(--ink-soft); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat .num { font-size: 26px; font-weight: 800; color: var(--green-dark); }
.stat .lbl { font-size: 13px; color: var(--ink-soft); }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.hero-badge b { color: var(--green-dark); }
.hero-badge.tl { top: 6%; left: 0; animation: float 5s ease-in-out infinite; }
.hero-badge.br { bottom: 8%; right: 0; animation: float 6s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Minimal hero (front page) ---------- */
.hero-mini {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 76px 0 60px;
}
.hero-mini h1 {
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-mini h1 em { color: var(--green); font-style: normal; }
.hero-mini p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 30px;
}
.hero-mini .hero-cta { justify-content: center; }
.hero-mini .hero-stats { justify-content: center; gap: 40px; }

/* ---------- Section headers ---------- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .kicker {
  color: var(--green); font-weight: 800; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.2; }
.section-head p { color: var(--ink-soft); margin-top: 12px; }

.bg-pale { background: var(--green-pale); }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.product-media {
  height: 190px;
  background: linear-gradient(135deg, #d1fae5 0%, #bbf7d0 100%);
  display: grid;
  place-items: center;
  font-size: 64px;
  color: var(--green);
  position: relative;
}
.product-media img.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.product-body p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; flex: 1; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.product-meta .btn-mini {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  transition: background .15s, color .15s;
}
.product-meta .btn-mini:hover { background: var(--green); color: var(--white); }

/* ---------- Features (why choose us) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--ink-soft); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.step {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 20px;
  position: relative;
}
.step-num {
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
.cta-band p { opacity: .92; margin-top: 6px; max-width: 480px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.info-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.info-icon {
  flex: 0 0 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  display: grid; place-items: center;
  border-radius: 10px;
  font-size: 18px;
}
.info-row .t { font-size: 12px; opacity: .75; text-transform: uppercase; letter-spacing: .5px; }
.info-row .v { font-weight: 600; font-size: 15px; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fafdfb;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Map placeholder ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0f2617;
  color: #cfe3d8;
  margin-top: 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 56px 0 40px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 300px; opacity: .85; }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: .8;
}

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.55); }
.wa-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(0.85); opacity: 1; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ---------- Mobile bottom navigation ---------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(16, 44, 28, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mobile-bottom-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  -webkit-tap-highlight-color: transparent;
}
.mobile-bottom-nav a .icon {
  width: 20px !important;
  height: 20px !important;
  display: block;
  flex-shrink: 0;
  max-width: none;
  max-height: none;
}
.mobile-bottom-nav a.active { color: var(--green); }
.mobile-bottom-nav a.active .pill {
  position: absolute;
  top: 4px;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

/* ---------- About page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-intro h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.about-intro p { color: var(--ink-soft); margin-bottom: 14px; }
.about-intro ul { margin-top: 12px; display: grid; gap: 10px; }
.about-intro li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-weight: 500; font-size: 15px; }
.about-intro li::before { content: '✔'; color: var(--green); font-weight: 800; }
.about-visual {
  background: linear-gradient(135deg, #d1fae5, #bbf7d0);
  border-radius: 20px;
  display: grid;
  place-items: center;
  min-height: 340px;
  font-size: 110px;
  color: var(--green);
}

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
.mv-card .mv-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 26px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.mv-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.mv-card p { color: var(--ink-soft); font-size: 15px; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-story h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 16px; }
.about-story p { color: var(--ink-soft); margin-bottom: 14px; }
.about-story img, .about-story .visual-placeholder {
  background: linear-gradient(135deg, #d1fae5, #bbf7d0);
  border-radius: 20px;
  min-height: 300px;
  display: grid;
  place-items: center;
  font-size: 90px;
  color: var(--green);
}

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .value-icon { font-size: 34px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-soft); }

.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--green-light), var(--green));
}
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px; top: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--green-pale);
}
.timeline-year {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.timeline-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--ink-soft); font-size: 14px; }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.process-step { text-align: center; padding: 24px 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.process-step .icon { font-size: 34px; margin-bottom: 10px; }
.process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--ink-soft); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  height: 150px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  display: grid;
  place-items: center;
  font-size: 60px;
  color: var(--white);
}
.team-card h3 { font-size: 17px; font-weight: 700; margin-top: 16px; }
.team-card .role { color: var(--green); font-weight: 600; font-size: 13px; margin: 4px 0 14px; }
.team-card p { color: var(--ink-soft); font-size: 13px; padding: 0 18px 20px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 999;
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE — Mobile-first (90%+ users mobile)
   ============================================================ */

/* ---- Small phones: everything below 480px ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 26px; }
  .section-head p { font-size: 15px; }

  .btn { width: 100%; padding: 14px 18px; font-size: 15px; }
  .hero-mini { padding: 44px 0 40px; }
  .hero-mini h1 { font-size: 28px; }
  .hero-mini p.lead { font-size: 15px; }
  .hero-stats { gap: 22px; justify-content: space-around; }
  .stat .num { font-size: 22px; }
  .hero-visual svg { width: 240px; height: 240px; }
  .hero-badge { padding: 9px 12px; font-size: 12px; }
  .hero-badge.tl { top: 2%; }
  .hero-badge.br { bottom: 4%; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-media { height: 120px; font-size: 44px; }
  .product-body { padding: 14px 12px; }
  .product-body h3 { font-size: 15px; margin-bottom: 6px; }
  .product-body p { font-size: 12px; line-height: 1.5; margin-bottom: 10px; }
  .product-meta { flex-direction: column; align-items: stretch; gap: 8px; padding-top: 10px; }
  .product-meta > span { font-size: 11px; }
  .product-meta .btn-mini { width: 100%; text-align: center; padding: 9px 10px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature { padding: 20px 14px; }
  .feature-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 10px; }
  .feature h3 { font-size: 14px; }
  .feature p { font-size: 12px; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .step { padding: 24px 12px; }
  .step-num { width: 40px; height: 40px; font-size: 16px; margin-bottom: 12px; }
  .step h3 { font-size: 14px; }
  .step p { font-size: 12px; }

  .cta-band { padding: 28px 20px; text-align: center; justify-content: center; }
  .cta-band h2 { font-size: 22px; }
  .cta-band .btn { width: 100%; }

  .contact-form-card { padding: 24px 18px; }
  .contact-info-card { padding: 24px 20px; }
  .map-wrap iframe { height: 240px; }

  .footer-main { grid-template-columns: 1fr; gap: 26px; padding: 44px 0 30px; }

  /* About page mobile */
  .about-intro, .about-story { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .about-intro ul { text-align: left; }
  .about-visual { min-height: 220px; font-size: 80px; }
  .mv-grid { grid-template-columns: 1fr; gap: 16px; }
  .mv-card { padding: 26px 22px; }
  .about-values { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .value-card { padding: 20px 14px; }
  .value-card h3 { font-size: 14px; }
  .value-card p { font-size: 12px; }
  .team-card p { font-size: 12px; }
  .timeline { padding-left: 26px; }
}

/* ---- Tablets / small laptops ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0 60px; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

/* ---- Phones: hamburger nav + bottom bar ---- */
@media (max-width: 720px) {
  body { padding-bottom: 66px; } /* bottom nav ke liye space */

  .nav-toggle { display: flex; }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
  .brand-name { font-size: 15px; }
  .brand-tagline { font-size: 10px; letter-spacing: .2px; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 16px; } /* bada touch target */
  .nav-cta { display: none; }
  .nav-actions .lang-toggle { padding: 9px 14px; font-size: 13px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 14px; } /* iOS zoom fix */
  .form-group label { font-size: 14px; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 36px 24px; }

  /* Bottom nav + FAB sirf phone pe */
  .mobile-bottom-nav { display: block; }
  .wa-fab { bottom: 78px; width: 56px; height: 56px; font-size: 27px; right: 14px; }
}

/* ---- Large screens: hide mobile-only elements ---- */
@media (min-width: 721px) {
  .mobile-bottom-nav { display: none !important; }
}

/* ---------- Desktop hover: only for pointer devices ---------- */
@media (hover: hover) and (pointer: fine) {
  .wa-fab { bottom: 24px; }
}
