/* ===== SPA NEELDHARA - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Hindi:ital@0;1&family=Poppins:wght@400;500;600;700;800&family=Baloo+2:wght@400;600;700;800&display=swap');

:root {
  --red: #C0182A;
  --red-dark: #8B0000;
  --green: #1B6B2F;
  --green-light: #2d8a45;
  --gold: #D4A017;
  --yellow: #F5E642;
  --orange: #E8720C;
  --cream: #FFF8E7;
  --white: #FFFFFF;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f4f4f4;
  --border: #ddd;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 10px;
  --radius-lg: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.hindi { font-family: 'Baloo 2', 'Tiro Devanagari Hindi', sans-serif; }

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 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--red-dark);
  color: white;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: white; }
.top-bar a:hover { color: var(--yellow); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar i { margin-right: 5px; }

/* ===== HEADER ===== */
header {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-wrap img {
  height: 70px;
  width: auto;
}
.logo-text h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 22px;
  color: var(--red);
  font-weight: 800;
  line-height: 1.2;
}
.logo-text p {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.2s;
}
.header-phone:hover { background: var(--red-dark); color: white; }
.header-phone i { font-size: 20px; }

/* ===== NAVIGATION ===== */
nav {
  background: var(--red);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links li a {
  display: block;
  color: white;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.2s;
  text-transform: uppercase;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: var(--red-dark);
  color: var(--yellow);
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.2s;
}
.nav-cta:hover { background: var(--green-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 14px 20px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* ===== BANNER SLIDER ===== */
.slider-section {
  position: relative;
  overflow: hidden;
  background: #111;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(192,24,42,0.85);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
  border: none;
}
.dot.active { background: white; transform: scale(1.3); }

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .tag {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-title h2 span { color: var(--red); }
.section-title p {
  font-size: 16px;
  color: var(--gray);
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 30px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.2);
}
.feature-item {
  background: transparent;
  padding: 24px 20px;
  text-align: center;
  color: white;
}
.feature-item i {
  font-size: 32px;
  color: var(--yellow);
  margin-bottom: 10px;
}
.feature-item h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p { font-size: 13px; opacity: 0.88; }

/* ===== PRODUCTS ===== */
.products-section {
  padding: 72px 0;
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
  padding: 10px;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-info { padding: 20px; }
.product-info h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-info .subtitle {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-info .desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag-pill {
  font-size: 11px;
  background: var(--light-gray);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  text-decoration: none;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); color: white; }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-light); color: white; }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: white; }
.btn-full { width: 100%; justify-content: center; }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: white;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  border: 4px solid white;
}
.about-badge .num {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.about-badge .lbl { font-size: 11px; font-weight: 600; }
.about-content h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}
.about-content h2 span { color: var(--red); }
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border-left: 4px solid var(--red);
}
.stat-box .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  font-family: 'Baloo 2', sans-serif;
}
.stat-box .lbl { font-size: 12px; color: var(--gray); font-weight: 600; margin-top: 2px; }
.about-list { margin-bottom: 24px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray);
}
.about-list li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

/* ===== WHY US ===== */
.why-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1010 100%);
  color: white;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: 0.3s;
  text-align: center;
}
.why-card:hover {
  background: rgba(192,24,42,0.2);
  border-color: var(--red);
  transform: translateY(-4px);
}
.why-card .icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}
.why-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--yellow);
}
.why-card p { font-size: 13px; opacity: 0.8; line-height: 1.7; }
.why-section .section-title h2 { color: white; }
.why-section .section-title p { color: rgba(255,255,255,0.7); }
.why-section .section-title .tag { background: var(--yellow); color: var(--dark); }

/* ===== DEALER SECTION ===== */
.dealer-section {
  padding: 72px 0;
  background: var(--cream);
}
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.dealer-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
  transition: 0.3s;
}
.dealer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dealer-card .icon {
  font-size: 42px;
  color: var(--red);
  margin-bottom: 16px;
}
.dealer-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.dealer-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.dealer-card .btn { margin-top: 18px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: white; color: var(--red); font-weight: 800; }
.btn-white:hover { background: var(--cream); color: var(--red); }
.btn-outline-white { background: transparent; color: white; border: 2px solid white; }
.btn-outline-white:hover { background: white; color: var(--red); }

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: rgba(255,255,255,0.8);
}
.footer-main {
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand .brand-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: 0.2s;
}
.social-link:hover { background: var(--red); color: white; }
.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:before {
  content: '›';
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
}
.footer-col ul li a:hover { color: white; padding-left: 4px; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.contact-info li i {
  color: var(--yellow);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  transition: 0.2s;
}
.footer-bottom-links a:hover { color: white; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}
.page-hero h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p { font-size: 16px; opacity: 0.85; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 14px;
  opacity: 0.8;
}
.breadcrumb a { color: white; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.6; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 72px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.contact-info-box {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: white;
  height: fit-content;
}
.contact-info-box h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
}
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.cinfo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cinfo-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cinfo-text p, .cinfo-text a { font-size: 13px; opacity: 0.85; line-height: 1.6; color: white; }
.cinfo-text a:hover { opacity: 1; text-decoration: underline; }
.contact-social { margin-top: 28px; }
.contact-social p { font-size: 13px; margin-bottom: 12px; opacity: 0.8; }
.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--dark);
  transition: 0.2s;
  outline: none;
  background: var(--light-gray);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(192,24,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: var(--green);
  font-weight: 600;
  margin-top: 16px;
}

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 60px 0; }
.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: white; }

/* ===== ABOUT PAGE ===== */
.about-page-section { padding: 72px 0; }
.about-page-section:nth-child(even) { background: var(--cream); }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.vision-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: 0.3s;
}
.vision-card:hover { transform: translateY(-3px); }
.vision-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.vision-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.vision-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 60px 0; }
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.legal-content h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 28px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul { margin: 10px 0 16px 20px; }
.legal-content ul li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 6px;
}
.legal-date {
  display: inline-block;
  background: var(--light-gray);
  font-size: 13px;
  color: var(--gray);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--red-dark);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-cta { display: none; }
  nav { position: relative; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dealer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .slide img { height: 240px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title h2 { font-size: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .legal-content { padding: 28px 20px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .dealer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .logo-wrap img { height: 50px; }
  .header-phone { font-size: 15px; padding: 8px 14px; }
  .top-bar .top-bar-left { display: none; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
