/* ===== BHAU BHAU BISCUITS - Main Stylesheet ===== */
/* System fonts only - no external font load */
:root {
  --primary: #F5A623;
  --primary-dark: #D4940A;
  --primary-light: #FFD080;
  --dark: #1C1007;
  --dark-brown: #3D2000;
  --white: #FFFFFF;
  --cream: #FFF8EE;
  --green: #2A6E28;
  --text: #2d2d2d;
  --text-light: #666;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', 'Noto Sans Gujarati', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: var(--primary-light);
  padding: 8px 0;
  font-size: 13px;
  text-align: center;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a {
  color: var(--primary-light);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--white); }
.top-bar .top-bar-right { display: flex; gap: 12px; align-items: center; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text .brand-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.nav-logo-text .brand-tagline {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary-dark);
  background: #FFF3D0;
}
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 25px !important;
}
.nav-cta:hover { background: #1d5c1b !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 12px 0 20px;
  border-top: 1px solid #f0e0c0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f0e8;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: #FFF3D0; color: var(--primary-dark); }
.mobile-nav .nav-cta-mobile {
  margin: 12px 20px 0;
  background: var(--green);
  color: var(--white) !important;
  text-align: center;
  border-radius: 25px;
  padding: 12px 20px !important;
  border-bottom: none !important;
}

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1C1007 0%, #3D2000 50%, #1C1007 100%);
  color: var(--white);
  padding: 70px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5A623' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero h1 span { color: var(--primary); }
.hero-gujarati {
  font-size: 1.6rem;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-desc {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.5); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { background: var(--primary); color: var(--dark); }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
}
.hero-stat .label { font-size: 12px; color: #aaa; }
.hero-image { text-align: center; position: relative; }
.hero-image img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.price-badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 4px solid var(--white);
}
.price-badge .price-amount { font-size: 1.5rem; line-height: 1; }
.price-badge .price-label { font-size: 10px; }

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .label {
  display: inline-block;
  background: #FFF3D0;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-dark .section-header .label { background: rgba(245,166,35,0.2); color: var(--primary); }
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header .gujarati { font-size: 1.4rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 12px; }
.section-dark .section-header .gujarati { color: var(--primary-light); }
.section-header p { color: var(--text-light); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-dark .section-header p { color: #bbb; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.2s;
  border: 2px solid #f0e8d8;
}
.product-card:hover { transform: translateY(-6px); }
.product-card-img {
  background: linear-gradient(135deg, #FFF3D0, #FFE0A0);
  padding: 30px;
  text-align: center;
}
.product-card-img img { max-height: 220px; object-fit: contain; }
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.product-card-body .gu-text { color: var(--primary-dark); font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.product-features { list-style: none; margin-bottom: 20px; }
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid #f5f0e8;
}
.product-features li:last-child { border-bottom: none; }
.product-features li .check { color: var(--green); font-size: 16px; }
.product-price { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.product-price .current { font-size: 2rem; font-weight: 900; color: var(--dark); }
.product-price .per { font-size: 13px; color: var(--text-light); }

/* ===== WHY US CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FFF3D0, #FFE0A0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}
.why-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.why-card .gu { font-size: 0.9rem; color: var(--primary-dark); font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== DELIVERY SECTION ===== */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.delivery-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(245,166,35,0.3);
  margin-bottom: 20px;
}
.delivery-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery-card p { color: #ccc; font-size: 14px; line-height: 1.6; }
.delivery-highlight {
  background: var(--primary);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

/* ===== HOW TO ORDER ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center;
  padding: 28px 16px;
  position: relative;
}
.step-card::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 38px;
  font-size: 1.5rem;
  color: var(--primary);
}
.step-card:last-child::after { display: none; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.step-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}
.author-name { font-weight: 800; font-size: 14px; }
.author-location { font-size: 12px; color: var(--text-light); }
.stars { color: var(--primary); font-size: 16px; margin-bottom: 10px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.cta-banner .gu { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; opacity: 0.85; }
.cta-banner p { font-size: 16px; margin-bottom: 30px; opacity: 0.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: var(--dark);
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark:hover { background: #2d1800; transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; }
.contact-info .gu { font-size: 1.1rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}
.contact-item-text a:hover { color: var(--primary-dark); }
.phone-list { display: flex; flex-direction: column; gap: 4px; }
.phone-list a {
  font-size: 15px !important;
  font-weight: 700;
  color: var(--dark) !important;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 350px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 350px; border: 0; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.footer-brand .brand-name { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: #999; line-height: 1.7; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover { background: var(--primary); }
.footer-col h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #999; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--primary); margin-top: 2px; font-size: 14px; flex-shrink: 0; }
.footer-contact-item p { color: #999; font-size: 13px; line-height: 1.5; }
.footer-contact-item a { color: #ccc; text-decoration: none; font-size: 14px; font-weight: 600; }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: #666; }
.footer-bottom a { color: var(--primary-light); text-decoration: none; }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.4); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--primary); }
.float-btn .tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .tooltip { opacity: 1; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-brown) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 8px; }
.page-hero .gu { font-size: 1.3rem; color: var(--primary-light); font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: #ccc; font-size: 16px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: #999; margin-top: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary-light); text-decoration: none; }
.breadcrumb span { color: #666; }

/* ===== CARDS GRID ===== */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== GENERIC CARD ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.about-story-text h2 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.about-story-text .gu { color: var(--primary-dark); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.about-story-text p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.about-mission-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--dark);
  text-align: center;
}
.about-mission-card h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.about-mission-card p { font-size: 15px; line-height: 1.7; opacity: 0.85; }

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  color: var(--dark);
}
.faq-question:hover { background: #FFF8EE; }
.faq-question.open { background: #FFF3D0; color: var(--dark-brown); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--text-light); line-height: 1.7; }
.faq-arrow { transition: transform 0.3s; font-size: 12px; }
.faq-arrow.open { transform: rotate(180deg); }

/* ===== NOTICE / ALERT ===== */
.notice {
  background: #FFF3D0;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--dark-brown);
  margin-bottom: 20px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; font-size: 12px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .hero-gujarati { font-size: 1.3rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .price-badge { right: 50%; transform: translateX(50%); }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 50px 0; }
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 1.7rem; }
  .cta-banner h2 { font-size: 1.5rem; }
}

/* ===== ONLINE ORDER BUTTON ===== */
.btn-online-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a1a2e;
  color: #F5A623;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid #F5A623;
  transition: all 0.2s;
  margin-top: 10px;
}
.btn-online-order:hover {
  background: #F5A623;
  color: #1a1a2e;
  transform: translateY(-2px);
}
