/* =========================================================================
   SHANTANU PACKERS AND MOVERS — OFFICIAL PREMIUM DESIGN SYSTEM
   Visual Architecture: High-Converting, MRL-Inspired Structure
   Branding: Vibrant Shantanu Orange (#EA580C / #F97316) + Pure White + Slate
   MSME Registration: UDYAM-MH-17-0244739 | Nalasopara East, Palghar, Mumbai
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================================
   1. DESIGN TOKENS
   ========================================================================= */
:root {
  /* Brand Primary - Shantanu Orange */
  --primary:        #EA580C;
  --primary-hover:  #C2410C;
  --primary-light:  #FFF7ED;
  --primary-border: #FED7AA;
  --primary-glow:   rgba(234, 88, 12, 0.22);

  /* Secondary Accent - WhatsApp & Success Green */
  --green:          #10B981;
  --green-hover:    #059669;
  --green-light:    #ECFDF5;
  --green-border:   #A7F3D0;

  /* Neutral Surfaces */
  --bg-page:        #F8FAFC;
  --bg-card:        #FFFFFF;
  --bg-alt:         #F1F5F9;

  /* Dark Surfaces (Hero Left Card, UDYAM Bar, Footer) */
  --dark-950:       #020617;
  --dark-900:       #0B132B;
  --dark-850:       #0F172A;
  --dark-800:       #1E293B;

  /* Text Colors */
  --text-main:      #0F172A;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --text-white:     #FFFFFF;

  /* Borders & Dividers */
  --border-light:   #E2E8F0;
  --border-subtle:  #CBD5E1;

  /* Typography */
  --font-head:      'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  /* Border Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   24px;
  --r-2xl:  30px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-subtle:  0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-card:    0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg:      0 20px 40px rgba(15, 23, 42, 0.09);
  --shadow-orange:  0 8px 24px rgba(234, 88, 12, 0.25);
  --shadow-green:   0 8px 24px rgba(16, 185, 129, 0.25);

  /* Transitions */
  --t: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1280px;
}

/* =========================================================================
   2. RESET & BASE (Mobile-First & Touch Safe)
   ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }
img, picture, video, canvas, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* =========================================================================
   3. CONTAINER & SECTION LAYOUT
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 2.5rem);
  padding-right: clamp(1rem, 3.5vw, 2.5rem);
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 3rem) 0; }
.section-alt { background-color: var(--bg-alt); }
.section-white { background-color: #FFFFFF; }
.section-dark { background-color: var(--dark-900); color: var(--text-white); }

/* Section Header */
.sec-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
}
.sec-header.left { text-align: left; margin-left: 0; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1.8vw, 0.74rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.badge-pill.orange {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}
.badge-pill.green {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-border);
}
.badge-pill.dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3.2vw + 0.4rem, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}
.section-dark .sec-title { color: var(--text-white); }

.sec-desc {
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}
.sec-header.left .sec-desc { margin-left: 0; }
.section-dark .sec-desc { color: var(--text-light); }

/* =========================================================================
   4. REUSABLE RESPONSIVE GRIDS (Zero Inline Breakage)
   ========================================================================= */
.grid-2-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 868px) {
  .grid-2-split { grid-template-columns: 1fr; }
}

.grid-2-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
@media (max-width: 640px) {
  .grid-2-form { grid-template-columns: 1fr; }
}

.grid-2-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .grid-2-mini { grid-template-columns: 1fr; }
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 1024px) {
  .grid-3-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3-col { grid-template-columns: 1fr; }
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.25rem);
}
@media (max-width: 1024px) {
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4-col { grid-template-columns: 1fr; }
}

.service-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.service-row-split:last-child { margin-bottom: 0; }
@media (max-width: 868px) {
  .service-row-split { grid-template-columns: 1fr; }
}

/* =========================================================================
   5. BUTTONS (Touch Targets >= 44px)
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.45rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.35);
  color: #FFFFFF;
}

.btn-green {
  background: var(--green);
  color: #FFFFFF;
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}
.btn-green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: #FFFFFF;
}

.btn-phone {
  background: var(--bg-alt);
  color: var(--text-main);
  border-color: var(--border-light);
}
.btn-phone:hover {
  background: #E2E8F0;
  color: var(--text-main);
}

.btn-outline-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-light);
}
.btn-outline:hover {
  background: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  min-height: 44px;
}
.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  min-height: 52px;
}
.btn-full { width: 100%; }

/* =========================================================================
   6. TOP INFORMATION BAR
   ========================================================================= */
