/* ==========================================================================
   Jaipur Packaging - Modern Industrial B2B CSS Design System
   Brand: Jaipur Packaging (A packaging initiative by Shree Shyam Coroplast)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --color-primary: #b87a38;        /* Kraft Cardboard Ochre / Amber Accent */
  --color-primary-dark: #8f5b24;   /* Deep Kraft / Sienna */
  --color-primary-light: #f5eedf;  /* Light Kraft Wash / Warm Tint */
  --color-primary-glow: rgba(184, 122, 56, 0.18);

  --color-secondary: #1e293b;      /* Industrial Slate Charcoal */
  --color-secondary-dark: #0f172a; /* Deep Charcoal Black */
  --color-secondary-light: #334155;/* Medium Slate */

  --color-accent-blue: #0284c7;    /* Trust Blue */
  --color-whatsapp: #25d366;       /* WhatsApp Brand Green */
  --color-whatsapp-dark: #128c7e;

  /* Neutral Backgrounds & Surfaces */
  --bg-page: #ffffff;
  --bg-page-alt: #f8fafc;
  --bg-page-warm: #faf7f2;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfbf9;
  --bg-dark-surface: #111827;
  --bg-dark-surface-card: #1f2937;

  /* Text Colors */
  --text-main: #1e293b;            /* High Contrast Charcoal */
  --text-muted: #64748b;           /* Slate Muted */
  --text-light: #94a3b8;           /* Light Muted */
  --text-white: #ffffff;
  --text-white-muted: #cbd5e1;

  /* Borders & Dividers */
  --border-color: #e2e8f0;
  --border-color-warm: #ebdcc9;
  --border-color-dark: #374151;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(15, 23, 42, 0.08), 0 1px 3px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --shadow-warm: 0 10px 25px -3px rgba(184, 122, 56, 0.12);

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transition Speeds */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Modern Reset & Base Elements
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 3.8vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
p:last-child {
  margin-bottom: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 860px;
}

/* --------------------------------------------------------------------------
   3. Utility Badges, Buttons & Typography
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.section-bg-alt {
  background-color: var(--bg-page-alt);
}

.section-bg-warm {
  background-color: var(--bg-page-warm);
}

.section-bg-dark {
  background-color: var(--bg-dark-surface);
  color: var(--text-white-muted);
}
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: var(--text-white);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-header p {
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
  background-color: var(--color-primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-color-warm);
}

.section-kicker-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-primary-light);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(184, 122, 56, 0.35);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px 0 rgba(184, 122, 56, 0.45);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.btn-outline:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.btn-outline-warm {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.btn-outline-warm:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
}
.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. Top Announcement Bar & Sticky Header
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--color-secondary-dark);
  color: var(--text-white-muted);
  font-size: 0.825rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar a:hover {
  color: var(--text-white);
}
.top-bar-brand-link {
  color: var(--color-primary-light);
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-secondary-dark);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.brand-name span {
  color: var(--color-primary);
}
.brand-tagline {
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-top: 2px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.935rem;
  font-weight: 600;
  color: var(--color-secondary);
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-dark);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 250px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 1050;
}
.dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition-fast);
}
.dropdown-link:hover {
  background-color: var(--bg-page-warm);
  color: var(--color-primary-dark);
  padding-left: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-secondary-dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #faf6f0 55%, #f1ebe1 100%);
  padding: 4.5rem 0 5rem;
  border-bottom: 1px solid var(--border-color-warm);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  color: var(--color-secondary-dark);
}

.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  border-top: 1px solid var(--border-color-warm);
  padding-top: 1.75rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.25;
}

/* Hero Visual Box Graphic */
.hero-visual {
  position: relative;
}
.hero-card-display {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color-warm);
  box-shadow: var(--shadow-lg);
}
.hero-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-page-warm);
  position: relative;
}
.hero-floating-stat {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--color-secondary-dark);
  color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-floating-stat strong {
  display: block;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--color-primary-light);
}
.hero-floating-stat span {
  font-size: 0.775rem;
  color: var(--text-white-muted);
}

/* --------------------------------------------------------------------------
   6. Trust Brand Intro Section
   -------------------------------------------------------------------------- */
.brand-intro-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}
.brand-intro-card {
  background: linear-gradient(135deg, #fdfbf7 0%, #f7f2e9 100%);
  border: 1.5px solid var(--border-color-warm);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
.brand-intro-badge {
  background-color: var(--color-secondary-dark);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 200px;
}
.brand-intro-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary-light);
  display: block;
  margin-bottom: 0.25rem;
}
.brand-intro-badge .entity {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
}
.brand-intro-text h2 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary-dark);
}
.brand-intro-text p {
  font-size: 0.975rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. About Snippet / Detailed Cards
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.about-feature-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}
.about-feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.about-feature-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. Product Grid & Product Cards
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color-warm);
}