.top-info-bar {
  background-color: var(--dark-900);
  color: var(--text-light);
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 500;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.top-link {
  color: var(--text-white);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.top-link:hover { color: var(--primary); }

@media (max-width: 820px) {
  .top-info-bar { display: none; }
}

/* =========================================================================
   7. NAVBAR
   ========================================================================= */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.brand-name span { color: var(--primary); }
.brand-tag {
  font-family: var(--font-head);
  font-size: clamp(0.5rem, 1.2vw, 0.58rem);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Navigation Links */
.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}

.nav-item {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-full);
  transition: var(--t);
  text-decoration: none;
  position: relative;
}
.nav-item:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-item.active {
  background: var(--primary);
  color: #FFFFFF;
}
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFFFFF;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--t);
}
.dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-actions .btn-phone,
.nav-actions .btn-green {
  display: none;
}
@media (min-width: 1180px) {
  .nav-actions .btn-phone,
  .nav-actions .btn-green {
    display: inline-flex;
  }
}
@media (min-width: 820px) {
  .nav-actions .btn-green {
    display: inline-flex;
  }
}
@media (max-width: 540px) {
  .nav-actions .btn-primary {
    display: none;
  }
  .brand-img {
    height: 44px;
  }
  .brand-name {
    font-size: 1.08rem;
  }
  .brand-tag {
    font-size: 0.52rem;
  }
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  color: var(--text-main);
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .hamburger-btn { display: none; }
}

/* =========================================================================
   8. HERO SECTION (Split Grid & Fluid Touch Optimization)
   ========================================================================= */
.hero-wrapper {
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(1.75rem, 4vw, 3rem) 0;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .hero-split-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Left Hero Card (Light Orange Background) */
.hero-left-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: linear-gradient(145deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1.5px solid var(--primary-border);
  border-radius: var(--r-2xl);
  padding: clamp(1.35rem, 4vw, 2.5rem) clamp(1rem, 3.5vw, 2.25rem);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.08);
  position: relative;
  overflow: hidden;
  overflow-wrap: break-word;
}
.hero-left-card::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-top-badges {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}
.hero-badge-red {
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: clamp(0.62rem, 1.8vw, 0.7rem);
  font-weight: 800;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.2);
}
.hero-badge-dark {
  background: #FFFFFF;
  border: 1.5px solid var(--primary-border);
  color: #C2410C;
  font-family: var(--font-head);
  font-size: clamp(0.62rem, 1.8vw, 0.7rem);
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.06);
}
.hero-badge-dark svg {
  color: var(--primary);
}

.hero-main-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw + 0.3rem, 2.55rem);
  font-weight: 900;
  line-height: 1.16;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}
.hero-main-title .orange-highlight {
  color: var(--primary);
  display: block;
}

.hero-lead-text {
  font-size: clamp(0.85rem, 1.8vw, 0.94rem);
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 500px;
}

.hero-checks {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  background: #FFFFFF;
  border: 1px solid var(--primary-border);
  color: var(--text-main);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.06);
}
.hero-check-pill svg { color: var(--green); width: 14px; height: 14px; }

.hero-buttons-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero-left-card {
    padding: 1.25rem 1rem;
  }
  .hero-top-badges {
    margin-bottom: 0.75rem;
  }
  .hero-main-title {
    font-size: clamp(1.4rem, 5.5vw, 1.75rem);
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }
  .hero-lead-text {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }
  .hero-checks {
    gap: 0.35rem;
    margin-bottom: 1.15rem;
  }
  .hero-check-pill {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }
  .hero-buttons-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-buttons-row .btn {
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }
}

/* Right Hero Card: Instant Quote */
.hero-quote-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.15rem, 2.5vw, 1.85rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.quote-card-title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.28rem);
  font-weight: 800;
  color: var(--text-main);
}
.quote-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.input-ctrl {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 1rem; /* 16px to prevent iOS zoom jump */
  color: var(--text-main);
  transition: var(--t);
  outline: none;
  min-height: 48px;
  box-sizing: border-box;
}
.input-ctrl:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.input-ctrl::placeholder { color: var(--text-light); }

.quote-bottom-strip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.quote-bottom-strip svg { color: var(--green); width: 15px; height: 15px; flex-shrink: 0; }

/* =========================================================================
   9. STATS & REVIEWS HIGHLIGHT STRIP
   ========================================================================= */
.highlight-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(1rem, 2vw, 1.25rem);
  margin-top: 1.25rem;
}
@media (max-width: 992px) {
  .highlight-stats-grid { grid-template-columns: 1fr; }
}

.stats-red-card {
  background: linear-gradient(135deg, var(--primary) 0%, #DC2626 100%);
  color: #FFFFFF;
  border-radius: var(--r-xl);
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--shadow-orange);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.stat-box { text-align: center; }
.stat-val {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  opacity: 0.9;
}

.testimonial-preview-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 1.35rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
}
.preview-quote {
  font-size: 0.88rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}
.preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--green);
  background: var(--green-light);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
}

/* =========================================================================
   10. UDYAM REGISTRATION SPOTLIGHT BANNER
   ========================================================================= */
.udyam-banner {
  background: var(--dark-900);
  border-radius: var(--r-xl);
  padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .udyam-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .udyam-actions {
    width: 100%;
  }
  .udyam-actions .btn {
    width: 100%;
  }
}
.udyam-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.udyam-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F97316;
  flex-shrink: 0;
}
.udyam-title {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 1.8vw, 0.92rem);
  font-weight: 800;
  color: #FFFFFF;
}
.udyam-title span { color: #F97316; }
.udyam-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}
.udyam-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* =========================================================================
   11. COMPACT FEATURE & SERVICE CARDS
   ========================================================================= */
.feature-white-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.2rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: var(--t);
}
.feature-white-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-border);
}
.feature-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.feature-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 6-Grid Services */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 1024px) { .services-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid-3 { grid-template-columns: 1fr; } }

.mrl-service-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.2rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: var(--t);
}
.mrl-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-card);
}
.srv-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.srv-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.srv-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.srv-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--t);
  min-height: 44px;
}
.srv-learn-link:hover { gap: 0.6rem; color: var(--primary-hover); }

/* =========================================================================
   12. COMPACT 4-STEP PROCESS
   ========================================================================= */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.25rem);
}
@media (max-width: 1024px) { .process-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .process-steps-grid { grid-template-columns: 1fr; } }

.process-step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--t);
}
.process-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: var(--shadow-card);
}
.step-num-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-orange);
}
.step-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}
.step-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================================
   13. TESTIMONIALS PREVIEW
   ========================================================================= */
.testimonials-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.25rem);
}
@media (max-width: 1024px) { .testimonials-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .testimonials-grid-3 { grid-template-columns: 1fr; } }

.testimonial-card-mrl {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.2rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
}
.t-stars-row {
  display: flex;
  gap: 0.2rem;
  color: #F59E0B;
  margin-bottom: 0.75rem;
}
.t-quote-body {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.t-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
}
.t-author-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-main);
}
.t-author-route {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================================================
   14. FAQ ACCORDION PREVIEW
   ========================================================================= */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.active { border-color: var(--primary-border); }
.faq-question {
  width: 100%;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  min-height: 48px;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-light);
  color: var(--primary);
}
.faq-answer {
  display: none;
  padding: 0 1.35rem 1.15rem 1.35rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.active .faq-answer { display: block; }

/* =========================================================================
   15. BOTTOM CALL TO ACTION
   ========================================================================= */
.cta-banner-card {
  background: linear-gradient(135deg, var(--primary) 0%, #DC2626 100%);
  border-radius: var(--r-2xl);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3vw + 0.3rem, 2.45rem);
  font-weight: 900;
  margin-bottom: 0.65rem;
}
.cta-sub {
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 2rem auto;
}
.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .cta-btn-group {
    flex-direction: column;
  }
  .cta-btn-group .btn {
    width: 100%;
  }
}

/* =========================================================================
   16. FOOTER (Dark Charcoal MRL Style)
   ========================================================================= */
.site-footer {
  background-color: var(--dark-900);
  color: var(--text-light);
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) { .footer-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid-4 { grid-template-columns: 1fr; } }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 1.15rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-list a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 36px;
}
.footer-links-list a:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.footer-contact-item svg { color: var(--primary); width: 15px; height: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #FFFFFF; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-udyam-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  margin-top: 1.15rem;
}
.udyam-pill-text {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: #F97316;
}
.udyam-pill-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 2px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================================
   17. MOBILE BOTTOM QUICK ACTION BAR (Touch-Friendly)
   ========================================================================= */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0.85rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 75px; }
}
.mobile-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 0.5rem;
}
.mbb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.45rem;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  min-height: 44px;
}
.mbb-btn.call { background: var(--bg-alt); color: var(--text-main); }
.mbb-btn.wa   { background: var(--green-light); color: var(--green); }
.mbb-btn.quote{ background: var(--primary); color: #FFFFFF; }

/* =========================================================================
   18. MOBILE DRAWER NAVIGATION
   ========================================================================= */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-drawer.open { opacity: 1; visibility: visible; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border-light);
}
.drawer-body {
  padding: 0.85rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.95rem;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--t);
  min-height: 46px;
}
.drawer-link:hover, .drawer-link.active {
  background: var(--primary-light);
  color: var(--primary);
}
.drawer-footer {
  padding: 1.15rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* =========================================================================
   19. RESPONSIVE TABLES & UTILITIES
   ========================================================================= */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--r-xl);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.text-orange { color: var(--primary) !important; }
.text-green  { color: var(--green) !important; }
.text-center { text-align: center !important; }
.text-left   { text-align: left !important; }