.product-card-media {
  height: 190px;
  background-color: var(--bg-page-warm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.product-card-media svg,
.product-card-media img {
  max-height: 150px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}
.product-card:hover .product-card-media svg,
.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-card-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #ffffff;
  color: var(--color-primary-dark);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color-warm);
  box-shadow: var(--shadow-xs);
}

.product-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary-dark);
}
.product-card-title a:hover {
  color: var(--color-primary-dark);
}
.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.product-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.product-card-link:hover {
  color: var(--color-primary-dark);
}

/* --------------------------------------------------------------------------
   9. Custom Packaging & Interactive Specifier
   -------------------------------------------------------------------------- */
.custom-spec-wrapper {
  background: #ffffff;
  border: 1.5px solid var(--border-color-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.custom-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dimension-diagram-container {
  background: var(--bg-page-warm);
  border: 1px solid var(--border-color-warm);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  position: relative;
}
.dimension-svg-box {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.spec-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.spec-point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
}
.spec-point-icon {
  color: var(--color-primary);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   10. How It Works (4-Step Flow)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-fast);
}
.step-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--color-secondary-dark);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. Industries Grid
   -------------------------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-fast);
}
.industry-card:hover {
  border-color: var(--color-primary);
  background-color: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.industry-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--color-secondary-dark);
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. Why Choose Us (6 Pillars)
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--color-primary);
  transition: all var(--transition-fast);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-icon {
  width: 42px;
  height: 42px;
  background-color: var(--bg-page-warm);
  color: var(--color-primary-dark);
  border: 1px solid var(--border-color-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  font-weight: bold;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   13. Jaipur Local SEO & Service Area
   -------------------------------------------------------------------------- */
.local-seo-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-sm);
}

.local-seo-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.local-seo-box p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.industrial-hubs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
.hub-tag {
  background-color: var(--bg-page-warm);
  border: 1px solid var(--border-color-warm);
  color: var(--color-secondary-dark);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.service-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.city-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.city-card::before {
  content: "•";
  color: var(--color-primary);
  font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   14. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item.active {
  border-color: var(--border-color-warm);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question:hover {
  color: var(--color-primary-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--bg-page-alt);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--color-primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
  background-color: #fafbfc;
}
.faq-item.active .faq-answer {
  padding: 0.5rem 1.5rem 1.35rem;
}
.faq-answer p {
  font-size: 0.935rem;
  line-height: 1.65;
  color: var(--text-main);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   15. Lead Quote Form & Section
   -------------------------------------------------------------------------- */
.quote-section {
  position: relative;
}

.quote-box-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  background: #ffffff;
  border: 1.5px solid var(--border-color-warm);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.quote-info-side h2 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}
.quote-info-side p {
  font-size: 0.975rem;
  margin-bottom: 1.75rem;
}

.quote-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.quote-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.quote-trust-item strong {
  display: block;
  color: var(--color-secondary-dark);
}

.quote-whatsapp-banner {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}
.quote-whatsapp-banner p {
  font-size: 0.875rem;
  color: #166534;
  margin-bottom: 0.75rem;
}

/* Form Styles */
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.form-label span.req {
  color: #dc2626;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  background-color: #ffffff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-dim-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.form-submit-row {
  grid-column: span 2;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   16. Breadcrumbs & Inner Page Headers
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #faf6f0 100%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border-color-warm);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumbs a:hover {
  color: var(--color-primary-dark);
}
.breadcrumbs .sep {
  color: var(--text-light);
}
.breadcrumbs .current {
  color: var(--color-secondary-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   17. Technical Specifications Table
   -------------------------------------------------------------------------- */
.spec-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  margin: 1.5rem 0;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}
.spec-table th {
  background-color: var(--bg-page-warm);
  color: var(--color-secondary-dark);
  font-weight: 700;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border-color-warm);
}
.spec-table td {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:nth-child(even) {
  background-color: #fafbfc;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-secondary-dark);
  color: var(--text-white-muted);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .brand-name {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.footer-brand .brand-tagline {
  color: var(--color-primary-light);
  font-size: 0.825rem;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-initiative-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #ffffff;
}
.footer-initiative-box strong {
  color: var(--color-primary-light);
  display: block;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-white-muted);
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   19. Mobile Sticky CTA Bar
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--border-color);
  padding: 0.65rem 1rem;
  z-index: 999;
}
.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 0.5rem;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   20. Modal Quote Popup
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 1.5rem;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-page-alt);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
