/* ==========================================================================
   PUSHPAK CARGO PACKERS & MOVERS — MASTER DESIGN SYSTEM & STYLESHEET
   Brand Identity: Electric Purple (#2B0A91, #4F20FF) & Cargo Orange (#FF6A00)
   ========================================================================== */

/* --- 1. DESIGN TOKENS & CSS VARIABLES --- */
:root {
  /* Brand Colors */
  --color-primary: #2B0A91;
  --color-primary-dark: #1E0766;
  --color-primary-electric: #4F20FF;
  --color-primary-light: #ECE8FF;
  --color-primary-glow: rgba(79, 32, 255, 0.15);

  --color-accent: #FF6A00;
  --color-accent-hover: #E55F00;
  --color-accent-light: #FFF2E8;
  --color-accent-glow: rgba(255, 106, 0, 0.18);

  --color-dark: #0B1020;
  --color-dark-surface: #12182B;
  --color-dark-border: #1E2742;

  /* Neutrals & Surfaces */
  --color-bg: #F7F7FA;
  --color-surface: #FFFFFF;
  --color-surface-soft: #F1F3F8;
  --color-surface-muted: #EAEFF6;

  /* Typography Colors */
  --color-text: #1E293B;
  --color-text-muted: #64748B;
  --color-text-subtle: #94A3B8;
  --color-text-inverse: #FFFFFF;

  /* Borders & Dividers */
  --color-border: #E5E7EB;
  --color-border-subtle: #F1F3F5;
  --color-border-focus: #4F20FF;

  /* Utility / Specific Colors */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5D;
  --color-star: #FFB800;
  --color-success: #10B981;
  --color-error: #EF4444;

  /* Typography Families */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Typography Scales */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.65rem + 1.1vw, 2.375rem);
  --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3rem);
  --text-5xl: clamp(2.75rem, 2.3rem + 2.2vw, 4rem);
  --text-display: clamp(3.25rem, 2.7rem + 2.8vw, 4.75rem);

  /* Spacing System */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius System */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows System */
  --shadow-sm: 0 1px 2px rgba(11, 16, 32, 0.05);
  --shadow-md: 0 4px 14px rgba(11, 16, 32, 0.07);
  --shadow-lg: 0 12px 30px rgba(11, 16, 32, 0.09);
  --shadow-xl: 0 20px 45px rgba(11, 16, 32, 0.12);
  --shadow-card-hover: 0 16px 36px rgba(43, 10, 145, 0.1);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-width: 1380px;
  --container-padding: 32px;
  --header-height: 88px;
}

/* --- 2. BASE & RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 64px;
  /* Mobile sticky CTA clearance */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

::selection {
  background-color: var(--color-primary-electric);
  color: #FFFFFF;
}

/* --- 3. TYPOGRAPHY HIERARCHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* Typography Utility Classes */
.text-primary {
  color: var(--color-primary);
}

.text-electric {
  color: var(--color-primary-electric);
}

.text-accent {
  color: var(--color-accent);
}

.text-dark {
  color: var(--color-dark);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-white {
  color: #FFFFFF;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* --- 4. CONTAINER & SECTION LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section-padding {
  padding-top: 44px;
  padding-bottom: 44px;
}

.section-padding-sm {
  padding-top: 28px;
  padding-bottom: 28px;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 18px;
  }

  .section-padding {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-padding-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section-header {
  margin-bottom: 24px;
  max-width: 780px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.section-badge.badge-orange {
  background-color: var(--color-accent-light);
  color: var(--color-accent-hover);
}

.section-title {
  margin-bottom: var(--space-3);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --- 5. BUTTON SYSTEM --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Primary Button (Electric Purple with Smooth Gradient & Lift) */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-electric) 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 22px rgba(43, 10, 145, 0.25);
  transform: translateY(-2px);
}

/* Secondary Button (Cargo Orange) */
.btn-secondary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 16px var(--color-accent-glow);
}

.btn-secondary:hover {
  background-color: var(--color-accent-hover);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
  transform: translateY(-2px);
}

/* Outline Button (Purple Border) */
.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Dark Button */
.btn-dark {
  background-color: var(--color-dark);
  color: #FFFFFF;
  border: 1px solid var(--color-dark-border);
}

.btn-dark:hover {
  background-color: var(--color-dark-surface);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Button Sizes */
.btn-sm {
  padding: 9px 16px;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

/* --- 6. MASTER HEADER & NAVIGATION SYSTEM --- */
.site-header-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 16px 0 16px;
  margin-bottom: -140px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.25s ease;
}

.site-header-wrapper.header-scrolled {
  padding: 6px 16px 0 16px;
}

.site-header-wrapper.header-hidden {
  transform: translateY(-130%);
}

/* Floating Rounded Header Island Card (Expanded Width) */
.header-island {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(11, 16, 32, 0.09);
  border: 1px solid rgba(226, 232, 240, 0.85);
  background-color: transparent;
  position: relative;
}

@media (max-width: 991px) {
  .site-header-wrapper {
    padding: 8px 10px 0 10px;
    margin-bottom: -86px;
  }

  .header-island {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(11, 16, 32, 0.08);
    border: 1px solid #E5E7EB;
  }
}

/* 6.1 TOP INFORMATION BAR */
.top-info-bar {
  background-color: #080B16;
  color: #E2E8F0;
  font-size: 12.5px;
  height: 40px;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 32px;
}

@media (max-width: 991px) {
  .top-info-bar {
    display: none;
  }
}

.top-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-info-left,
.top-info-center,
.top-info-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-left {
  color: #CBD5E1;
}

.top-info-left strong {
  color: #FFFFFF;
  font-weight: 600;
}

.top-info-center {
  color: #E2E8F0;
  font-weight: 500;
}

.top-info-icon {
  color: #FFFFFF;
  opacity: 0.9;
  flex-shrink: 0;
}

.top-info-link {
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: opacity var(--transition);
}

.top-info-link:hover {
  opacity: 0.8;
  color: #FFFFFF;
}

.top-info-wp {
  color: #FFFFFF;
}

.top-info-wp .top-info-icon {
  color: #FFFFFF;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}

.top-info-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 10px;
  user-select: none;
}

/* 6.2 MAIN NAVIGATION NAVBAR */
.site-header {
  background-color: #FFFFFF;
  border-radius: 0 0 20px 20px;
  transition: all 0.25s ease;
}

@media (max-width: 991px) {
  .site-header {
    border-radius: 16px;
  }
}

.header-scrolled .site-header {
  box-shadow: 0 4px 20px rgba(11, 16, 32, 0.08);
}

.header-container {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
  transition: height 0.25s ease;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
  }
}

.header-scrolled .header-container {
  height: 82px;
}

/* 6.3 BRAND LOGO */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo-img {
  height: 80px;
  width: auto;
  max-width: 350px;
  object-fit: contain;
  transition: all 0.25s ease;
}

.header-scrolled .header-logo-img {
  height: 68px;
  max-width: 340px;
}

@media (max-width: 768px) {
  .header-container {
    height: 80px;
    padding: 0 16px;
  }

  .header-logo-img {
    height: 56px;
    max-width: 250px;
  }
}

/* 6.4 DESKTOP NAVIGATION MENU */
.nav-menu {
  display: none;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: #1E293B;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  color: #64748B;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* 6.5 MEGA DROPDOWNS */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(11, 16, 32, 0.12);
  padding: 24px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-item-has-dropdown:hover .mega-dropdown,
.nav-item-has-dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown-services {
  width: 560px;
}

.mega-dropdown-locations {
  width: 660px;
}

.dropdown-badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.dropdown-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #F1EDFF;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-badge-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-dropdown-grid {
  display: grid;
  gap: 6px 20px;
}

.mega-grid-2col {
  grid-template-columns: 1fr 1fr;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #1E293B;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-item-arrow {
  color: var(--color-accent);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.mega-menu-item:hover {
  background-color: #F8FAFC;
  color: var(--color-primary);
  padding-left: 16px;
}

.mega-menu-item:hover .mega-item-arrow {
  transform: translateX(4px);
  color: var(--color-primary-electric);
}

/* Locations Mega Dropdown Visual Panel */
.mega-locations-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}

.mega-location-visual {
  background: linear-gradient(135deg, #F7F5FF 0%, #FFF8F3 100%);
  border: 1px solid #EDE9FE;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mega-visual-icon {
  margin-bottom: 8px;
}

.mega-visual-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mega-visual-sub {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 2px;
}

.mega-visual-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary);
}

.mega-visual-line {
  width: 32px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  margin-top: 6px;
}

/* 6.6 DESKTOP HEADER ACTION SYSTEM */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Call Now Pill Card */
.header-call-pill {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.04);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .header-call-pill {
    display: inline-flex;
  }
}

.header-call-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.header-call-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
}

.header-call-tag {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.header-call-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #0B1020;
  white-space: nowrap;
}

.header-call-pill:hover {
  border-color: var(--color-primary-electric);
  box-shadow: 0 4px 14px rgba(43, 10, 145, 0.12);
  transform: translateY(-1px);
}

.header-call-pill:hover .header-call-icon-circle {
  background-color: var(--color-primary-electric);
  transform: scale(1.05);
}

/* Get Free Quote CTA Button with Orange to Purple Gradient */
.header-quote-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(90deg, #FF6A00 0%, #FF5500 45%, #6E1AFF 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
  transition: all 0.25s ease;
}

@media (min-width: 640px) {
  .header-quote-btn {
    display: inline-flex;
  }
}

.header-quote-btn:hover {
  background: linear-gradient(90deg, #FF7B1A 0%, #4F20FF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(79, 32, 255, 0.4);
  color: #FFFFFF;
}

.header-quote-btn svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.header-quote-btn:hover svg {
  transform: translateX(4px);
}

/* 6.7 MOBILE HEADER ACTIONS */
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .mobile-header-actions {
    display: none;
  }
}

.mobile-action-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition);
}

.mobile-action-btn:hover {
  transform: scale(1.08);
}

.mobile-call-btn {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(43, 10, 145, 0.25);
}

.mobile-wp-btn {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.mobile-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface-soft);
  color: var(--color-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.mobile-toggle-btn:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border-color: var(--color-primary-electric);
}

/* ==================================================
   HEADER RESPONSIVE OPTIMIZATION (1000px - 1320px)
   ================================================== */
@media (min-width: 992px) and (max-width: 1320px) {
  .top-info-bar {
    padding: 0 16px;
    font-size: 11.5px;
  }

  .top-info-center {
    display: none;
  }

  .header-container {
    padding: 0 16px;
    gap: 12px;
    height: 76px;
  }

  .header-logo-img {
    height: 60px;
    max-width: 260px;
  }

  .nav-menu {
    gap: 2px;
  }

  .nav-link {
    padding: 7px 8px;
    font-size: 13.5px;
    gap: 3px;
  }

  .nav-link::after {
    left: 8px;
    right: 8px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-call-pill {
    padding: 4px 10px 4px 4px;
    gap: 6px;
  }

  .header-call-icon-circle {
    width: 32px;
    height: 32px;
  }

  .header-call-icon-circle svg {
    width: 15px;
    height: 15px;
  }

  .header-call-tag {
    font-size: 9px;
  }

  .header-call-val {
    font-size: 12px;
  }

  .header-quote-btn {
    padding: 9px 14px;
    font-size: 13px;
    gap: 6px;
  }
}

@media (min-width: 992px) and (max-width: 1160px) {
  .header-call-info {
    display: none;
  }

  .header-call-pill {
    padding: 0;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .header-call-icon-circle {
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px rgba(43, 10, 145, 0.2);
  }

  .nav-link {
    padding: 7px 6px;
    font-size: 13px;
  }

  .header-logo-img {
    max-width: 250px;
    height: 58px;
  }

  .mega-dropdown-services {
    width: 480px;
  }

  .mega-dropdown-locations {
    width: 540px;
  }
}

/* --- 7. MASTER HERO SECTION (EXACT REFERENCE UI) --- */
/* --- 7. MASTER HERO SECTION (EXACT REFERENCE UI) --- */
.hero-master-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  background-color: #F8F7FC;
  padding: 165px 0 72px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Background Swiper Slider */
.hero-swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  user-select: none;
}

.hero-swiper-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-swiper-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(0.99);
  transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1), transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.75s;
  z-index: 1;
  pointer-events: none;
}

.hero-swiper-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.hero-swiper-slide.slide-prev {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px) scale(0.99);
  z-index: 1;
}

.hero-swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Subtle overlay protecting text readability */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(248, 247, 252, 0.98) 0%,
      rgba(248, 247, 252, 0.92) 40%,
      rgba(248, 247, 252, 0.45) 62%,
      rgba(248, 247, 252, 0.05) 85%,
      rgba(248, 247, 252, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero Swiper Pagination Dots */
.hero-swiper-pagination {
  position: absolute;
  bottom: 28px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 25;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(79, 32, 255, 0.18);
  box-shadow: 0 4px 18px rgba(11, 16, 32, 0.1);
  pointer-events: auto;
}

.hero-swiper-pagination .h-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-swiper-pagination .h-dot:hover {
  background: #94A3B8;
  transform: scale(1.2);
}

.hero-swiper-pagination .h-dot.active {
  width: 32px;
  background: linear-gradient(90deg, #FF6A00, #FF8800);
  box-shadow: 0 2px 10px rgba(255, 106, 0, 0.4);
}

/* Hero Swiper Navigation Arrows */
.hero-swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(79, 32, 255, 0.18);
  color: #2B0A91;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.1);
  transition: all 0.25s ease;
  opacity: 0.85;
  pointer-events: auto;
}

.hero-master-section:hover .hero-swiper-arrow {
  opacity: 1;
}

.hero-swiper-arrow:hover {
  background: #4F20FF;
  color: #FFFFFF;
  border-color: #4F20FF;
  box-shadow: 0 6px 22px rgba(79, 32, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-master-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 5;
}

/* Left: Hero Content */
.hero-left-content {
  max-width: 680px;
  width: 100%;
}

/* Trust Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F1EDFF;
  border: 1px solid #E2D9FC;
  color: var(--color-primary);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(43, 10, 145, 0.06);
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  color: var(--color-primary);
}

/* Main H1 Heading */
.hero-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.hero-heading-orange {
  color: var(--color-accent);
}

.hero-title-bar {
  width: 34px;
  height: 3.5px;
  background-color: var(--color-accent);
  border-radius: 2px;
  margin: 6px 0 16px 0;
}

/* Lead Description */
.hero-lead-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 500;
}

/* 4-Item Compact Trust Highlights */
.hero-trust-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.trust-hl-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-hl-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #F1EDFF;
  color: var(--color-primary-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-hl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-hl-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.trust-hl-text span {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
  white-space: nowrap;
}

/* CTA Buttons Group (Desktop Default) */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(90deg, #2B0A91 0%, #4F20FF 45%, #FF6A00 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(43, 10, 145, 0.3);
  transition: all 0.25s ease;
}

.btn-hero-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.35);
  color: #FFFFFF;
}

.btn-hero-quote svg {
  transition: transform 0.2s ease;
}

.btn-hero-quote:hover svg {
  transform: translateX(4px);
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-whatsapp);
  color: #15803D;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15);
  transition: all 0.25s ease;
}

.btn-hero-whatsapp svg {
  color: var(--color-whatsapp);
}

.btn-hero-whatsapp:hover {
  background-color: #F0FDF4;
  border-color: #16A34A;
  color: #166534;
  transform: translateY(-2px);
}

/* =========================================
   PUSHPAK MOBILE HERO — 2026 PREMIUM UX
   ========================================= */
@media (max-width: 1100px) {
  .hero-master-container {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .hero-master-section {
    padding: 105px 0 clamp(240px, 55vw, 340px) 0;
    min-height: auto;
  }

  .hero-slide-img {
    object-position: center bottom;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg,
        rgba(248, 247, 252, 0.97) 0%,
        rgba(248, 247, 252, 0.90) 42%,
        rgba(248, 247, 252, 0.35) 70%,
        rgba(248, 247, 252, 0) 100%);
  }

  .hero-swiper-pagination {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 767px) {

  /* Hero Section Container & Visual Separation */
  .hero-master-section {
    position: relative !important;
    width: 100% !important;
    min-height: calc(100svh - 68px) !important;
    background-color: #F8F7FC !important;
    padding: 118px 0 clamp(300px, 90vw, 460px) 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    overflow: hidden !important;
  }

  .hero-slide-img {
    object-position: center bottom !important;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg,
        rgba(248, 247, 252, 0.98) 0%,
        rgba(248, 247, 252, 0.92) 48%,
        rgba(248, 247, 252, 0.25) 78%,
        rgba(248, 247, 252, 0) 100%) !important;
  }

  .hero-swiper-arrow {
    display: none !important;
  }

  .hero-swiper-pagination {
    bottom: 12px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    padding: 5px 12px !important;
  }

  .hero-swiper-pagination .h-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .hero-swiper-pagination .h-dot.active {
    width: 22px !important;
  }

  .hero-master-container {
    padding: 0 16px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-left-content {
    max-width: 360px !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 10 !important;
  }

  /* 7. Trust Badge (Centered on Mobile) */
  .hero-trust-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(79, 32, 255, 0.14) !important;
    border-radius: 999px !important;
    padding: 6px 14px !important;
    margin: 0 auto 14px auto !important;
    box-shadow: 0 2px 8px rgba(43, 10, 145, 0.05) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #2B0A91 !important;
    letter-spacing: 0.4px !important;
  }

  .trust-badge-icon {
    color: #4F20FF !important;
  }

  .trust-badge-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* 8 & 9. Mobile Heading (Centered) */
  .hero-main-heading {
    font-family: var(--font-heading) !important;
    font-size: clamp(34px, 9vw, 42px) !important;
    font-weight: 800 !important;
    color: #0B1020 !important;
    line-height: 1.0 !important;
    letter-spacing: -0.04em !important;
    max-width: 340px !important;
    margin: 0 auto 6px auto !important;
    text-align: center !important;
  }

  .hero-heading-orange {
    color: #FF6A00 !important;
  }

  .hero-title-bar {
    width: 32px !important;
    height: 3.5px !important;
    background-color: #FF6A00 !important;
    border-radius: 2px !important;
    margin: 6px auto 14px auto !important;
  }

  /* 10. Mobile Description (Centered) */
  .hero-lead-desc {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #475569 !important;
    max-width: 340px !important;
    margin: 0 auto 18px auto !important;
    font-weight: 500 !important;
    text-align: center !important;
  }

  /* 11 & 12. Compact 2x2 Trust Features Grid (Inside Content Zone) */
  .hero-trust-highlights {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    max-width: 360px !important;
    width: 100% !important;
    margin: 0 auto 16px auto !important;
  }

  .trust-hl-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
    box-shadow: 0 4px 16px rgba(11, 16, 32, 0.05) !important;
    text-align: left !important;
  }

  .trust-hl-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #F1EDFF !important;
    color: #4F20FF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .trust-hl-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .trust-hl-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.18 !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .trust-hl-text strong {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #0B1020 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 2px !important;
  }

  .trust-hl-text span {
    font-size: 10px !important;
    color: #64748B !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* 13. CTA Buttons (Equal Width 50/50 Grid Centered) */
  .hero-cta-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    max-width: 360px !important;
    width: 100% !important;
    align-items: stretch !important;
    margin: 0 auto !important;
  }

  .btn-hero-quote {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-height: 48px !important;
    padding: 12px 8px !important;
    background: linear-gradient(135deg, #2B0A91 0%, #4F20FF 45%, #FF6A00 100%) !important;
    color: #FFFFFF !important;
    font-family: var(--font-body) !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(43, 10, 145, 0.28) !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .btn-hero-quote svg {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0 !important;
  }

  .btn-hero-whatsapp {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-height: 48px !important;
    padding: 12px 8px !important;
    background-color: #FFFFFF !important;
    border: 1.5px solid #25D366 !important;
    color: #15803D !important;
    font-family: var(--font-body) !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.12) !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .btn-hero-whatsapp svg {
    color: #25D366 !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
  }
}

/* Subtle Entrance Animations (Section 23) */
@keyframes heroMobileFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 767px) {
  .hero-trust-badge {
    animation: heroMobileFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
  }

  .hero-main-heading {
    animation: heroMobileFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  }

  .hero-lead-desc {
    animation: heroMobileFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
  }

  .hero-trust-highlights {
    animation: heroMobileFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
  }

  .hero-cta-group {
    animation: heroMobileFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
  }
}

/* --- 8. MASTER SERVICES & PROCESS SECTION (EXACT COMPACT REFERENCE UI) --- */
.services-process-section {
  background-color: #FFFFFF;
  padding: 38px 0 44px 0;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.section-container {
  max-width: 1240px !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

@media (max-width: 768px) {
  .services-process-section {
    padding: 24px 0 30px 0;
  }

  .section-container {
    padding: 0 16px !important;
  }
}

/* Headings & Eyebrow */
.section-eyebrow {
  font-family: var(--font-heading) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: #4F20FF !important;
  letter-spacing: 0.7px !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 4px !important;
}

.section-main-heading {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 2.2vw, 28px) !important;
  font-weight: 800 !important;
  color: #0B1020 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 16px !important;
}

/* 8.1 TOP AREA: PROCESS (LEFT ~28%) & SERVICES (RIGHT ~72%) */
.process-services-layout {
  display: grid !important;
  grid-template-columns: 290px 1fr !important;
  gap: 36px !important;
  align-items: flex-start !important;
  margin-bottom: 28px !important;
}

@media (max-width: 1024px) {
  .process-services-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
  }

  .services-column {
    order: 1 !important;
    width: 100% !important;
  }

  .process-column {
    order: 2 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* LEFT: HOW IT WORKS VERTICAL TIMELINE */
.process-column {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 290px;
}

.process-timeline {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  margin-top: 4px !important;
}

.process-step-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 14px !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

.process-icon-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  width: 48px !important;
}

.process-icon-circle {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: #F1EDFF !important;
  border: 1.5px solid #E2D9FC !important;
  color: #4F20FF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 8px rgba(79, 32, 255, 0.08) !important;
  position: relative !important;
  z-index: 2 !important;
}

.process-icon-circle svg {
  width: 18px !important;
  height: 18px !important;
}

.process-connector-line {
  width: 2px !important;
  height: 44px !important;
  border-left: 2px dashed #D8D0FF !important;
  margin: 3px 0 !important;
  display: block !important;
}

.process-step-content {
  padding-bottom: 16px !important;
  padding-top: 2px !important;
  flex: 1 !important;
}

.process-step-num {
  font-family: var(--font-heading) !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  color: #4F20FF !important;
  display: block !important;
  margin-bottom: 2px !important;
  line-height: 1 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

.process-step-title {
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0B1020 !important;
  margin: 0 0 3px 0 !important;
  line-height: 1.25 !important;
}

.process-step-desc {
  font-family: var(--font-body) !important;
  font-size: 12.5px !important;
  color: #64748B !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* 8.2 RIGHT: SERVICES COMPACT GRID (3x2) */
.services-column {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}

.services-master-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

@media (max-width: 900px) {
  .services-master-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 580px) {
  .services-master-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

.service-master-card {
  background: #FFFFFF !important;
  border: 1px solid #EAEBED !important;
  border-radius: 16px !important;
  padding: 18px 14px 16px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  box-shadow: 0 2px 12px rgba(11, 16, 32, 0.03) !important;
  position: relative !important;
}

.service-card-img-wrap {
  width: 100% !important;
  height: 85px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}

.service-card-img {
  max-height: 80px !important;
  max-width: 110px !important;
  width: auto !important;
  object-fit: contain !important;
}

.service-card-title {
  font-family: var(--font-heading) !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #0B1020 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.2 !important;
}

.service-card-desc {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: #64748B !important;
  line-height: 1.4 !important;
  margin: 0 0 12px 0 !important;
  flex-grow: 1 !important;
}

.service-card-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-family: var(--font-body) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #4F20FF !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.service-card-link svg {
  width: 13px !important;
  height: 13px !important;
  transition: transform 0.2s ease !important;
}

.service-card-link:hover {
  color: #2B0A91 !important;
}

.service-card-link:hover svg {
  transform: translateX(3px) !important;
}

/* 8.3 BOTTOM AREA: TESTIMONIAL & TRUST BANNER GRID */
.trust-testimonial-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  padding-top: 40px !important;
  border-top: 1px solid #F1F5F9 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 991px) {
  .trust-testimonial-grid {
    grid-template-columns: 100% !important;
    gap: 24px !important;
    padding-top: 28px !important;
  }
}

/* Left: Testimonial Master Box */
.testimonial-master-box {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.testimonial-swiper-viewport {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 16px !important;
  margin-bottom: 14px !important;
  box-sizing: border-box !important;
}

.testimonial-swiper-track {
  display: flex !important;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.testimonial-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.testimonial-quote-bubble {
  background: #FFFFFF !important;
  border: 1px solid #EAEBED !important;
  border-radius: 16px !important;
  padding: 20px 20px !important;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.03) !important;
  position: relative !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.quote-mark-icon {
  font-size: 38px !important;
  line-height: 1 !important;
  color: #4F20FF !important;
  font-family: serif !important;
  font-weight: bold !important;
  margin-bottom: 4px !important;
  opacity: 0.85 !important;
}

.testimonial-bubble-text {
  font-family: var(--font-body) !important;
  font-size: 13.5px !important;
  color: #1E293B !important;
  line-height: 1.55 !important;
  margin-bottom: 16px !important;
  font-weight: 500 !important;
}

.testimonial-author-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

.testimonial-author-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.testimonial-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: #F1EDFF !important;
  color: #4F20FF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.testimonial-avatar svg {
  width: 18px !important;
  height: 18px !important;
}

.testimonial-author-name {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0B1020 !important;
  display: block !important;
  line-height: 1.2 !important;
}

.testimonial-author-loc {
  font-family: var(--font-body) !important;
  font-size: 11.5px !important;
  color: #64748B !important;
}

.testimonial-stars-rating {
  display: flex !important;
  gap: 2px !important;
}

.testimonial-stars-rating svg {
  width: 14px !important;
  height: 14px !important;
}

.testimonial-controls-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 2px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.testimonial-dots {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.t-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #CBD5E1 !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.t-dot:hover {
  background-color: #94A3B8 !important;
}

.t-dot.active {
  width: 22px !important;
  border-radius: 999px !important;
  background-color: #4F20FF !important;
}

.testimonial-nav-btns {
  display: flex !important;
  gap: 6px !important;
}

.t-nav-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  color: #0B1020 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 5px rgba(11, 16, 32, 0.03) !important;
  transition: all 0.2s ease !important;
}

.t-nav-btn:hover {
  background-color: #F1EDFF !important;
  border-color: #D8D0FF !important;
  color: #4F20FF !important;
}

/* Right: Trust & Moving Banner Image Card */
.trust-banner-card-box {
  background: #FFFFFF !important;
  border: 1px solid #EAEBED !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.03) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.trust-banner-card-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 280px !important;
  object-fit: contain !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* 8.4 DEDICATED SYSTEMATIC MOBILE DESIGN (< 768px & < 480px) */
@media (max-width: 768px) {
  .services-process-section {
    padding: 40px 0 48px 0 !important;
  }

  .section-container {
    padding: 0 16px !important;
  }

  .section-eyebrow {
    font-size: 11px !important;
    letter-spacing: 0.6px !important;
    margin-bottom: 4px !important;
  }

  .section-main-heading {
    font-size: 23px !important;
    line-height: 1.22 !important;
    margin-bottom: 18px !important;
  }

  .process-services-layout {
    gap: 36px !important;
    margin-bottom: 36px !important;
  }

  /* Mobile Snake Style Process Timeline (2x2 Flow: 01 → 02 ↓ 03 ← 04) */
  .process-timeline {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 10px !important;
    position: relative !important;
    margin-top: 8px !important;
  }

  /* Snake Position Matrix */
  .process-step-item:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .process-step-item:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .process-step-item:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .process-step-item:nth-child(4) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .process-step-item {
    background: #FFFFFF !important;
    border: 1.5px solid #E2D9FC !important;
    border-radius: 14px !important;
    padding: 12px 10px 10px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    box-shadow: 0 4px 14px rgba(79, 32, 255, 0.05) !important;
    position: relative !important;
    gap: 0 !important;
  }

  .process-icon-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 6px !important;
  }

  .process-icon-circle {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background-color: #F1EDFF !important;
    border: 1px solid #E2D9FC !important;
    color: #4F20FF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
  }

  .process-icon-circle svg {
    width: 15px !important;
    height: 15px !important;
  }

  .process-connector-line {
    display: none !important;
  }

  .process-step-content {
    padding: 0 !important;
    width: 100% !important;
  }

  .process-step-num {
    font-family: var(--font-heading) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #4F20FF !important;
    background: #F1EDFF !important;
    border: 1px solid #E2D9FC !important;
    padding: 2px 7px !important;
    border-radius: 999px !important;
    display: inline-block !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }

  .process-step-title {
    font-family: var(--font-heading) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0B1020 !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.25 !important;
  }

  .process-step-desc {
    font-family: var(--font-body) !important;
    font-size: 10.5px !important;
    color: #64748B !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  /* Snake Directional Flow Badges */
  .process-step-item:nth-child(1)::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: #4F20FF;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(79, 32, 255, 0.3);
  }

  .process-step-item:nth-child(2)::after {
    content: '↓';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: #4F20FF;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(79, 32, 255, 0.3);
  }

  .process-step-item:nth-child(3)::after {
    content: '←';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: #4F20FF;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(79, 32, 255, 0.3);
  }

  /* Mobile 2-Column Compact Services Grid */
  .services-master-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .service-master-card {
    border-radius: 14px !important;
    padding: 14px 10px 12px 10px !important;
  }

  .service-card-img-wrap {
    height: 68px !important;
    margin-bottom: 8px !important;
  }

  .service-card-img {
    max-height: 64px !important;
    max-width: 82px !important;
  }

  .service-card-title {
    font-size: 13.5px !important;
    margin-bottom: 3px !important;
  }

  .service-card-desc {
    font-size: 11px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  .service-card-link {
    font-size: 11.5px !important;
    gap: 4px !important;
  }

  .service-card-link svg {
    width: 11px !important;
    height: 11px !important;
  }

  /* Mobile Testimonial & Trust Banner */
  .trust-testimonial-grid {
    grid-template-columns: 100% !important;
    gap: 20px !important;
    padding-top: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .testimonial-master-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .testimonial-swiper-viewport {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .testimonial-quote-bubble {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .quote-mark-icon {
    font-size: 30px !important;
    margin-bottom: 2px !important;
  }

  .testimonial-bubble-text {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .testimonial-author-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .testimonial-author-left {
    gap: 8px !important;
  }

  .testimonial-avatar {
    width: 32px !important;
    height: 32px !important;
  }

  .testimonial-author-name {
    font-size: 13px !important;
  }

  .testimonial-author-loc {
    font-size: 11px !important;
  }

  .testimonial-stars-rating svg {
    width: 13px !important;
    height: 13px !important;
  }

  .testimonial-controls-row {
    padding: 2px 2px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Right Trust Banner Card Mobile */
  .trust-banner-card-box {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: unset !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    margin-top: 4px !important;
    border: 1px solid #EAEBED !important;
    box-sizing: border-box !important;
    background: #FFFFFF !important;
    padding: 6px !important;
  }

  .trust-banner-card-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 210px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 10px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 380px) {
  .services-master-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }

  .bento-main {
    grid-column: span 7;
    grid-row: span 2;
  }

  .bento-image {
    grid-column: span 5;
    grid-row: span 3;
  }

  .bento-stat {
    grid-column: span 3;
  }

  .bento-feature {
    grid-column: span 4;
  }
}

.bento-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 32, 255, 0.25);
}

.bento-card-dark {
  background-color: var(--color-dark);
  color: #FFFFFF;
  border-color: var(--color-dark-border);
}

.bento-card-dark .bento-stat-num {
  color: var(--color-accent);
}

.bento-img-wrap {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 10. SERVICES CARDS GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-electric);
  box-shadow: var(--shadow-card-hover);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-electric) 100%);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--color-dark);
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: all var(--transition);
}

.service-card:hover .service-card-link {
  color: var(--color-accent);
  gap: var(--space-3);
}

/* --- 11. 5-STEP PROCESS SECTION (ROUTE TIMELINE) --- */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

.process-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary-electric);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.process-step-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-dark);
}

.process-step-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --- 12. LOCATION CARDS SECTION (LOCAL SEO) --- */
.location-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary-electric);
  box-shadow: var(--shadow-card-hover);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--color-surface-soft);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
  width: fit-content;
}

.location-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-dark);
}

.location-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.location-landmarks {
  font-size: var(--text-xs);
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px dashed var(--color-border);
}

/* --- 13. REVIEWS & TESTIMONIALS --- */
.testimonial-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-focus);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--color-star);
}

.testimonial-quote {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.65;
  font-style: normal;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-subtle);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --- 14. LOGISTICS GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- 15. FAQ ACCORDION --- */
.faq-accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--color-primary-electric);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--color-primary-electric);
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary-electric);
}

.faq-content {
  display: none;
  padding: 0 var(--space-6) var(--space-5) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.faq-item.active .faq-content {
  display: block;
}

/* --- 16. FORM INPUTS & QUOTE FORMS --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 580px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-surface-soft);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: #FFFFFF;
  border-color: var(--color-primary-electric);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-alert {
  display: none;
  padding: 12px 16px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
}

.form-alert-error {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.form-alert-success {
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}

/* --- 17. FINAL CALL-TO-ACTION SECTION --- */
.final-cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
  color: #FFFFFF;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-cta-title {
  color: #FFFFFF;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.final-cta-desc {
  color: #CBD5E1;
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* --- 18. FOOTER REDESIGN (DEEP NAVY) --- */
.site-footer {
  background-color: var(--color-dark);
  color: #94A3B8;
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
  border-top: 1px solid var(--color-dark-border);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--space-10);
  }
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: var(--space-5);
}

.footer-brand-logo img {
  height: 250px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.footer-brand-desc {
  color: #94A3B8;
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.footer-title {
  color: #FFFFFF;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: #94A3B8;
  font-size: var(--text-sm);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-dark-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: #64748B;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* --- 19. MOBILE STICKY CTA BAR --- */
.sticky-mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 769px) {
  .sticky-mobile-bar {
    display: none;
  }
}

.sticky-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  background-color: var(--color-primary);
}

.sticky-bar-item:nth-child(2) {
  background-color: var(--color-whatsapp);
}

.sticky-bar-item:nth-child(3) {
  background-color: var(--color-accent);
}

/* --- 20. MODAL & DRAWER OVERLAYS --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 16, 32, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-surface-soft);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}

.modal-close:hover {
  background-color: #FEE2E2;
  color: #991B1B;
}

/* --- 20. MASTER MOBILE DRAWER & ACCORDIONS --- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 88vw;
  background-color: #FFFFFF;
  z-index: 1600;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(11, 16, 32, 0.15);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-logo-img {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.drawer-close-btn {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.drawer-close-btn:hover {
  background-color: #FEE2E2;
  color: #DC2626;
  border-color: #FECACA;
}

.drawer-body {
  padding: 16px 14px;
  overflow-y: auto;
  flex-grow: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-md);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.mobile-nav-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-icon {
  color: var(--color-primary-electric);
  flex-shrink: 0;
}

.mobile-accordion-chevron {
  color: #94A3B8;
  transition: transform 0.25s ease;
}

.mobile-dropdown-toggle.active .mobile-accordion-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: #F1EDFF;
  color: var(--color-primary);
}

.mobile-dropdown-menu {
  display: none;
  padding: 6px 0 10px 20px;
  flex-direction: column;
  gap: 4px;
}

.mobile-dropdown-menu.active {
  display: flex;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}

.mobile-sub-icon.icon-orange {
  color: var(--color-accent);
  flex-shrink: 0;
}

.mobile-sub-link:hover {
  background-color: var(--color-surface-soft);
  color: var(--color-primary);
  padding-left: 18px;
}

/* Drawer Footer CTAs */
.drawer-footer {
  padding: 16px 18px 24px 18px;
  border-top: 1px solid var(--color-border);
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-drawer-quote {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
}

.drawer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
  transition: all var(--transition);
}

.btn-drawer-call {
  background-color: var(--color-primary);
}

.btn-drawer-call:hover {
  background-color: var(--color-primary-electric);
}

.btn-drawer-wp {
  background-color: var(--color-whatsapp);
}

.btn-drawer-wp:hover {
  background-color: var(--color-whatsapp-hover);
}

/* Floating Desktop WhatsApp */
.floating-wp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition);
}

@media (min-width: 769px) {
  .floating-wp-btn {
    display: flex;
  }
}

.floating-wp-btn:hover {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* --- 22. STICKY HERO VIDEO, BENTO, TRUST ARCH & MARQUEE (NEW PURPLE/ORANGE THEME) --- */
.hero-sticky-container {
  position: relative;
  background-color: var(--color-dark);
}

.hero-sticky-video {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.65) 0%, rgba(43, 10, 145, 0.75) 100%);
}

.hero-scroll-content {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}

.hero-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-center {
  text-align: center;
  color: #FFFFFF;
}

.hero-title-main {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title-sub {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

/* Bento About Grid */
.bento-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.bento-hero-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 350px;
  border: 1px solid var(--color-border);
}

.bento-stat-box {
  background-color: var(--color-dark);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-feat-box {
  background-color: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .bento-about-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(160px, auto);
  }

  .bento-hero-box {
    grid-column: span 8;
    grid-row: span 2;
  }

  .bento-img-box {
    grid-column: span 4;
    grid-row: span 3;
    min-height: auto;
  }

  .bento-stat-box {
    grid-column: span 4;
  }

  .bento-feat-box {
    grid-column: span 4;
  }
}

/* Editorial Features */
.editorial-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  padding: var(--space-6);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.editorial-row:hover {
  border-color: var(--color-primary-electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .editorial-row {
    grid-template-columns: 60px 240px 1fr;
    align-items: center;
    gap: var(--space-6);
  }
}

.ed-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary-electric);
}

.ed-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-dark);
}

.ed-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==================================================
   5. THE PUSHPAK ADVANTAGE SECTION (2026 EDITORIAL DESIGN)
   ================================================== */
.pushpak-advantage-section {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 85% 25%, rgba(79, 32, 255, 0.04) 0%, transparent 60%);
  padding: 42px 0 46px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.advantage-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 768px) {
  .pushpak-advantage-section {
    padding: 26px 0 30px 0;
  }

  .advantage-container {
    padding: 0 16px;
  }
}

/* 5.1 TOP EDITORIAL INTRO & FLOATING IMAGE COLLAGE */
.advantage-top-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 26px;
}

@media (max-width: 1024px) {
  .advantage-top-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }
}

/* Left Typography */
.advantage-intro-left {
  display: flex;
  flex-direction: column;
  position: relative;
}

.advantage-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.advantage-eyebrow {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #4F20FF;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.advantage-eyebrow-line {
  width: 32px;
  height: 3px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-top: 6px;
}

.advantage-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.text-orange-accent {
  color: #FF6A00;
}

.advantage-lead-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #64748B;
  line-height: 1.6;
  max-width: 440px;
  margin: 0;
}

.advantage-dot-grid {
  display: grid;
  grid-template-columns: repeat(4, 6px);
  gap: 8px;
  margin-top: 24px;
  opacity: 0.45;
}

.advantage-dot-grid span {
  width: 5px;
  height: 5px;
  background-color: #4F20FF;
  border-radius: 50%;
}

/* Right: Floating Logistics Image Collage */
.advantage-collage-wrapper {
  width: 100%;
  position: relative;
  padding: 10px;
}

.advantage-collage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 76px;
  gap: 12px;
  position: relative;
}

@media (max-width: 640px) {
  .advantage-collage-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 68px;
    gap: 8px;
  }
}

.collage-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.05);
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.collage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(79, 32, 255, 0.1);
  border-color: #D8D0FF;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Staggered Card Placements & Sizes */
.card-port-1 {
  grid-column: span 1;
  grid-row: span 1;
}

.card-truck-1 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 18px;
}

.card-warehouse-1 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 18px;
}

.card-port-2 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 18px;
}

.card-truck-2 {
  grid-column: span 1;
  grid-row: span 1;
}

.card-warehouse-2 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 18px;
}

.card-map-1 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 18px;
}

.card-truck-3 {
  grid-column: span 1;
  grid-row: span 1;
}

.card-map-2 {
  grid-column: span 1;
  grid-row: span 1;
}

.card-warehouse-3 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 18px;
}

/* 5.2 THREE LARGE HORIZONTAL ADVANTAGE CARDS */
.advantage-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.advantage-card {
  background: #FFFFFF;
  border: 1px solid #EAEBED;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.advantage-card:hover {
  border-color: #D8D0FF;
  box-shadow: 0 10px 30px rgba(43, 10, 145, 0.06);
}

.advantage-card.active {
  border-color: #4F20FF;
  box-shadow: 0 12px 36px rgba(79, 32, 255, 0.08);
}

.advantage-card-header {
  display: grid;
  grid-template-columns: 76px 76px 260px 1px 1fr 44px;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 1100px) {
  .advantage-card-header {
    grid-template-columns: 68px 68px 220px 1px 1fr 40px;
    gap: 18px;
    padding: 20px 22px;
  }
}

@media (max-width: 900px) {
  .advantage-card-header {
    grid-template-columns: 56px 56px 1fr 36px;
    gap: 14px;
    padding: 16px 18px;
  }

  .advantage-card-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .advantage-card-header {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px 14px !important;
    padding: 16px 16px !important;
    position: relative !important;
  }

  .advantage-num-box,
  .advantage-icon-box {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
  }

  .adv-num {
    font-size: 18px !important;
  }

  .advantage-icon-box svg {
    width: 20px !important;
    height: 20px !important;
  }

  .advantage-title-wrap {
    flex: 1 !important;
    min-width: 140px !important;
  }

  .advantage-title {
    font-size: 15.5px !important;
  }

  .advantage-arrow-box {
    width: 34px !important;
    height: 34px !important;
  }

  .advantage-desc-wrap {
    display: block !important;
    width: 100% !important;
    margin-top: 4px !important;
  }

  .advantage-desc {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }
}

.advantage-num-box {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background-color: #F5F2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #4F20FF;
  line-height: 1;
}

.advantage-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background-color: #F5F2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4F20FF;
  flex-shrink: 0;
}

@media (max-width: 1100px) {

  .advantage-num-box,
  .advantage-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .adv-num {
    font-size: 24px;
  }
}

@media (max-width: 900px) {

  .advantage-num-box,
  .advantage-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .adv-num {
    font-size: 20px;
  }

  .advantage-icon-box svg {
    width: 22px;
    height: 22px;
  }
}

.advantage-title-wrap {
  display: flex;
  flex-direction: column;
}

.advantage-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #0B1020;
  line-height: 1.25;
  margin: 0;
}

.advantage-accent-bar {
  width: 24px;
  height: 3px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-top: 6px;
}

.advantage-card-divider {
  width: 1px;
  height: 48px;
  background-color: #E5E7EB;
}

.advantage-desc-wrap {
  display: flex;
  align-items: center;
}

.advantage-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.advantage-arrow-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F5F2FF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  flex-shrink: 0;
}

.advantage-card:hover .advantage-arrow-box {
  background-color: #EDE8FF;
}

.advantage-card.active .advantage-arrow-box {
  transform: rotate(180deg);
  background-color: #4F20FF;
  color: #FFFFFF;
}

/* Accordion Expandable Content */
.advantage-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #FAF9FF;
  border-top: 1px solid transparent;
}

.advantage-card.active .advantage-card-body {
  max-height: 250px;
  border-top-color: #EAEBED;
}

.advantage-body-inner {
  padding: 20px 28px 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .advantage-body-inner {
    padding: 16px 18px 20px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.adv-body-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.adv-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid #E2D9FC;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4F20FF;
}

.adv-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: #4F20FF;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.adv-explore-link:hover {
  color: #2B0A91;
  transform: translateX(3px);
}

/* ==================================================
   7. OUR PARTNERS — ABSTRACT MOUNTAIN & 3 VERTICAL MARQUEES
   ================================================== */
.partners-mountain-section {
  background-color: #FFFFFF;
  padding: 44px 0 48px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.partners-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 768px) {
  .partners-mountain-section {
    padding: 28px 0 32px 0;
  }

  .partners-container {
    padding: 0 16px;
  }
}

.partners-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .partners-split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Left 40% Content */
.partners-content-col {
  display: flex;
  flex-direction: column;
}

.partners-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  align-self: flex-start;
  border: 1px solid #E8E2FC;
}

.partners-main-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.partners-title-bar {
  width: 38px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 18px;
}

.partners-desc-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 24px;
}

.partners-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.p-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #1E293B;
}

.p-trust-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #F5F2FF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-partners-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2B0A91 0%, #4F20FF 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(79, 32, 255, 0.25);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}

.btn-partners-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(79, 32, 255, 0.4);
  color: #FFFFFF;
}

.btn-partners-cta svg {
  transition: transform 0.25s ease;
}

.btn-partners-cta:hover svg {
  transform: translateX(4px);
}

/* Right 60% Mountain Stage & 3 Marquees */
.partners-marquee-col {
  width: 100%;
}

.mountain-marquee-stage {
  position: relative;
  height: 420px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 30%, rgba(245, 242, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 75%);
  overflow: hidden;
  border: 1px solid #EAEBED;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.03);
}

@media (max-width: 768px) {
  .mountain-marquee-stage {
    height: 340px;
    border-radius: 18px;
  }
}

.abstract-mountain-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Fade Masks */
.marquee-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 4;
  pointer-events: none;
}

.marquee-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 4;
  pointer-events: none;
}

/* 3 Columns Vertical Grid */
.vertical-marquee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 16px;
  height: 100%;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .vertical-marquee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .v-col-up-2 {
    display: none !important;
  }
}

.v-marquee-col {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.v-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Alternating Vertical Continuous Animation */
.v-col-up-1 .v-marquee-track {
  animation: vMarqueeUp 26s linear infinite;
}

.v-col-down .v-marquee-track {
  animation: vMarqueeDown 30s linear infinite;
}

.v-col-up-2 .v-marquee-track {
  animation: vMarqueeUp 24s linear infinite;
}

.v-marquee-col:hover .v-marquee-track {
  animation-play-state: paused;
}

@keyframes vMarqueeUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes vMarqueeDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Partner Logo Card */
.partner-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(79, 32, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  min-height: 80px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  user-select: none;
}

.partner-card:hover {
  transform: scale(1.04);
  border-color: #D8D0FF;
  box-shadow: 0 10px 24px rgba(79, 32, 255, 0.14);
}

.partner-real-logo {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
  transition: transform 0.25s ease;
}

.partner-card:hover .partner-real-logo {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .v-marquee-track {
    animation: none !important;
  }
}

/* ==================================================
   6. KUTCH LOGISTICS NETWORK / LOCATIONS SECTION (2026 DESIGN)
   ================================================== */
.kutch-network-section {
  background-color: #FFFFFF;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(79, 32, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(255, 106, 0, 0.03) 0%, transparent 50%);
  padding: 42px 0 46px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.network-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 768px) {
  .kutch-network-section {
    padding: 26px 0 30px 0;
  }

  .network-container {
    padding: 0 16px;
  }
}

/* 6.1 TOP ROW: INTRO & MAP STAGE */
.network-top-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 26px;
}

@media (max-width: 1024px) {
  .network-top-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }
}

/* Left Column */
.network-intro-col {
  display: flex;
  flex-direction: column;
}

.network-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  align-self: flex-start;
  border: 1px solid #E8E2FC;
}

.network-main-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.text-purple-highlight {
  color: #4F20FF;
}

.network-title-bar {
  width: 38px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 20px;
}

.network-desc-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #64748B;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 28px;
}

.network-cta-wrap {
  margin-bottom: 32px;
}

.btn-network-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2B0A91 0%, #4F20FF 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(79, 32, 255, 0.25);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-network-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(79, 32, 255, 0.4);
  color: #FFFFFF;
}

.btn-network-cta svg {
  transition: transform 0.25s ease;
}

.btn-network-cta:hover svg {
  transform: translateX(4px);
}

/* Trust Badges Row */
.network-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #F1F5F9;
}

.n-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.n-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: #F5F2FF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.n-badge-text {
  display: flex;
  flex-direction: column;
}

.n-badge-text strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #0B1020;
  line-height: 1.2;
}

.n-badge-text span {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
}

/* 6.2 RIGHT: INTERACTIVE MAP & ROUTE STAGE */
.network-map-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-visual-stage {
  width: 100%;
  max-width: 540px;
  height: 350px;
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(245, 242, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .network-visual-stage {
    height: 290px;
  }
}

.kutch-map-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.kutch-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Central Logistics Core Pin & Pulse */
.network-center-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.pulse-core-pin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00 0%, #4F20FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(79, 32, 255, 0.4);
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #4F20FF;
  animation: ripplePulse 3s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pulse-ring.ring-1 {
  width: 70px;
  height: 70px;
  opacity: 0.4;
}

.pulse-ring.ring-2 {
  width: 110px;
  height: 110px;
  opacity: 0.2;
  animation-delay: 1.2s;
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Station Nodes (Fixed Pill Dimensions & Clean Layout) */
.station-node {
  position: absolute;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.08);
  border: 1.5px solid #E2E8F0;
  z-index: 5;
  white-space: nowrap;
  width: auto !important;
  height: auto !important;
  max-width: max-content;
  box-sizing: border-box;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.station-node:hover {
  transform: scale(1.06);
  border-color: #4F20FF;
  box-shadow: 0 8px 22px rgba(79, 32, 255, 0.16);
}

.station-node.is-hq {
  border: 2px solid #FF6A00;
  background: #FFF9F5;
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.15);
}

.node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4F20FF;
  box-shadow: 0 0 0 3px rgba(79, 32, 255, 0.18);
  flex-shrink: 0;
}

.station-node.is-hq .node-dot {
  background-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.25);
}

.node-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #0B1020;
  white-space: nowrap;
  line-height: 1;
}

/* Precise Station Coordinates (8 Strategic Kutch & Gujarat Hubs) */
.node-gandhidham {
  top: 48%;
  left: 48%;
  transform: translate(-10%, -50%);
}

.node-adipur {
  top: 18%;
  left: 32%;
}

.node-anjar {
  top: 18%;
  right: 14%;
}

.node-mundra {
  bottom: 12%;
  left: 28%;
}

.node-kandla {
  bottom: 14%;
  right: 22%;
}

.node-bhuj {
  top: 48%;
  left: 6%;
}

.node-mandvi {
  bottom: 32%;
  left: 6%;
}

.node-morbi {
  top: 48%;
  right: 4%;
}

/* Floating Hub Thumbnail Images */
.floating-hub-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  box-shadow: 0 6px 18px rgba(11, 16, 32, 0.12);
  z-index: 2;
  transition: transform 0.28s ease;
  pointer-events: none;
}

.floating-hub-img:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-hub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-img-port {
  width: 68px;
  height: 48px;
  top: 6%;
  left: 10%;
}

.hub-img-truck {
  width: 78px;
  height: 52px;
  top: 4%;
  right: 4%;
}

.hub-img-warehouse {
  width: 70px;
  height: 50px;
  bottom: 6%;
  left: 12%;
}

.hub-img-city {
  width: 72px;
  height: 50px;
  bottom: 6%;
  right: 8%;
}

@media (max-width: 480px) {

  .hub-img-port,
  .hub-img-truck,
  .hub-img-warehouse,
  .hub-img-city {
    opacity: 0.85;
    transform: scale(0.85);
  }
}

/* 6.3 BOTTOM ROW: 4 LOCATION CARDS */
.network-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 1100px) {
  .network-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .network-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.network-location-card {
  background: #FFFFFF;
  border: 1px solid #EAEBED;
  border-radius: 20px;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  position: relative;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.network-location-card:hover {
  transform: translateY(-5px);
  border-color: #D8D0FF;
  box-shadow: 0 14px 34px rgba(43, 10, 145, 0.08);
}

/* Primary Hub (Gandhidham) Highlight */
.network-location-card.is-primary-hub {
  border-color: #D8D0FF;
  background: radial-gradient(circle at top, #FAF8FF 0%, #FFFFFF 80%);
}

.primary-hub-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(255, 106, 0, 0.12);
  color: #FF6A00;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: var(--radius-full);
}

.loc-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #F5F2FF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 6px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.network-location-card:hover .loc-card-icon-wrap {
  transform: scale(1.08);
  background-color: #EDE8FF;
}

.loc-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #0B1020;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.loc-card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.loc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #4F20FF;
  transition: transform 0.25s ease, color 0.25s ease;
}

.network-location-card:hover .loc-card-link {
  color: #2B0A91;
  transform: translateX(3px);
}

/* ==================================================
   8. 2026 WALL OF TRUST — TESTIMONIALS & REVIEWS
   ================================================== */
.wall-of-trust-section {
  background-color: #F7F7FA;
  background-image: radial-gradient(circle at 50% 0%, rgba(79, 32, 255, 0.04), transparent 60%);
  padding: 48px 0 54px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.trust-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  margin-bottom: 28px;
}

.trust-intro-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid #E8E2FC;
}

.trust-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.trust-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 14px;
}

.trust-supporting-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 18px;
}

/* Compact Trust Summary Strip */
.trust-summary-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-full);
  padding: 7px 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.ts-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ts-divider {
  color: #CBD5E1;
  font-size: 12px;
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: #1E293B;
}

.text-green-trust {
  color: #15803D;
}

/* Category Filter Pills */
.review-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-filter-pill {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #4F20FF;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-filter-pill:hover {
  border-color: #4F20FF;
  background: #F5F2FF;
}

.btn-filter-pill.is-active {
  background: #4F20FF;
  color: #FFFFFF;
  border-color: #4F20FF;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.25);
}

/* Dual-Row Marquee Stage */
.trust-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 16px 0;
  margin-bottom: 24px;
}

.t-fade-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.t-fade-left {
  left: 0;
  background: linear-gradient(to right, #F7F7FA 10%, transparent 100%);
}

.t-fade-right {
  right: 0;
  background: linear-gradient(to left, #F7F7FA 10%, transparent 100%);
}

.trust-marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
}

.t-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.row-left .t-marquee-track {
  animation: reviewScrollLeft 34s linear infinite;
}

.row-right .t-marquee-track {
  animation: reviewScrollRight 36s linear infinite;
}

.trust-marquee-wrapper:hover .t-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewScrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes reviewScrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Review Card Styling */
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 22px 24px;
  width: 370px;
  min-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.3s ease;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #D8D0FF;
  box-shadow: 0 16px 36px rgba(79, 32, 255, 0.1);
}

.testimonial-card.is-dimmed {
  opacity: 0.22;
  filter: grayscale(0.85);
  pointer-events: none;
}

.t-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 2.5px;
}

.t-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  background: #F8FAFC;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid #F1F5F9;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #1E293B;
  line-height: 1.55;
  margin: 0 0 16px 0;
  font-style: normal;
  flex-grow: 1;
}

.t-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  gap: 8px;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2B0A91 0%, #4F20FF 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-author-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #0B1020;
  line-height: 1.2;
}

.testimonial-location {
  font-family: var(--font-body);
  font-size: 11px;
  color: #64748B;
}

.t-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ECFDF5;
  color: #15803D;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Bottom CTA Actions */
.trust-cta-container {
  text-align: center;
}

.trust-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-write-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.45);
  color: #FFFFFF;
}

.btn-write-review .cta-arrow-icon {
  transition: transform 0.25s ease;
}

.btn-write-review:hover .cta-arrow-icon {
  transform: translateX(4px);
}

.btn-view-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0B1020;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid #E2E8F0;
  transition: all 0.25s ease;
}

.btn-view-all-reviews:hover {
  border-color: #4F20FF;
  color: #4F20FF;
  background: #F5F2FF;
}

.trust-micro-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  margin: 0;
}

/* Responsive Rules for Wall of Trust */
@media (max-width: 768px) {
  .wall-of-trust-section {
    padding: 30px 0 34px 0;
  }

  .trust-header-container {
    padding: 0 16px;
    margin-bottom: 18px;
  }

  .trust-main-heading {
    font-size: clamp(22px, 5.8vw, 30px);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .trust-supporting-desc {
    font-size: 13.5px;
    margin-bottom: 14px;
  }

  .trust-summary-strip {
    padding: 6px 12px;
    gap: 8px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  .review-filter-pills {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 2px 8px 8px 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .review-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .btn-filter-pill {
    padding: 6px 14px;
    font-size: 11.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .trust-marquee-wrapper {
    padding: 4px 0 10px 0;
    margin-bottom: 18px;
  }

  .t-fade-mask {
    width: 24px;
  }

  .trust-marquee-row {
    margin-bottom: 10px;
  }

  .t-marquee-track {
    gap: 10px;
  }

  .testimonial-card {
    width: 275px;
    min-width: 275px;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  }

  .testimonial-quote {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .t-card-header {
    margin-bottom: 8px;
  }

  .t-card-footer {
    padding-top: 10px;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .testimonial-name {
    font-size: 12px;
  }

  .testimonial-location {
    font-size: 10px;
  }

  .t-verified-badge {
    font-size: 9.5px;
    padding: 3px 6px;
  }

  .trust-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .btn-write-review,
  .btn-view-all-reviews {
    width: 100%;
    max-width: 290px;
    height: 46px;
    font-size: 13.5px;
    justify-content: center;
  }

  .trust-micro-copy {
    font-size: 12px;
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .row-left .t-marquee-track,
  .row-right .t-marquee-track {
    animation: none !important;
  }

  .trust-marquee-wrapper {
    overflow-x: auto;
  }
}

/* ==================================================
   9. 2026 LOGISTICS GALLERY — BENTO GRID & LIGHTBOX
   ================================================== */
.logistics-gallery-section {
  background-color: #F7F7FA;
  background-image: radial-gradient(circle at 50% 10%, rgba(79, 32, 255, 0.035), transparent 70%);
  padding: 44px 0 52px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.gallery-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid #E8E2FC;
}

.gallery-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.gallery-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 14px;
}

.gallery-supporting-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 20px;
}

/* Category Filter Pills */
.gallery-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-g-filter {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  color: #4F20FF;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-g-filter:hover {
  border-color: #4F20FF;
  background: #F5F2FF;
}

.btn-g-filter.is-active {
  background: #4F20FF;
  color: #FFFFFF;
  border-color: #4F20FF;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.25);
}

/* Asymmetric Bento Grid */
.gallery-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
  margin-bottom: 34px;
}

.bento-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0B1020;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.3s ease;
  margin: 0;
  padding: 0;
  display: flex;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: #4F20FF;
  box-shadow: 0 14px 30px rgba(79, 32, 255, 0.14);
}

.bento-card.is-dimmed {
  opacity: 0.22;
  filter: grayscale(0.85);
  pointer-events: none;
}

.bento-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-standard {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-img {
  transform: scale(1.04);
}

/* Floating Location / Operation Tag */
.bento-meta-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #2B0A91;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.b-dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #FF6A00;
  display: inline-block;
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}

/* Hero Feature Rich Bottom Caption */
.bento-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 22px 24px;
  background: linear-gradient(to top, rgba(11, 16, 32, 0.92) 0%, rgba(11, 16, 32, 0.6) 60%, transparent 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.bento-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FF8533;
  margin-bottom: 4px;
}

.bento-hero-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0 0 12px 0;
}

.bento-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.bento-card:hover .bento-view-btn {
  background: #FF6A00;
  border-color: #FF6A00;
  transform: translateX(4px);
}

/* Standard Card Overlay */
.bento-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 10px 14px;
  background: linear-gradient(to top, rgba(11, 16, 32, 0.8) 0%, transparent 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.bento-card-caption strong {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.bento-card-caption span {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.bento-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 32, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.bento-card:hover .bento-hover-overlay {
  opacity: 1;
}

.bento-view-pill {
  background: #FFFFFF;
  color: #2B0A91;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.bento-card:hover .bento-view-pill {
  transform: translateY(0);
}

/* Trust Card in Bento Grid */
.bento-trust-card {
  grid-column: span 1;
  grid-row: span 1;
  background: linear-gradient(145deg, #F5F2FF 0%, #EDE9FE 100%);
  border: 1px solid #D8D0FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  cursor: default;
}

.bento-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(79, 32, 255, 0.12);
}

.bento-trust-pill {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #FF6A00;
  margin-bottom: 6px;
}

.bento-trust-heading {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  margin: 0 0 6px 0;
}

.bento-trust-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.bento-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #4F20FF;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.bento-trust-link:hover {
  color: #2B0A91;
  transform: translateX(4px);
}

/* Gallery CTA Block */
.gallery-cta-block {
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g-cta-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 6px 0;
}

.g-cta-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748B;
  margin: 0 0 18px 0;
  max-width: 500px;
}

.g-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-g-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #FF6A00 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(79, 32, 255, 0.25);
  transition: all 0.28s ease;
}

.btn-g-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(79, 32, 255, 0.35);
  color: #FFFFFF;
}

.btn-g-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #4F20FF;
  border: 1.5px solid #E4DCFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-g-secondary:hover {
  background: #F5F2FF;
  border-color: #4F20FF;
  color: #2B0A91;
}

/* ==================================================
   GALLERY LIGHTBOX MODAL
   ================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-lightbox-close:hover {
  background: #FF6A00;
  transform: scale(1.1);
}

.btn-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.btn-lightbox-prev {
  left: -58px;
}

.btn-lightbox-next {
  right: -58px;
}

.btn-lightbox-nav:hover {
  background: #4F20FF;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0B1020;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-img-wrapper {
  max-width: 82vw;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  width: 100%;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.lightbox-location {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #94A3B8;
}

/* Responsive Rules for Gallery */
@media (max-width: 1024px) {
  .gallery-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .bento-hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-standard {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-trust-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .logistics-gallery-section {
    padding: 30px 0 34px 0;
  }

  .gallery-container {
    padding: 0 16px;
  }

  .gallery-main-heading {
    font-size: clamp(22px, 5.8vw, 30px);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .gallery-supporting-desc {
    font-size: 13.5px;
    margin-bottom: 16px;
  }

  .gallery-filter-pills {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 2px 8px 8px 8px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .gallery-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .btn-g-filter {
    padding: 6px 14px;
    font-size: 11.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .gallery-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 12px;
  }

  .bento-hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-card {
    border-radius: 16px;
  }

  .bento-meta-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 10px;
  }

  .bento-hero-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .bento-trust-card {
    grid-column: span 2;
    padding: 16px;
  }

  .btn-lightbox-nav {
    display: none;
  }

  .btn-lightbox-close {
    top: -40px;
    right: 4px;
    width: 36px;
    height: 36px;
  }

  .lightbox-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .btn-g-primary,
  .btn-g-secondary {
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }
}

/* ==================================================
   10. 2026 EDITORIAL FAQ SECTION (40% Intro / 60% Accordion)
   ================================================== */
.editorial-faq-section {
  background-color: #FFFFFF;
  padding: 56px 0 64px 0;
  position: relative;
  border-bottom: 1px solid #E5E7EB;
}

.faq-editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 56px;
  align-items: flex-start;
}

/* Left 40%: Editorial Intro */
.faq-editorial-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.faq-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid #E8E2FC;
}

.faq-editorial-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.faq-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 16px;
}

.faq-editorial-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
}

.btn-faq-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5F2FF;
  color: #4F20FF;
  border: 1.5px solid #E4DCFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-faq-visit:hover {
  background: #4F20FF;
  color: #FFFFFF;
  border-color: #4F20FF;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.25);
}

/* Right 60%: Large Editorial Rows */
.faq-editorial-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E5E7EB;
}

.faq-editorial-row {
  border-bottom: 1px solid #E5E7EB;
  background: transparent;
  transition: background-color 0.28s ease, border-left-color 0.28s ease;
  border-left: 3px solid transparent;
}

.faq-editorial-row.is-active {
  background-color: #F8F6FF;
  border-left-color: #FF6A00;
}

.faq-row-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 22px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: left;
  gap: 16px;
  transition: padding-left 0.2s ease;
}

.faq-row-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.faq-row-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.faq-editorial-row.is-active .faq-row-num {
  color: #FF6A00;
}

.faq-row-question {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.faq-editorial-row:hover .faq-row-question {
  color: #4F20FF;
}

.faq-editorial-row.is-active .faq-row-question {
  color: #2B0A91;
}

.faq-row-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4F20FF;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-plus-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-editorial-row.is-active .faq-row-icon-wrap {
  background: #FF6A00;
  color: #FFFFFF;
}

.faq-editorial-row.is-active .faq-plus-icon {
  transform: rotate(45deg);
}

.faq-row-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-editorial-row.is-active .faq-row-content {
  max-height: 250px;
}

.faq-row-content-inner {
  padding: 0 20px 22px 52px;
}

.faq-row-content-inner p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

/* ==================================================
   11. 2026 FINAL CTA SECTION (Dark Navy Glow + Routes)
   ================================================== */
.final-cta-dark-section {
  background-color: #0B1020;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(79, 32, 255, 0.16), transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(255, 106, 0, 0.13), transparent 50%);
  padding: 68px 0 72px 0;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.cta-vector-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
}

.cta-vector-routes svg {
  width: 100%;
  height: 100%;
}

.cta-container-relative {
  position: relative;
  z-index: 2;
}

.final-cta-core-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6A00;
  box-shadow: 0 0 10px #FF6A00;
}

.final-cta-main-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
}

.final-cta-main-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 0 28px 0;
}

.final-cta-action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-cta-quote {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #FF6A00;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cta-quote:hover {
  background: #E55F00;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.5);
  color: #FFFFFF;
}

.btn-cta-quote .cta-btn-arrow {
  transition: transform 0.25s ease;
}

.btn-cta-quote:hover .cta-btn-arrow {
  transform: translateX(4px);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-cta-whatsapp .wp-icon {
  color: #25D366;
}

.btn-cta-whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.cta-trust-micro-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
}

.micro-dot {
  color: #FF6A00;
}

/* ==================================================
   12. 2026 CORPORATE SITE FOOTER (Clean White Background)
   ================================================== */
.site-footer-2026 {
  background-color: #FFFFFF;
  color: #64748B;
  padding: 56px 0 28px 0;
  border-top: 1px solid #E5E7EB;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid-2026 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.25fr;
  gap: 44px;
  margin-bottom: 42px;
}

/* Column 1: Brand */
.footer-logo-img {
  max-height: 80px;
  width: auto;
  max-width: 300px;
  display: block;
  /* margin-bottom: 16px; */
  object-fit: contain;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.footer-hub-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 18px;
}

.hub-pin-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF6A00;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-icon-btn:hover {
  background: #4F20FF;
  border-color: #4F20FF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-icon-btn.wp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}

.footer-icon-btn.ig-btn:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #FFFFFF;
}

.footer-icon-btn.fb-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
}

/* Headings in Columns */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.f-head-bar {
  width: 22px;
  height: 2.5px;
  background-color: #FF6A00;
  border-radius: 2px;
}

/* Lists */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav-list a {
  color: #475569;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.22s ease;
}

.f-link-arrow {
  color: #FF6A00;
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.footer-nav-list a:hover {
  color: #4F20FF;
  transform: translateX(3px);
}

.footer-nav-list a:hover .f-link-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Contact Column */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.f-contact-item,
.f-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64748B;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.f-c-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.f-contact-item:hover {
  color: #4F20FF;
}

.f-contact-item.f-phone {
  color: #0B1020;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.f-contact-item.f-whatsapp {
  color: #16A34A;
  font-weight: 600;
}

.f-contact-emails-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.f-contact-emails-block .f-contact-item a {
  color: #64748B;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  transition: color 0.2s ease;
  word-break: break-all;
}

.f-contact-email-sub {
  padding-left: 26px;
}

.f-contact-email-sub a {
  color: #64748B;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  transition: color 0.2s ease;
  word-break: break-all;
}

.f-contact-emails-block a:hover {
  color: #4F20FF;
  text-decoration: underline;
}

.btn-footer-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #FF6A00 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.25);
}

.btn-footer-estimate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 32, 255, 0.4);
  color: #FFFFFF;
}

/* Visual Divider */
.footer-divider-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
}

.f-divider-line {
  height: 1px;
  background: #E5E7EB;
  width: 100%;
}

.f-divider-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #FF6A00;
}

/* Footer Bottom */
.footer-bottom-2026 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copyright-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-dev-credit {
  font-size: 11.5px;
  color: #94A3B8;
}

.footer-dev-credit a {
  color: #FF6A00;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-dev-credit a:hover {
  color: #4F20FF;
  text-decoration: underline;
}

.footer-quick-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-quick-links a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-quick-links a:hover {
  color: #4F20FF;
}

/* Responsive Rules for FAQ, CTA and Footer */
@media (max-width: 991px) {
  .faq-editorial-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-editorial-intro {
    position: static;
  }

  .footer-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .editorial-faq-section {
    padding: 34px 0 40px 0;
  }

  .faq-row-trigger {
    padding: 16px 12px 16px 10px;
  }

  .faq-row-question {
    font-size: 14.5px;
  }

  .faq-row-content-inner {
    padding: 0 12px 16px 42px;
  }

  .final-cta-dark-section {
    padding: 46px 0 48px 0;
  }

  .final-cta-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-cta-quote,
  .btn-cta-whatsapp {
    width: 100%;
    max-width: 290px;
    height: 48px;
    justify-content: center;
  }

  .footer-grid-2026 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-2026 {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-quick-links {
    justify-content: center;
  }
}

/* ==================================================
   13. 2026 PROVEN EXCELLENCE (ACHIEVEMENTS / MILESTONES)
   ================================================== */
.achievements-section {
  background-color: #F7F7FA;
  padding: 56px 0 60px 0;
  position: relative;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.achievements-header-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 38px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievements-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid #E8E2FC;
}

.achievements-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.achievements-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 14px;
}

.achievements-supporting-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.achievement-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.03);
}

.achievement-card:hover {
  transform: translateY(-4px);
  border-color: #D8D0FF;
  box-shadow: 0 12px 28px rgba(79, 32, 255, 0.08);
}

.ach-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ach-icon-purple {
  background: #F3EEFF;
  color: #2B0A91;
}

.ach-icon-orange {
  background: #FFF2E8;
  color: #FF6A00;
}

.ach-icon-electric {
  background: #ECE8FF;
  color: #4F20FF;
}

.ach-icon-green {
  background: #EAFBF2;
  color: #10B981;
}

.ach-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.ach-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ach-unit {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #FF6A00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ach-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #0B1020;
  margin-bottom: 6px;
}

.ach-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

/* ==================================================
   14. 2026 EXPERT INSIGHTS (BLOG & MOVING GUIDES)
   ================================================== */
.insights-blog-section {
  background-color: #FFFFFF;
  padding: 56px 0 60px 0;
  position: relative;
  border-bottom: 1px solid #E5E7EB;
}

.insights-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.insights-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F5F2FF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid #E8E2FC;
}

.insights-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.insights-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 14px;
}

.insights-supporting-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
}

.btn-insights-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  color: #0B1020;
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-insights-all:hover {
  background: #4F20FF;
  border-color: #4F20FF;
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.2);
}

.insights-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.03);
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: #D8D0FF;
  box-shadow: 0 14px 32px rgba(79, 32, 255, 0.1);
}

.insight-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F1F5F9;
}

.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card:hover .insight-img {
  transform: scale(1.05);
}

.insight-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-purple {
  background: rgba(79, 32, 255, 0.9);
  color: #FFFFFF;
}

.badge-orange {
  background: rgba(255, 106, 0, 0.9);
  color: #FFFFFF;
}

.badge-blue {
  background: rgba(14, 116, 144, 0.9);
  color: #FFFFFF;
}

.insight-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 10px;
}

.meta-dot {
  color: #CBD5E1;
}

.insight-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.insight-card:hover .insight-title {
  color: #4F20FF;
}

.insight-excerpt {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 18px 0;
  flex: 1;
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  font-size: 12.5px;
}

.insight-author {
  color: #94A3B8;
  font-family: var(--font-body);
}

.insight-link {
  color: #FF6A00;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.insight-link:hover {
  color: #4F20FF;
  transform: translateX(3px);
}

/* Responsive Rules for Achievements and Blog */
@media (max-width: 1024px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .achievements-section {
    padding: 34px 0 38px 0;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .achievement-card {
    padding: 20px 16px;
  }

  .insights-blog-section {
    padding: 34px 0 38px 0;
  }

  .insights-header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .insights-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .insight-img-wrap {
    height: 180px;
  }
}

/* ==================================================
   14. 2026 OFFICIAL AWARDS & HONORS SHOWCASE (30% INTRO / 70% AWARDS GRID)
   ================================================== */
.awards-honors-section {
  background-color: #FFFFFF;
  padding: 56px 0 64px 0;
  position: relative;
  border-bottom: 1px solid #E5E7EB;
}

.awards-split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.85fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left 30%: Intro Header */
.awards-split-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 100px;
}

.awards-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFF2E8;
  color: #FF6A00;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid #FFE4D1;
}

.awards-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.awards-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 14px;
}

.awards-supporting-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.awards-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
}

.a-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

/* Right 70%: 4 Award Cards */
.awards-split-content {
  width: 100%;
}

.awards-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.award-visual-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.03);
}

.award-visual-card:hover {
  transform: translateY(-5px);
  border-color: #FF6A00;
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.12);
}

.award-img-wrapper {
  position: relative;
  width: 100%;
  height: 155px;
  overflow: hidden;
  background: #0B1020;
}

.award-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-visual-card:hover .award-real-img {
  transform: scale(1.05);
}

.award-badge-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  top: auto;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.badge-gold {
  background: rgba(255, 184, 0, 0.95);
  color: #000000;
}

.badge-orange {
  background: rgba(255, 106, 0, 0.95);
  color: #FFFFFF;
}

.badge-purple {
  background: rgba(79, 32, 255, 0.95);
  color: #FFFFFF;
}

.badge-blue {
  background: rgba(14, 116, 144, 0.95);
  color: #FFFFFF;
}

.award-content-body {
  padding: 14px 10px 16px 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.award-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.3;
  margin-bottom: 4px;
}

.award-conferred-by {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
  margin: 0;
  line-height: 1.35;
}

/* Responsive Rules for Awards */
@media (max-width: 1024px) {
  .awards-split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .awards-split-intro {
    position: static;
  }

  .awards-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .award-img-wrapper {
    height: 175px;
  }
}

@media (max-width: 640px) {
  .awards-honors-section {
    padding: 34px 0 38px 0;
  }

  .awards-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .award-img-wrapper {
    height: 140px;
  }

  .award-card-title {
    font-size: 13px;
  }

  .award-conferred-by {
    font-size: 11px;
  }
}

/* ==================================================
   ABOUT US PAGE (2026 STRICT MODULAR SECTIONS)
   ================================================== */

/* --- Common About Elements --- */
.about-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F1EDFF;
  border: 1px solid #E2D9FC;
  color: #2B0A91;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(43, 10, 145, 0.05);
}

.about-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.about-title-bar {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin: 6px 0 16px 0;
}

.about-title-bar-center {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin: 8px auto 16px auto;
}

.about-section-subtext {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #64748B;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header-center {
  text-align: center;
  margin-bottom: 28px;
}

/* ==================================================
   SECTION 01: ABOUT HERO
   ================================================== */
.about-hero-section {
  position: relative;
  background-color: #F8F7FC;
  padding: 155px 0 50px 0;
  overflow: hidden;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.about-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.about-hero-desc {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 640px;
}

.about-hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-about-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.28);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-about-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(79, 32, 255, 0.4);
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
}

.btn-about-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0F172A !important;
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.04);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-about-whatsapp svg {
  color: #25D366;
}

.btn-about-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF !important;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-about-whatsapp:hover svg {
  color: #FFFFFF;
}

.about-hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.a-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #0B1020;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #E2E8F0;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.a-pill-item svg {
  color: #FF6A00;
}

/* Hero Visual Composition */
.about-visual-composition {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.about-comp-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11, 16, 32, 0.08);
  border: 2px solid #FFFFFF;
}

.about-comp-card.comp-main {
  width: 96%;
  height: 300px;
  position: relative;
  z-index: 1;
}

.about-comp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-badge-live {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 16, 32, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.c-live-dot {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
}

.about-comp-card.comp-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 170px;
  z-index: 2;
  border: 3px solid #FFFFFF;
}

.comp-caption-mini {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(11, 16, 32, 0.8);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
}

/* ==================================================
   SECTION 02: WHO WE ARE (MATCHING DESIGN MOCKUP)
   ================================================== */
.about-who-section {
  padding: 50px 0 35px 0;
  background-color: #FFFFFF;
}

.about-who-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.about-who-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.about-who-heading .text-purple-highlight {
  color: #4F20FF;
}

.about-orange-line {
  width: 36px;
  height: 3.5px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 18px;
}

.about-who-desc-1 {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 12px;
}

.about-who-desc-2 {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 22px;
}

/* 6 Pill Badges (2 columns x 3 rows grid) */
.about-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.about-pill-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #FFFFFF;
  border: 1.5px solid #E2D9FC;
  border-radius: var(--radius-full);
  padding: 8px 15px;
  box-shadow: 0 2px 5px rgba(43, 10, 145, 0.03);
  transition: all 0.2s ease;
}

.about-pill-btn:hover {
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(79, 32, 255, 0.08);
}

.about-pill-btn .pill-svg {
  color: #4F20FF;
  flex-shrink: 0;
}

.about-pill-btn span {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
}

/* Right Visual Collage */
.about-who-visual-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-truck-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.08);
  height: 230px;
  background: #0B1020;
}

.who-truck-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-sub-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.who-sub-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.08);
  height: 165px;
  background: #0B1020;
}

.who-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-card-label-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 217, 252, 0.9);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(11, 16, 32, 0.08);
}

.who-card-label-badge svg {
  color: #4F20FF;
  flex-shrink: 0;
}

.who-card-label-badge span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: #0B1020;
  white-space: nowrap;
}

/* ==================================================
   SECTION 03: OUR NUMBERS (MATCHING DESIGN MOCKUP)
   ================================================== */
.about-numbers-section {
  padding: 10px 0 45px 0;
  background-color: #FFFFFF;
}

.about-numbers-outer-box {
  background: #FAF9FE;
  border: 1.5px solid #EDE8FD;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(79, 32, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-box-col {
  flex: 1;
  text-align: center;
  padding: 6px 12px;
}

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: 0 3px 10px rgba(79, 32, 255, 0.08);
}

.stat-number-big {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.025em;
}

.stat-title-purple {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #4F20FF;
  margin-bottom: 3px;
  line-height: 1.2;
}

.stat-sub-muted {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.35;
}

.stat-col-separator {
  width: 1px;
  height: 52px;
  background-color: #E2D9FC;
}

/* ==================================================
   SECTION 04: WHY CUSTOMERS TRUST US (COMPACT)
   ================================================== */
.about-trust-section {
  padding: 48px 0;
  background-color: #FFFFFF;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-feat-item {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 18px;
  transition: all 0.25s ease;
}

.trust-feat-item:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(79, 32, 255, 0.08);
}

.trust-feat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.trust-feat-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #4F20FF;
}

.trust-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #E2D9FC;
  color: #FF6A00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-feat-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 6px;
}

.trust-feat-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* ==================================================
   SECTION 05: FOUNDER (CLEAN COMPACT PROFILE)
   ================================================== */
.about-founder-section {
  padding: 50px 0;
  background-color: #F8F7FC;
}

.founder-container-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.about-founder-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.founder-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.06);
  background: #0B1020;
  height: 360px;
}

.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-mini-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 16, 32, 0.8);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.founder-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: #2B0A91;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.founder-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  color: #0B1020;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.founder-underline {
  width: 32px;
  height: 3px;
  background-color: #FF6A00;
  border-radius: 2px;
  margin-bottom: 16px;
}

.founder-main-paragraph {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 18px;
}

.founder-info-block {
  margin-bottom: 16px;
}

.founder-name-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.2;
  margin-bottom: 2px;
}

.founder-designation-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
}

.founder-closing-statement {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #0B1020;
  font-weight: 600;
  margin: 0;
}

/* ==================================================
   SECTION 06: OUR VALUES (COMPACT)
   ================================================== */
.about-values-section {
  padding: 48px 0;
  background-color: #FFFFFF;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.val-clean-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.25s ease;
}

.val-clean-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(79, 32, 255, 0.08);
}

.val-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.val-icon-purple {
  background: #F1EDFF;
  color: #4F20FF;
}

.val-icon-orange {
  background: #FFF0E6;
  color: #FF6A00;
}

.val-icon-blue {
  background: #E0F2FE;
  color: #0284C7;
}

.val-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 6px;
}

.val-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* ==================================================
   SECTION 07: OUR PROCESS (COMPACT)
   ================================================== */
.about-process-section {
  padding: 48px 0;
  background-color: #F8F7FC;
}

.about-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proc-step-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 16px;
  position: relative;
  transition: all 0.25s ease;
}

.proc-step-card:hover {
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 32, 255, 0.08);
}

.proc-top-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.proc-badge-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4F20FF;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(79, 32, 255, 0.2);
  flex-shrink: 0;
}

.proc-route-connector {
  flex-grow: 1;
  height: 2px;
  background: #FF6A00;
  margin-left: 8px;
  border-radius: 2px;
}

.proc-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.proc-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}



/* ==================================================
   SECTION 09: OUR SERVICES (TARGETED MOVING & LOGISTICS)
   ================================================== */
.about-services-section {
  padding: 56px 0 44px;
  background-color: #F8F7FC;
}

.about-services-pillar {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 24px;
  padding: 32px 28px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(11, 16, 32, 0.03);
}

.about-services-pillar:last-child {
  margin-bottom: 0;
}

.pillar-header {
  margin-bottom: 24px;
}

.pillar-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.pillar-eyebrow.is-moving {
  background: #F1EDFF;
  color: #4F20FF;
  border: 1px solid rgba(79, 32, 255, 0.15);
}

.pillar-eyebrow.is-logistics {
  background: #FFF0E6;
  color: #FF6A00;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 6px 0;
}

.pillar-subtext {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
  max-width: 720px;
}

.about-services-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .about-services-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-services-compact-grid {
    grid-template-columns: 1fr;
  }

  .about-services-pillar {
    padding: 24px 16px;
  }
}

.service-compact-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.service-compact-card:hover {
  border-color: #FF6A00;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.1);
  background: #FFFFFF;
}

.srv-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.service-compact-card.is-logistics-card .srv-icon-wrap {
  background: #FFF0E6;
  color: #FF6A00;
}

.service-compact-card:hover .srv-icon-wrap {
  background: linear-gradient(135deg, #2B0A91 0%, #4F20FF 100%);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-compact-card.is-logistics-card:hover .srv-icon-wrap {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8C38 100%);
  color: #FFFFFF;
  transform: scale(1.05);
}

.srv-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 6px;
}

.srv-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.srv-link-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #FF6A00;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.service-compact-card:hover .srv-link-text {
  transform: translateX(4px);
}

/* ==================================================
   SECTION 10: OUR NETWORK (COMPACT)
   ================================================== */
.about-network-section {
  padding: 48px 0;
  background-color: #FFFFFF;
}

.about-network-route-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.03);
}

.route-nodes-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.net-node {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  min-width: 120px;
  flex-shrink: 0;
}

.net-node.is-hq {
  background: #F1EDFF;
  border-color: #4F20FF;
}

.net-node.is-india {
  background: #FFF0E6;
  border-color: #FF6A00;
}

.net-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4F20FF;
  margin: 0 auto 5px auto;
}

.net-node.is-india .net-dot {
  background: #FF6A00;
}

.orange-pulse {
  box-shadow: 0 0 8px #FF6A00;
}

.net-node strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 2px;
}

.net-node span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  color: #64748B;
  font-weight: 600;
}

.net-arrow {
  color: #94A3B8;
  font-weight: bold;
  font-size: 13px;
  flex-shrink: 0;
}

.net-arrow.highlight-orange {
  color: #FF6A00;
}

.net-footer-strip {
  text-align: center;
}

.net-info-pill {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #E2D9FC;
  color: #2B0A91;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
}

/* ==================================================
   SECTION 11: TRUST & CREDENTIALS (COMPACT)
   ================================================== */
.about-credentials-section {
  padding: 48px 0;
  background-color: #F8F7FC;
}

.about-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cred-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(11, 16, 32, 0.03);
  transition: all 0.25s ease;
}

.cred-card:hover {
  transform: translateY(-3px);
  border-color: #FF6A00;
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.1);
}

.cred-thumb-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0B1020;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform 0.4s ease;
}

.cred-card:hover .cred-img {
  transform: scale(1.03);
}

.cred-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cred-body {
  padding: 15px;
  text-align: center;
}

.cred-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 3px;
}

.cred-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  margin: 0;
  line-height: 1.35;
}

/* ==================================================
   SECTION 12: COMPANY JOURNEY (COMPACT)
   ================================================== */
.about-journey-section {
  padding: 48px 0;
  background-color: #FFFFFF;
}

.about-journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.journey-node-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 16px;
  position: relative;
  transition: all 0.25s ease;
}

.journey-node-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(79, 32, 255, 0.08);
}

.j-top {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.j-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4F20FF;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(79, 32, 255, 0.2);
  flex-shrink: 0;
}

.j-line {
  flex-grow: 1;
  height: 2px;
  background: #E2E8F0;
  margin-left: 8px;
}

.j-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  color: #FF6A00;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 0.4px;
}

.j-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 4px;
}

.j-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}

/* ==================================================
   SECTION 13: FINAL CTA (COMPACT)
   ================================================== */
.about-cta-section {
  padding: 40px 0 60px 0;
  background-color: #F8F7FC;
}

.about-cta-card {
  background: linear-gradient(135deg, #0B1020 0%, #1A1040 50%, #2B0A91 100%);
  border-radius: 22px;
  padding: 46px 36px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 16px 40px rgba(43, 10, 145, 0.2);
  position: relative;
  overflow: hidden;
}

.about-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #FF8800;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-cta-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.about-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.55);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  background: #20BA56;
}

/* ==================================================
   SECTION 14: RESPONSIVE RULES (Tablet & Mobile)
   ================================================== */
@media (max-width: 1024px) {
  .about-hero-section {
    padding: 120px 0 50px 0;
  }

  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-who-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-founder-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-photo-card {
    height: 340px;
  }

  .about-infra-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .infra-img-frame {
    height: 340px;
  }

  .about-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-journey-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .about-numbers-outer-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 20px;
  }

  .stat-col-separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 110px 0 44px 0;
  }

  .about-who-section,
  .about-trust-section,
  .about-founder-section,
  .about-values-section,
  .about-process-section,
  .about-infra-section,
  .about-services-section,
  .about-network-section,
  .about-credentials-section,
  .about-journey-section {
    padding: 38px 0;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-cred-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proc-route-connector {
    display: none;
  }

  .about-cta-card {
    padding: 38px 20px;
  }
}

@media (max-width: 600px) {
  .about-pill-grid {
    grid-template-columns: 1fr;
  }

  .who-sub-cards-row {
    grid-template-columns: 1fr;
  }

  .about-numbers-outer-box {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-journey-track {
    grid-template-columns: 1fr;
  }

  .about-comp-card.comp-main {
    width: 100%;
    height: 220px;
  }

  .about-comp-card.comp-secondary {
    position: static;
    width: 100%;
    height: 140px;
    margin-top: 12px;
  }
}

/* ==========================================================================
   2026 PUSHPAK CARGO — MASTER SERVICES SYSTEM (HUB & DETAIL PAGES)
   ========================================================================== */

/* 1. BREADCRUMBS */
.service-breadcrumb-nav {
  margin-bottom: 20px;
}

.service-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.service-breadcrumb-list a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-breadcrumb-list a:hover {
  color: #4F20FF;
}

.breadcrumb-sep {
  color: #CBD5E1;
}

.breadcrumb-current {
  color: #4F20FF;
}

/* 2. SERVICES HUB HERO */
.services-hub-hero-section {
  position: relative;
  background-color: #F8F7FC;
  padding: 155px 0 50px 0;
}

.hub-hero-center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hub-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.hub-hero-desc {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 auto 28px auto;
  max-width: 720px;
}

.hub-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* 3. SERVICES HUB GRID */
.hub-services-grid-section {
  padding: 50px 0;
  background-color: #FFFFFF;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.hub-service-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.28s ease;
  position: relative;
}

.hub-service-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(79, 32, 255, 0.09);
}

.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hub-card-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #4F20FF;
  letter-spacing: -0.02em;
}

.hub-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.hub-service-card:hover .hub-card-icon-box {
  background: #FFF0E6;
  color: #FF6A00;
  transform: scale(1.05);
}

.hub-card-body {
  flex-grow: 1;
  margin-bottom: 20px;
}

.hub-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 8px;
  line-height: 1.25;
}

.hub-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.hub-card-footer {
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
}

.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #FF6A00;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.hub-card-link:hover {
  color: #4F20FF;
  gap: 10px;
}

/* 4. HUB WHY CHOOSE */
.hub-why-section {
  padding: 50px 0;
  background-color: #F8F7FC;
}

.hub-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hub-why-item {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 18px;
  padding: 26px 22px;
  transition: all 0.25s ease;
}

.hub-why-item:hover {
  border-color: #FF6A00;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.08);
}

.why-icon-box {
  font-size: 26px;
  margin-bottom: 12px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 6px;
}

.why-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* 5. HUB PROCESS */
.hub-process-section {
  padding: 50px 0;
  background-color: #FFFFFF;
}

.hub-process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.hub-proc-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px 18px;
  transition: all 0.25s ease;
}

.hub-proc-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(79, 32, 255, 0.08);
}

.hub-proc-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0B1020;
  margin: 12px 0 6px 0;
}

.hub-proc-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}

/* 6. HUB COVERAGE */
.hub-coverage-section {
  padding: 50px 0;
  background-color: #F8F7FC;
}

.hub-coverage-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.cov-node-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-full);
  padding: 10px 20px;
  text-decoration: none;
  color: #0B1020;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.04);
  transition: all 0.2s ease;
}

.cov-node-pill:hover {
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 32, 255, 0.1);
  color: #4F20FF;
}

.cov-node-pill.is-hq {
  background: #F1EDFF;
  border-color: #4F20FF;
  color: #2B0A91;
}

.cov-node-pill.is-india {
  background: #FFF0E6;
  border-color: #FF6A00;
  color: #FF6A00;
}

.cov-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4F20FF;
}

.orange-dot {
  background: #FF6A00;
}

/* ==========================================================================
   INDIVIDUAL SERVICE DETAIL PAGE SYSTEM
   ========================================================================== */

/* 7. SERVICE HERO SECTION */
.service-hero-section {
  position: relative;
  background-color: #F8F7FC;
  padding: 150px 0 50px 0;
  overflow: hidden;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.text-orange-accent {
  color: #FF6A00;
}

.service-hero-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-service-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.28);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-service-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(79, 32, 255, 0.4);
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
}

.btn-service-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0F172A !important;
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.04);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-service-whatsapp svg {
  color: #25D366;
}

.btn-service-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF !important;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-service-whatsapp:hover svg {
  color: #FFFFFF;
}

/* Service Trust Strip */
.service-trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.svc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: #0B1020;
}

.svc-trust-pill svg {
  color: #4F20FF;
}

/* ==========================================================================
   2026 ULTRA-COMPACT SERVICE DETAIL PAGE (EXACT 3-ROW REFERENCE UI)
   ========================================================================== */
.service-compact-page {
  position: relative;
  background-color: #F8F7FC;
  padding: 175px 0 60px 0;
}

.compact-page-container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- ROW 1: COMPACT 3-COLUMN HERO BAND --- */
.compact-hero-row {
  display: grid;
  grid-template-columns: 1.18fr 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

/* Col 1: Hero Info */
.compact-hero-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.compact-breadcrumb {
  margin-bottom: 10px;
}

.compact-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.compact-breadcrumb-list a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.compact-breadcrumb-list a:hover {
  color: #4F20FF;
}

.cb-sep {
  color: #CBD5E1;
  font-size: 11px;
}

.cb-cur {
  color: #4F20FF;
}

.compact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F1EDFF;
  border: 1px solid #E2D9FC;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.compact-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.text-orange-accent {
  color: #FF6A00;
}

.compact-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.compact-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.btn-compact-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.28);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-compact-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(79, 32, 255, 0.45);
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
}

.btn-compact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0F172A !important;
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.04);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-compact-whatsapp:hover {
  border-color: #25D366;
  color: #25D366 !important;
  transform: translateY(-2px);
}

.compact-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.c-trust-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #334155;
  line-height: 1.25;
  box-shadow: 0 2px 6px rgba(11, 16, 32, 0.03);
}

.c-trust-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.c-trust-item strong {
  color: #0B1020;
}

/* Col 2: Photo Card (Strict Fixed Height & Clean Fit) */
.compact-hero-photo-col {
  display: flex;
  flex-direction: column;
  height: 380px;
  max-height: 380px;
  min-width: 0;
}

.c-photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  max-height: 380px;
  width: 100%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 12px 32px rgba(11, 16, 32, 0.09);
  background: #0B1020;
}

.c-hero-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.c-floating-glass-bar {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-full);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.12);
  z-index: 2;
}

.c-glass-pill-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: #0B1020;
  white-space: nowrap;
}

/* Col 3: Why Choose Pushpak */
.compact-hero-why-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.c-why-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 26px rgba(11, 16, 32, 0.04);
  height: 100%;
}

.c-why-badge {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  color: #0B1020;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  display: block;
}

.c-why-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.c-why-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #334155;
  font-weight: 600;
  line-height: 1.25;
}

.c-why-check {
  color: #FF6A00;
  font-weight: 900;
  font-size: 13.5px;
}

.c-why-call-box {
  background: #F8F7FC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.c-why-call-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-why-call-info {
  display: flex;
  flex-direction: column;
}

.c-call-tag {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  color: #64748B;
}

.c-call-num {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 900;
  color: #0B1020;
  text-decoration: none;
  line-height: 1.15;
}

.c-call-time {
  font-family: var(--font-body);
  font-size: 10px;
  color: #64748B;
}

.c-why-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-btn-solid-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2B0A91;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.c-btn-solid-quote:hover {
  background: #FF6A00;
  transform: translateY(-1px);
}

.c-btn-outline-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #0B1020 !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.c-btn-outline-wa:hover {
  border-color: #25D366;
  color: #25D366 !important;
  transform: translateY(-1px);
}

/* --- ROW 2: WHAT'S INCLUDED + 4-STEP PROCESS --- */
.compact-middle-row {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 24px;
  align-items: stretch;
}

.compact-included-col,
.compact-process-col {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.03);
}

.c-section-header-compact {
  margin-bottom: 16px;
}

.c-mini-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 900;
  color: #4F20FF;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.c-mini-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0B1020;
  line-height: 1.25;
  margin: 0;
}

.c-features-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-feature-item-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s ease;
}

.c-feature-item-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-2px);
}

.c-ft-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-ft-content {
  display: flex;
  flex-direction: column;
}

.c-ft-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 3px 0;
}

.c-ft-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}

/* Process Timeline (2x2 Snake Flow Grid) */
.c-process-snake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.c-snake-step-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s ease;
  position: relative;
}

.c-snake-step-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(79, 32, 255, 0.07);
}

.c-snake-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.c-snake-step-tag {
  background: #FFF0E6;
  border: 1px solid #FFE0CC;
  color: #FF6A00;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.c-snake-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.c-snake-step-card:hover .c-snake-icon-circle {
  background: #4F20FF;
  color: #FFFFFF;
  transform: scale(1.06);
}

.c-snake-flow-indicator {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-arrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  color: #FF6A00;
  line-height: 1;
}

.flow-arrow.is-done {
  color: #25D366;
  font-size: 14px;
}

.c-snake-card-body {
  display: flex;
  flex-direction: column;
}

.c-snake-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 4px 0;
}

.c-snake-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.45;
  margin: 0;
}

/* --- ROW 3: FAQS + CTA BANNER --- */
.compact-bottom-row {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 24px;
  align-items: stretch;
}

.compact-faq-col {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.03);
}

.c-faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}

.c-faq-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.c-faq-card.is-open {
  background: #FFFFFF;
  border-color: #4F20FF;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.06);
}

.c-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.c-faq-question {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.3;
}

.c-faq-card.is-open .c-faq-question {
  color: #4F20FF;
}

.c-faq-sign {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #64748B;
  flex-shrink: 0;
  margin-left: 10px;
}

.c-faq-card.is-open .c-faq-sign {
  color: #FF6A00;
}

.c-faq-drawer {
  padding: 0 15px 12px 15px;
}

.c-faq-answer {
  font-family: var(--font-body);
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* CTA Banner Card */
.compact-cta-col {
  display: flex;
  flex-direction: column;
}

.c-cta-banner-box {
  background: linear-gradient(135deg, #0B1020 0%, #150B38 45%, #2B0A91 100%);
  border-radius: 22px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(43, 10, 145, 0.22);
  height: 100%;
}

.c-cta-tag {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 900;
  color: #FF8800;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  display: block;
}

.c-cta-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.22;
  margin-bottom: 8px;
}

.c-cta-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.55;
  margin-bottom: 18px;
}

.c-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.c-cta-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
}

.c-cta-btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.55);
}

.c-cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0B1020 !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-decoration: none;
}

.c-cta-btn-wa:hover {
  transform: translateY(-2px);
  color: #25D366 !important;
}

.c-cta-truck-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-cta-truck-img {
  width: 100%;
  max-width: 290px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

/* ==========================================================================
   ULTRA-COMPACT RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1180px) {
  .compact-hero-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .compact-hero-why-col {
    grid-column: span 2;
  }

  .compact-middle-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compact-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-compact-page {
    padding: 120px 0 40px 0;
  }

  .compact-hero-row {
    grid-template-columns: 1fr;
  }

  .compact-hero-why-col {
    grid-column: span 1;
  }

  .c-photo-wrapper {
    min-height: 260px;
    height: 260px;
  }

  .c-floating-glass-bar {
    flex-wrap: wrap;
    gap: 6px 10px;
    border-radius: 14px;
  }

  .compact-trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .c-features-2col-grid {
    grid-template-columns: 1fr;
  }

  .c-process-h-track {
    grid-template-columns: 1fr;
  }

  .c-node-dotted-line {
    display: none;
  }

  .c-cta-banner-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 20px;
  }

  .c-cta-btns {
    justify-content: center;
  }
}

/* ==========================================================================
   2026 PUSHPAK LOCATIONS SYSTEM (HUB & DETAIL TEMPLATE)
   ========================================================================== */
.locations-hub-page,
.location-detail-page {
  position: relative;
  background-color: #F7F7FA;
  padding: 175px 0 60px 0;
  min-height: 100vh;
}

.loc-hub-container,
.loc-detail-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumbs */
.loc-breadcrumb {
  margin-bottom: 24px;
}

.loc-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.loc-breadcrumb-list a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.loc-breadcrumb-list a:hover {
  color: #4F20FF;
}

.loc-sep {
  color: #CBD5E1;
  font-size: 12px;
}

.loc-current {
  color: #4F20FF;
}

/* Eyebrows & Badges */
.loc-eyebrow-pill,
.loc-dhero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F1EDFF;
  border: 1px solid #E2D9FC;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.loc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6A00;
}

.text-orange-gradient {
  color: #FF6A00;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loc-sec-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #4F20FF;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.loc-sec-heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.2;
  margin: 0;
}

.loc-sec-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.loc-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 6px;
}

.loc-section-header .loc-sec-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.55;
  max-width: 680px;
  margin: 0;
}

.loc-section-header.text-center {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
}

.loc-section-header.text-center .loc-sec-desc {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Content */
.loc-hero-content {
  max-width: 820px;
  margin: 0 auto 48px auto;
}

.loc-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.loc-hero-sub-highlight {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
  color: #4F20FF;
  margin-bottom: 14px;
}

.loc-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 28px auto;
}

.loc-hero-ctas,
.loc-dhero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-loc-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(79, 32, 255, 0.28);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-loc-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 32, 255, 0.45);
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
}

.btn-loc-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0F172A !important;
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.04);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-loc-whatsapp:hover {
  border-color: #25D366;
  color: #25D366 !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   ABSTRACT LOGISTICS NETWORK VISUAL
   ========================================================================== */
.loc-network-visual-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 24px;
  padding: 24px 30px;
  box-shadow: 0 10px 30px rgba(11, 16, 32, 0.04);
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.loc-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.loc-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #2B0A91;
  letter-spacing: 0.6px;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.loc-visual-status {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
}

.loc-network-map-abstract {
  position: relative;
  min-height: 240px;
  background: radial-gradient(circle at 50% 50%, #F5F3FF 0%, #F8F7FC 100%);
  border-radius: 16px;
  border: 1px solid #E2D9FC;
  overflow: hidden;
  margin-bottom: 20px;
}

.loc-routes-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loc-map-node {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.node-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.08);
  text-decoration: none;
  transition: all 0.22s ease;
}

.node-badge:hover {
  border-color: #4F20FF;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(79, 32, 255, 0.16);
}

.node-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4F20FF;
  flex-shrink: 0;
}

.node-marker.hq-marker {
  background: #FF6A00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.2);
}

.node-info {
  display: flex;
  flex-direction: column;
}

.node-name {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.2;
}

.node-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: #64748B;
}

.loc-map-node.is-hq .node-badge {
  border: 2px solid #FF6A00;
  background: #FFF9F5;
}

/* Absolute Node Coordinates */
.node-bhuj {
  top: 38%;
  left: 16%;
}

.node-mundra {
  top: 76%;
  left: 32%;
}

.node-gandhidham {
  top: 46%;
  left: 52%;
}

.node-anjar {
  top: 26%;
  left: 70%;
}

.node-kutch {
  top: 68%;
  left: 85%;
}

.loc-visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
  flex-wrap: wrap;
}

.loc-v-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
}

/* ==========================================================================
   LOCATION HUB CARDS (5-CARD GRID)
   ========================================================================== */
.loc-hub-grid-section {
  padding-bottom: 60px;
}

.loc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.loc-hub-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.03);
  transition: all 0.25s ease;
  position: relative;
}

.loc-hub-card:hover {
  border-color: #4F20FF;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(79, 32, 255, 0.09);
}

.loc-hub-card.is-hq-card {
  border-color: #E2D9FC;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8FF 100%);
}

.loc-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.loc-card-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  color: #FF6A00;
}

.loc-card-badge {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 900;
  color: #4F20FF;
  background: #F1EDFF;
  border: 1px solid #E2D9FC;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.loc-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0B1020;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.loc-card-title a {
  color: #0B1020;
  text-decoration: none;
  transition: color 0.2s ease;
}

.loc-card-title a:hover {
  color: #4F20FF;
}

.hq-tag {
  display: inline-block;
  background: #FF6A00;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.loc-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 16px;
}

.loc-card-pins {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F8F7FC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 7px 10px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  margin-bottom: 16px;
}

.pin-label {
  font-weight: 900;
  color: #0B1020;
}

.pin-values {
  color: #4F20FF;
  font-weight: 700;
}

.loc-card-landmarks {
  margin-bottom: 20px;
}

.lm-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 800;
  color: #0B1020;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.lm-pill {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 3px 7px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #475569;
  font-weight: 600;
}

.loc-card-footer {
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.loc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #4F20FF;
  text-decoration: none;
  transition: all 0.2s ease;
}

.loc-card-link:hover {
  color: #FF6A00;
  gap: 9px;
}

/* ==========================================================================
   NETWORK STATISTICS STRIP
   ========================================================================== */
.loc-stats-strip-section {
  padding-bottom: 60px;
}

.loc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.03);
}

.loc-stat-box {
  display: flex;
  flex-direction: column;
}

.loc-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 900;
  color: #2B0A91;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-accent {
  color: #FF6A00;
}

.loc-stat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0B1020;
  margin-bottom: 3px;
}

.loc-stat-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
}

/* ==========================================================================
   WHY LOCAL COVERAGE MATTERS (SPLIT SECTION)
   ========================================================================== */
.loc-why-coverage-section {
  padding-bottom: 60px;
}

.loc-why-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.loc-editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.18;
  margin-bottom: 16px;
}

.loc-editorial-lead {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 12px;
}

.loc-editorial-p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.loc-why-features-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc-why-feature-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(11, 16, 32, 0.02);
  transition: all 0.2s ease;
}

.loc-why-feature-card:hover {
  border-color: #4F20FF;
  transform: translateX(4px);
}

.loc-wf-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-wf-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 3px 0;
}

.loc-wf-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   SERVICES SPECTRUM & LOCATION MATRIX
   ========================================================================== */
.loc-services-spectrum-section,
.loc-matrix-section {
  padding-bottom: 60px;
}

.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.loc-service-compact-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.22s ease;
}

.loc-service-compact-card:hover {
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 32, 255, 0.08);
}

.loc-sc-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-sc-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.loc-sc-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 2px 0;
}

.loc-sc-desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: #64748B;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.loc-sc-arrow {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #CBD5E1;
  transition: all 0.2s ease;
}

.loc-service-compact-card:hover .loc-sc-arrow {
  color: #FF6A00;
  transform: translateX(3px);
}

/* Matrix Cards */
.loc-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.loc-matrix-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-mc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F5F9;
}

.loc-mc-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  color: #FF6A00;
  background: #FFF0E6;
  padding: 2px 7px;
  border-radius: 6px;
}

.loc-mc-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #0B1020;
  margin: 0;
}

.loc-mc-name a {
  color: #0B1020;
  text-decoration: none;
}

.loc-mc-name a:hover {
  color: #4F20FF;
}

.loc-mc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loc-mc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #334155;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.loc-mc-list li a:hover {
  color: #4F20FF;
}

.mc-check {
  color: #25D366;
  font-weight: 900;
  font-size: 12px;
}

.loc-mc-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #4F20FF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.loc-mc-btn:hover {
  color: #FF6A00;
}

/* ==========================================================================
   LOCATION DETAIL HERO & TRUST STRIP
   ========================================================================== */
.loc-detail-hero-section {
  padding-bottom: 30px;
}

.loc-detail-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.loc-dhero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.loc-dhero-sub {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.loc-dhero-ctas {
  justify-content: flex-start;
  margin-bottom: 26px;
}

.loc-dhero-stat-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.loc-dspill {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(11, 16, 32, 0.03);
}

.dspill-val {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 900;
  color: #2B0A91;
}

.dspill-lbl {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #64748B;
}

/* Detail Photo Frame */
.loc-dhero-photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  max-height: 380px;
  width: 100%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 12px 32px rgba(11, 16, 32, 0.09);
  background: #0B1020;
}

.loc-dhero-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.loc-dhero-glass-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(11, 16, 32, 0.12);
  z-index: 2;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF6A00;
}

.badge-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: #0B1020;
}

.badge-sub {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
}

/* Trust Strip */
.loc-trust-strip-section {
  padding-bottom: 40px;
}

.loc-trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 4px 12px rgba(11, 16, 32, 0.03);
}

.loc-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0B1020;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6A00;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

/* ==========================================================================
   LOCATION OVERVIEW & RIGHT SIDEBAR
   ========================================================================== */
.loc-overview-section {
  padding-bottom: 50px;
}

.loc-overview-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.loc-narrative-lead {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 12px;
}

.loc-narrative-p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 24px;
}

.loc-areas-block {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
}

.loc-areas-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  color: #0B1020;
  margin: 0 0 14px 0;
}

.loc-areas-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.loc-area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F8F7FC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}

.area-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4F20FF;
}

.loc-pincodes-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pin-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  color: #0B1020;
}

.pin-badge-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pin-code-badge {
  background: #F1EDFF;
  border: 1px solid #E2D9FC;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
}

/* Right Highlights & Hotline */
.loc-overview-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-highlights-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.03);
}

.loc-hc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #0B1020;
  margin: 0 0 14px 0;
}

.loc-hc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-hc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #334155;
  line-height: 1.45;
  font-weight: 600;
}

.hc-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F1EDFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hotline Box */
.loc-hotline-card {
  background: linear-gradient(135deg, #0B1020 0%, #150B38 45%, #2B0A91 100%);
  border-radius: 20px;
  padding: 22px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(43, 10, 145, 0.2);
}

.hotline-tag {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 900;
  color: #FF8800;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  display: block;
}

.hotline-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.hotline-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.45;
  margin-bottom: 16px;
}

.hotline-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-hotline-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FF6A00;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-hotline-call:hover {
  background: #FF8800;
  transform: translateY(-1px);
}

.btn-hotline-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0B1020 !important;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-hotline-wa:hover {
  color: #25D366 !important;
}

/* ==================================================
   LOCATION SERVICES GRID
   ================================================== */
.loc-detail-services-section {
  padding-bottom: 50px;
}

.loc-dservices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.loc-dservice-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s ease;
}

.loc-dservice-card:hover {
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(79, 32, 255, 0.08);
}

.loc-dsc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.loc-dsc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-dsc-tag {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 900;
  color: #25D366;
  background: #E8FBF0;
  padding: 2px 6px;
  border-radius: 4px;
}

.loc-dsc-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 6px 0;
}

.loc-dsc-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 16px;
}

.loc-dsc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: #4F20FF;
  text-decoration: none;
  transition: all 0.2s ease;
}

.loc-dservice-card:hover .loc-dsc-link {
  color: #FF6A00;
  gap: 8px;
}

/* ==================================================
   LOCATION ADVANTAGE CARD
   ================================================== */
.loc-advantage-section {
  padding-bottom: 50px;
}

.loc-advantage-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 22px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: center;
}

.loc-adv-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #0B1020;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.loc-adv-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.loc-adv-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.loc-adv-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.adv-check-icon {
  color: #FF6A00;
  font-weight: 900;
  font-size: 14px;
}

/* ==================================================
   LOCATION FAQ ACCORDION
   ================================================== */
.loc-faq-section {
  padding-bottom: 50px;
}

.loc-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.loc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-faq-item {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.loc-faq-item.is-open {
  border-color: #4F20FF;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.06);
}

.loc-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.loc-faq-q {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.3;
}

.loc-faq-item.is-open .loc-faq-q {
  color: #4F20FF;
}

.loc-faq-icon {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #64748B;
  flex-shrink: 0;
  margin-left: 12px;
}

.loc-faq-item.is-open .loc-faq-icon {
  color: #FF6A00;
}

.loc-faq-drawer {
  padding: 0 20px 16px 20px;
}

.loc-faq-a {
  font-family: var(--font-body);
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* ==================================================
   NEARBY LOCATIONS
   ================================================== */
.loc-nearby-section {
  padding-bottom: 50px;
}

.loc-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.loc-nearby-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.22s ease;
}

.loc-nearby-card:hover {
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 32, 255, 0.08);
}

.loc-nb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.loc-nb-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #FF6A00;
}

.loc-nb-arrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  color: #CBD5E1;
  transition: all 0.2s ease;
}

.loc-nearby-card:hover .loc-nb-arrow {
  color: #4F20FF;
  transform: translateX(3px);
}

.loc-nb-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 4px 0;
}

.loc-nb-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.loc-nb-link-text {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: #4F20FF;
}

/* ==================================================
   FINAL CTA BANNER
   ================================================== */
.loc-final-cta-section {
  padding-bottom: 40px;
}

.loc-final-cta-card {
  background: linear-gradient(135deg, #0B1020 0%, #150B38 45%, #2B0A91 100%);
  border-radius: 24px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(43, 10, 145, 0.25);
}

.loc-fcta-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #FF8800;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: block;
}

.loc-fcta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
}

.loc-fcta-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 22px;
}

.loc-fcta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-loc-fcta-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-loc-fcta-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.55);
}

.btn-loc-fcta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #0B1020 !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-loc-fcta-wa:hover {
  transform: translateY(-2px);
  color: #25D366 !important;
}

.loc-fcta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-fcta-truck-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

/* ==========================================================================
   LOCATIONS RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1180px) {
  .loc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-services-grid,
  .loc-matrix-grid,
  .loc-dservices-grid,
  .loc-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .loc-why-split-grid {
    grid-template-columns: 1fr;
  }

  .loc-detail-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loc-overview-grid {
    grid-template-columns: 1fr;
  }

  .loc-advantage-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .locations-hub-page,
  .location-detail-page {
    padding: 120px 0 40px 0;
  }

  .loc-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .loc-cards-grid {
    grid-template-columns: 1fr;
  }

  .loc-network-visual-card {
    padding: 18px 16px;
  }

  .loc-network-map-abstract {
    min-height: 280px;
  }

  .node-badge {
    padding: 6px 10px;
  }

  .node-name {
    font-size: 11px;
  }

  .node-sub {
    font-size: 9px;
  }

  .loc-stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .loc-services-grid,
  .loc-matrix-grid,
  .loc-dservices-grid,
  .loc-nearby-grid {
    grid-template-columns: 1fr;
  }

  .loc-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .loc-dhero-photo-wrapper {
    height: 260px;
    max-height: 260px;
  }

  .loc-trust-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loc-final-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
  }

  .loc-fcta-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .loc-stats-grid {
    grid-template-columns: 1fr;
  }

  .loc-trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .loc-dhero-stat-pills {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================================================
   2026 ULTRA-COMPACT CONTACT EXPERIENCE SYSTEM (1-2 SCROLLS)
   ========================================================================== */
.contact-compact-page {
  position: relative;
  background-color: #F7F7FA;
  padding: 175px 0 50px 0;
}

.contact-compact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- ROW 1: COMPACT TOP ROW (INFO & MAP LEFT + FORM RIGHT) --- */
.c-contact-top-row {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.c-contact-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.c-contact-header-block {
  display: flex;
  flex-direction: column;
}

.compact-contact-h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}

.compact-contact-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* 4 Direct Channels Grid (2x2) */
.c-contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-ch-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 13px 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(11, 16, 32, 0.02);
  transition: all 0.2s ease;
}

a.c-ch-card:hover {
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 32, 255, 0.08);
}

.c-ch-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.c-ch-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.c-ch-tag {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 900;
  color: #64748B;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.c-ch-val {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 900;
  color: #0B1020;
  line-height: 1.2;
}

.c-ch-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}

.c-ch-email-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-email-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #2B0A91;
  text-decoration: none;
  transition: color 0.15s ease;
  word-break: break-all;
}

.c-email-link:hover {
  color: #FF6A00;
  text-decoration: underline;
}

.c-ch-val-addr {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}

/* Compact Map Box */
.c-contact-map-box {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(11, 16, 32, 0.02);
}

.c-map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #334155;
}

.c-map-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.c-map-dir-link {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: #4F20FF;
  text-decoration: none;
}

.c-map-dir-link:hover {
  color: #FF6A00;
}

.c-map-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  height: 145px;
  min-height: 145px;
  background: #F1F5F9;
  position: relative;
}

.c-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 145px;
  border: 0;
}

/* Right: Compact Form Card */
.c-contact-right-col {
  display: flex;
  flex-direction: column;
}

.c-contact-form-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.03);
  display: flex;
  flex-direction: column;
}

.c-form-header {
  margin-bottom: 14px;
}

.c-form-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 900;
  color: #FF6A00;
  background: #FFF0E6;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.c-form-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0B1020;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.c-form-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #64748B;
  margin: 0;
}

.c-compact-form {
  display: flex;
  flex-direction: column;
}

.c-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.c-form-group-full {
  grid-column: span 2;
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #0B1020;
  background: #F8F7FC;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.c-form-textarea {
  resize: none;
  height: 60px;
  line-height: 1.45;
}

.c-form-input:focus,
.c-form-select:focus,
.c-form-textarea:focus {
  border-color: #4F20FF;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(79, 32, 255, 0.08);
}

.c-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.c-btn-form-submit {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.28);
  transition: all 0.2s ease;
}

.c-btn-form-submit:hover {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  transform: translateY(-1px);
}

.c-btn-form-wa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #0B1020 !important;
  border: 1.5px solid #E2E8F0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.c-btn-form-wa:hover {
  border-color: #25D366;
  color: #25D366 !important;
  background: #F8FFF9;
}

.c-form-trust-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  border-top: 1px solid #F1F5F9;
  padding-top: 12px;
}

/* --- ROW 2: KUTCH OPERATING HUBS (LEFT) + COMPACT FAQS (RIGHT) --- */
.c-contact-bottom-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.c-contact-hubs-col,
.c-contact-faq-col {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(11, 16, 32, 0.03);
}

.c-hubs-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.c-hub-mini-card {
  background: #F8F7FC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.c-hub-mini-card:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 32, 255, 0.07);
}

.c-hm-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.c-hm-num {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 900;
  color: #FF6A00;
}

.c-hm-name {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #0B1020;
}

.c-hm-hq {
  background: #FF6A00;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 8.5px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 4px;
}

.c-hm-tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #64748B;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-hm-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #334155;
  border-top: 1px solid #E2E8F0;
  padding-top: 6px;
}

.c-hm-arr {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: #4F20FF;
}

/* Compact FAQs */
.c-compact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 1180px) {
  .c-contact-top-row {
    grid-template-columns: 1fr;
  }

  .c-contact-bottom-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-compact-page {
    padding: 120px 0 40px 0;
  }

  .c-contact-channels-grid {
    grid-template-columns: 1fr;
  }

  .c-form-grid {
    grid-template-columns: 1fr;
  }

  .c-form-group-full {
    grid-column: span 1;
  }

  .c-hubs-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-compact-container {
    padding: 0 14px;
    gap: 18px;
  }

  .c-contact-form-card {
    padding: 18px 16px;
  }

  .c-form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .c-btn-form-submit,
  .c-btn-form-wa {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .c-form-trust-pills {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .c-map-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ==========================================================================
   2026 PUSHPAK BLOG & RELOCATION GUIDES SYSTEM
   ========================================================================== */
.blog-hub-page {
  position: relative;
  background-color: #F7F7FA;
  padding: 175px 0 60px 0;
  min-height: 100vh;
}

.blog-detail-page {
  position: relative;
  background-color: #F7F7FA;
  padding: 145px 0 50px 0;
  min-height: 100vh;
}

.blog-hub-container,
.blog-detail-container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- 1. BLOG HUB HERO --- */
.blog-hero-section {
  padding-bottom: 36px;
}

.blog-hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.blog-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.blog-hero-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0 auto 24px auto;
}

/* Category Filter Pills */
.blog-category-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.b-cat-pill {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.b-cat-pill:hover {
  border-color: #4F20FF;
  color: #4F20FF;
  transform: translateY(-1px);
}

.b-cat-pill.active {
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(79, 32, 255, 0.25);
}

/* --- 2. SPOTLIGHT ARTICLE CARD --- */
.blog-spotlight-section {
  padding-bottom: 50px;
}

.blog-spotlight-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 10px 30px rgba(11, 16, 32, 0.04);
  transition: all 0.25s ease;
}

.blog-spotlight-card:hover {
  border-color: #4F20FF;
  box-shadow: 0 16px 36px rgba(79, 32, 255, 0.1);
}

.b-spotlight-visual {
  position: relative;
  background: #0B1020;
  overflow: hidden;
  min-height: 320px;
}

.b-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-spotlight-card:hover .b-spotlight-img {
  transform: scale(1.03);
}

.b-spotlight-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #FF6A00;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.6px;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.35);
}

.b-spotlight-content {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #64748B;
  margin-bottom: 12px;
}

.b-cat-tag {
  color: #4F20FF;
  font-family: var(--font-heading);
  font-weight: 800;
}

.b-dot {
  color: #CBD5E1;
}

.b-spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  color: #0B1020;
  margin: 0 0 12px 0;
}

.b-spotlight-title a {
  color: #0B1020;
  text-decoration: none;
  transition: color 0.2s ease;
}

.b-spotlight-title a:hover {
  color: #FF6A00;
}

.b-spotlight-excerpt {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.b-spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
  flex-wrap: wrap;
  gap: 14px;
}

.b-author-info {
  display: flex;
  flex-direction: column;
}

.b-author-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0B1020;
}

.b-author-role {
  font-family: var(--font-body);
  font-size: 11px;
  color: #64748B;
}

.btn-read-article {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4F20FF 0%, #2B0A91 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(79, 32, 255, 0.25);
}

.btn-read-article:hover {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  transform: translateY(-1px);
  color: #FFFFFF;
}

/* --- 3. ARTICLE GRID --- */
.blog-grid-section {
  padding-bottom: 60px;
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b-article-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.02);
  transition: all 0.22s ease;
}

.b-article-card:hover {
  border-color: #4F20FF;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(79, 32, 255, 0.08);
}

.b-card-visual {
  position: relative;
  height: 200px;
  background: #0B1020;
  overflow: hidden;
}

.b-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.b-article-card:hover .b-card-img {
  transform: scale(1.05);
}

.b-card-cat-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.b-card-body {
  padding: 20px;
  flex-grow: 1;
}

.b-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #64748B;
  margin-bottom: 8px;
}

.b-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: #0B1020;
  line-height: 1.3;
  margin: 0 0 8px 0;
}

.b-card-title a {
  color: #0B1020;
  text-decoration: none;
  transition: color 0.2s ease;
}

.b-card-title a:hover {
  color: #FF6A00;
}

.b-card-excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.b-card-footer {
  padding: 12px 20px 18px 20px;
  border-top: 1px solid #F1F5F9;
}

.b-card-read-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #4F20FF;
  text-decoration: none;
  transition: all 0.2s ease;
}

.b-card-read-link:hover {
  color: #FF6A00;
  gap: 8px;
}

/* --- 4. BLOG CTA SECTION --- */
.blog-cta-section {
  padding-bottom: 40px;
}

.blog-cta-card {
  background: linear-gradient(135deg, #2B0A91 0%, #150552 100%);
  border-radius: 24px;
  padding: 36px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 32px rgba(43, 10, 145, 0.25);
  flex-wrap: wrap;
}

.b-cta-left {
  max-width: 680px;
}

.b-cta-badge {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 900;
  color: #FF6A00;
  letter-spacing: 0.6px;
  display: inline-block;
  margin-bottom: 6px;
}

.b-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.b-cta-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #CBD5E1;
  line-height: 1.55;
  margin: 0;
}

.b-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.b-btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8800 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
  transition: all 0.2s ease;
}

.b-btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.45);
}

.b-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.b-btn-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF !important;
}

/* --- 5. BLOG ARTICLE DETAIL PAGE --- */
.b-header-meta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  margin-bottom: 8px;
}

.b-cat-capsule {
  background: #F1EDFF;
  color: #4F20FF;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.b-article-h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.b-article-lead {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 12px;
}

.b-author-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: #F8F7FC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 16px;
}

.b-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1EDFF;
  color: #4F20FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b-author-details {
  display: flex;
  flex-direction: column;
}

.bad-name {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #0B1020;
}

.bad-role {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #64748B;
}

/* Detail 2-Column Split */
.blog-detail-2col-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.b-article-main-col {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 4px 18px rgba(11, 16, 32, 0.03);
}

.b-article-photo-frame {
  border-radius: 14px;
  overflow: hidden;
  height: 300px;
  max-height: 300px;
  margin-bottom: 20px;
  background: #0B1020;
}

.b-article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Key Takeaways Box */
.b-key-takeaways-box {
  background: #FFF9F5;
  border: 1.5px solid #FFE4D6;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 30px;
}

.b-kt-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.b-kt-header h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #0B1020;
  margin: 0;
}

.b-kt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b-kt-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}

.b-kt-dot {
  color: #FF6A00;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

/* Article Body Content */
.b-article-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.b-sec-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0B1020;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.b-sec-p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

/* Tags & Nav Row */
.b-article-tags-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.b-tags-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: #64748B;
}

.b-tags-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.b-tag-pill {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: #4F20FF;
  background: #F1EDFF;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Social Share Bar */
.b-share-section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.b-share-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.b-share-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.b-share-icons-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.b-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #FFFFFF;
}

.b-share-btn.share-wa {
  color: #16A34A;
  border-color: #BBF7D0;
}

.b-share-btn.share-wa:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.b-share-btn.share-fb {
  color: #1877F2;
  border-color: #BFDBFE;
}

.b-share-btn.share-fb:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
}

.b-share-btn.share-x {
  color: #0F172A;
  border-color: #E2E8F0;
}

.b-share-btn.share-x:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.b-share-btn.share-li {
  color: #0A66C2;
  border-color: #BAE6FD;
}

.b-share-btn.share-li:hover {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
}

.b-share-btn.share-copy {
  color: #475569;
  border-color: #CBD5E1;
}

.b-share-btn.share-copy:hover {
  background: #4F20FF;
  color: #FFFFFF;
  border-color: #4F20FF;
}

.b-share-btn.share-copy .copy-text-success {
  display: none;
}

.b-share-btn.share-copy.copied {
  background: #16A34A !important;
  color: #FFFFFF !important;
  border-color: #16A34A !important;
}

.b-share-btn.share-copy.copied .copy-text-default {
  display: none;
}

.b-share-btn.share-copy.copied .copy-text-success {
  display: inline;
}

.b-article-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.b-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.b-btn-back:hover {
  color: #4F20FF;
}

.b-btn-share-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #16A34A;
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.b-btn-share-wa:hover {
  background: #25D366;
  color: #FFFFFF;
}

/* Sidebar Column */
.b-article-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.b-sidebar-form-card,
.b-sidebar-related-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(11, 16, 32, 0.03);
}

.bsf-header {
  margin-bottom: 14px;
}

.bsf-badge {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 900;
  color: #FF6A00;
  background: #FFF0E6;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 4px;
}

.bsf-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #0B1020;
  margin: 0 0 2px 0;
}

.bsf-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #64748B;
  margin: 0;
}

.bsf-trust {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #334155;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
  margin-top: 12px;
}

.bsr-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  color: #0B1020;
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #F1F5F9;
}

.bsr-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bsr-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: #F8F7FC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bsr-item:hover {
  background: #FFFFFF;
  border-color: #4F20FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 32, 255, 0.08);
}

.bsr-cat {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 900;
  color: #4F20FF;
}

.bsr-item-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #0B1020;
  line-height: 1.35;
  margin: 0;
}

.bsr-meta {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #64748B;
  margin-top: 4px;
}

/* --- BLOG RESPONSIVE --- */
@media (max-width: 1180px) {
  .blog-spotlight-card {
    grid-template-columns: 1fr;
  }

  .blog-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-2col-layout {
    grid-template-columns: 1fr;
  }

  .b-article-sidebar-col {
    position: static;
  }
}

@media (max-width: 768px) {

  .blog-hub-page,
  .blog-detail-page {
    padding: 120px 0 40px 0;
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
  }

  .blog-spotlight-content {
    padding: 24px 20px;
  }

  .b-article-main-col {
    padding: 22px 18px;
  }

  .b-article-photo-frame {
    height: 240px;
    max-height: 240px;
  }

  .blog-cta-card {
    padding: 24px 20px;
    text-align: center;
  }

  .b-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .b-btn-quote,
  .b-btn-wa {
    width: 100%;
    justify-content: center;
  }
}

/* ==================================================
   CUSTOMER SUPPORT & ACTIVE FOOTPRINT SECTION
   ================================================== */
.customer-support-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #0B1020 0%, #151D36 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.customer-support-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 32, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.customer-support-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.support-main-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.support-left-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: #FF8C38;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.support-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  display: inline-block;
  animation: supportPulse 1.8s infinite;
}

@keyframes supportPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.support-heading {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 12px 0;
}

.support-heading span {
  color: #FF8C38;
}

.support-subtext {
  font-family: var(--font-body);
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0 0 24px 0;
}

.support-hotline-box {
  background: linear-gradient(135deg, rgba(79, 32, 255, 0.2) 0%, rgba(255, 106, 0, 0.15) 100%);
  border: 1.5px solid rgba(255, 106, 0, 0.35);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.hotline-info {
  display: flex;
  flex-direction: column;
}

.hotline-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: #CBD5E1;
  margin-bottom: 2px;
}

.hotline-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.hotline-number:hover {
  color: #FF8C38;
}

.hotline-btn-call {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8C38 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hotline-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.5);
  color: #FFFFFF;
}

.support-action-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.support-pill-btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.support-pill-wa {
  background: #25D366;
  color: #FFFFFF;
}

.support-pill-wa:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.support-pill-quote {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.support-pill-quote:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Right Footprint Box */
.support-right-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footprint-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.footprint-stat-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 16px;
  transition: all 0.25s ease;
}

.footprint-stat-item:hover {
  border-color: rgba(255, 106, 0, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.fp-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #FF8C38;
  display: block;
  margin-bottom: 2px;
}

.fp-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: #CBD5E1;
  font-weight: 600;
  line-height: 1.35;
}

.footprint-perks-list {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-perk-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fp-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fp-perk-text {
  font-size: 13px;
  color: #E2E8F0;
  line-height: 1.45;
}

.fp-perk-text strong {
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .support-main-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 575px) {
  .support-left-card {
    padding: 24px 18px;
  }

  .support-heading {
    font-size: 23px;
  }

  .hotline-number {
    font-size: 21px;
  }

  .support-hotline-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hotline-btn-call {
    width: 100%;
    justify-content: center;
  }

  .footprint-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   MASTER MOBILE NAVIGATION DRAWER & ACCORDIONS
   ================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background-color: #FFFFFF;
  z-index: 999999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(11, 16, 32, 0.25);
}

.mobile-nav-drawer.active {
  transform: translateX(0) !important;
}

.drawer-header {
  padding: 16px 20px;
  border-bottom: 1.5px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
}

.drawer-logo {
  display: flex;
  align-items: center;
}

.drawer-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.drawer-close-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B1020;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background-color: #FEE2E2;
  color: #EF4444;
  border-color: #FCA5A5;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  color: #1E293B;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #FFF5EE;
  color: #FF6A00;
}

.mobile-nav-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-icon {
  color: #64748B;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover .mobile-menu-icon,
.mobile-nav-link.active .mobile-menu-icon {
  color: #FF6A00;
}

.mobile-accordion-chevron {
  color: #94A3B8;
  transition: transform 0.25s ease;
}

.mobile-dropdown-toggle.active .mobile-accordion-chevron {
  transform: rotate(180deg);
  color: #FF6A00;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px 0 6px 36px;
  border-left: 2px solid #F1F5F9;
  margin: 4px 0 6px 20px;
}

.mobile-dropdown-menu.active {
  display: flex;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #475569;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-sub-link:hover {
  color: #FF6A00;
  background: #FFF9F5;
  padding-left: 16px;
}

.mobile-sub-icon {
  color: #FF6A00;
  flex-shrink: 0;
}

.drawer-footer {
  padding: 16px 18px;
  border-top: 1.5px solid #F1F5F9;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-drawer-quote {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8C38 100%);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.drawer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drawer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-drawer-call {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.btn-drawer-wp {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}

/* --- SEO KEYWORD CLUSTER & POPULAR SEARCHES SECTION --- */
.seo-keyword-hub-section {
  padding: 60px 0;
  background: #FAFAFD;
  border-top: 1px solid #EAEAEF;
  border-bottom: 1px solid #EAEAEF;
}

.seo-hub-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.seo-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.seo-hub-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.seo-hub-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.seo-hub-card {
  background: #FFFFFF;
  border: 1px solid #E8EBF2;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 32, 255, 0.08);
  border-color: #D8D4FF;
}

.seo-hub-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0F2F7;
}

.seo-hub-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo-hub-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.seo-hub-tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-hub-tags-list li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  padding: 7px 10px;
  background: #F8FAFC;
  border: 1px solid #EEF2F6;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.35;
  transition: all 0.2s ease;
}

.seo-hub-tags-list li a:before {
  content: "›";
  color: var(--color-primary-electric);
  font-size: 15px;
  font-weight: bold;
  margin-right: 6px;
}

.seo-hub-tags-list li a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  border-color: #D3C9FE;
  padding-left: 13px;
}

@media (max-width: 1200px) {
  .seo-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .seo-hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .seo-hub-title {
    font-size: 22px;
  }
}

/* ==================================================
   INTERSTATE ROUTES HUB & DETAIL PAGES
   ================================================== */
.routes-hub-main {
  min-height: 100vh;
  background-color: #F8F9FD;
}

/* Full-width container matching Floating Header Island */
.routes-container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 991px) {
  .routes-container {
    padding: 0 18px;
  }
}

.routes-hub-hero-section {
  position: relative;
  background: linear-gradient(180deg, #F3EFFE 0%, #FAFAFD 100%);
  padding: 165px 0 60px 0;
  border-bottom: 1px solid #EBE7FA;
}

.routes-breadcrumb-nav {
  margin-bottom: 24px;
}

.routes-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748B;
}

.routes-breadcrumb-list a {
  color: var(--color-primary-electric);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.routes-breadcrumb-list a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.routes-sep {
  color: #CBD5E1;
}

.routes-current {
  color: #1E293B;
  font-weight: 600;
}

/* 2-Column Hero Layout */
.routes-hero-layout {
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.routes-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(79, 32, 255, 0.08);
}

.routes-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.routes-hero-heading .text-orange-accent {
  color: var(--color-accent);
}

.routes-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-electric), var(--color-accent));
  border-radius: 4px;
  margin-bottom: 16px;
}

.routes-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 720px;
}

.routes-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn-routes-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FF8533 100%);
  color: #FFFFFF;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.28);
  transition: all 0.25s ease;
}

.btn-routes-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.38);
  color: #FFFFFF;
}

.btn-routes-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #FFFFFF;
  color: var(--color-primary);
  border: 1.5px solid #D8D4F8;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-routes-phone:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-electric);
  color: var(--color-primary-electric);
  transform: translateY(-2px);
}

.routes-hero-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.r-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
}

.r-trust-badge svg {
  color: var(--color-primary-electric);
}

/* Right Side Dispatch Card */
.routes-stat-summary-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E9F2;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(43, 10, 145, 0.06);
  position: relative;
  overflow: hidden;
}

.routes-stat-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-electric), var(--color-accent));
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pulse-indicator {
  position: relative;
  width: 12px;
  height: 12px;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #10B981;
  opacity: 0.75;
  animation: pulsePing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
}

@keyframes pulsePing {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.stat-card-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  color: #0B1020;
  margin: 0;
}

.stat-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-box {
  background: #F8FAFD;
  border: 1px solid #EAEFF7;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary-electric);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  line-height: 1.3;
}

.stat-card-footer {
  border-top: 1px solid #F1F4F9;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat-footer-text {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
}

.stat-card-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.stat-card-wa-btn:hover {
  background: #16A34A;
  color: #FFFFFF;
}

/* Routes Grid Section (3-4 Cards Row on Large Screens) */
.routes-grid-section {
  padding: 60px 0 90px 0;
  background-color: #F8F9FD;
}

.routes-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.route-hub-card {
  background: #FFFFFF;
  border: 1.5px solid #E6EAF2;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.route-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(79, 32, 255, 0.1);
  border-color: #D3C9FE;
}

.route-card-top-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.route-distance-badge {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--color-primary-electric);
  background: var(--color-primary-light);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.route-transit-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 20px;
}

.route-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.route-card-title a {
  color: #0B1020;
  text-decoration: none;
  transition: color 0.2s ease;
}

.route-card-title a:hover {
  color: var(--color-primary-electric);
}

.route-arrow {
  color: var(--color-accent);
  margin: 0 4px;
}

.route-card-desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.route-card-footer {
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.route-pricing-box {
  display: flex;
  flex-direction: column;
}

.pricing-sublabel {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-accent);
}

.btn-view-route {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-route:hover {
  background: var(--color-primary-electric);
  transform: translateX(2px);
  color: #FFFFFF;
}

/* Generic Page Hero (for route detail) */
.page-hero,
.route-page-hero {
  position: relative;
  background: linear-gradient(180deg, #F3EFFE 0%, #FAFAFD 100%);
  padding: 165px 0 55px 0;
  border-bottom: 1px solid #EBE7FA;
}

.page-hero .breadcrumb-nav {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #64748B;
}

.page-hero .breadcrumb-nav a {
  color: var(--color-primary-electric);
  text-decoration: none;
  font-weight: 600;
}

.page-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Route Detail Hero */
.route-detail-hero-section {
  position: relative;
  background: linear-gradient(180deg, #F3EFFE 0%, #FAFAFD 100%);
  padding: 165px 0 60px 0;
  border-bottom: 1px solid #EBE7FA;
}

.route-detail-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.route-detail-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  color: #0B1020;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.route-detail-hero-heading .text-orange-accent {
  color: var(--color-accent);
}

.route-detail-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 720px;
}

/* Route Specs Snapshot Box */
.route-specs-box {
  background: #FFFFFF;
  border: 1.5px solid #E5E9F2;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 36px rgba(43, 10, 145, 0.06);
  position: relative;
  overflow: hidden;
}

.route-specs-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-electric), var(--color-accent));
}

.specs-box-header {
  margin-bottom: 18px;
}

.specs-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary-electric);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.specs-box-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0B1020;
  margin: 0;
}

.specs-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.specs-item {
  background: #F8FAFD;
  border: 1px solid #EAEFF7;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.specs-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 4px;
}

.specs-val-highlight {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary-electric);
  line-height: 1.1;
}

.specs-val-text {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #0B1020;
}

.specs-val-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}

.specs-box-highway-tag {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: #1E40AF;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Route Pricing Section (5-Card Modern Matrix) */
.route-pricing-section {
  padding: 60px 0 70px 0;
  background-color: #F8F9FD;
  border-bottom: 1px solid #EAEAEF;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1.5px solid #E6EAF2;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(11, 16, 32, 0.03);
  transition: all 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(79, 32, 255, 0.08);
  border-color: #D3C9FE;
}

.pricing-card.is-featured {
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.pricing-card-top {
  margin-bottom: 14px;
}

.p-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.p-type-badge.featured-badge {
  background: #FFF2E8;
  color: #FF6A00;
  font-weight: 800;
}

.p-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #0B1020;
  margin: 0;
}

.p-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #F1F4F9;
  border-bottom: 1px solid #F1F4F9;
  margin-bottom: 16px;
}

.p-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-accent);
}

.p-transit {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
}

.p-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-grow: 1;
}

.p-features-list li {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
}

.p-features-list li::before {
  content: "✓";
  color: #10B981;
  font-weight: bold;
  font-size: 14px;
  margin-right: 8px;
}

.btn-pricing-action {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-pricing-action:hover {
  background: var(--color-primary-electric);
  color: #FFFFFF;
}

.btn-pricing-action.is-featured-btn {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.25);
}

.btn-pricing-action.is-featured-btn:hover {
  background: var(--color-accent-hover);
  color: #FFFFFF;
}

.pricing-disclaimer {
  font-size: 12.5px;
  color: #64748B;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Highway Route Stepper Timeline Section */
.route-timeline-section {
  padding: 60px 0 70px 0;
  background-color: #FAFAFD;
  border-bottom: 1px solid #EAEAEF;
}

.checkpoints-timeline-wrap {
  background: #FFFFFF;
  border: 1.5px solid #E6EAF2;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.timeline-highway-bar {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: #1E293B;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-highway-bar .th-label {
  color: #64748B;
  font-weight: 600;
}

.timeline-highway-bar strong {
  color: var(--color-primary-electric);
}

.checkpoints-stepper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  position: relative;
}

.checkpoint-step-card {
  background: #F8FAFD;
  border: 1.5px solid #EAEFF7;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}

.checkpoint-step-card:hover {
  border-color: #C7D2FE;
  background: #FFFFFF;
  box-shadow: 0 6px 18px rgba(79, 32, 255, 0.06);
}

.cp-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-electric);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-step-info {
  display: flex;
  flex-direction: column;
}

.cp-step-type {
  font-size: 10.5px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.cp-step-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #0B1020;
  margin: 0;
}

/* Route FAQs Section */
.route-faq-section {
  padding: 60px 0 70px 0;
  background-color: #F8F9FD;
}

.route-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.route-faq-card {
  background: #FFFFFF;
  border: 1.5px solid #E6EAF2;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-q-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #0B1020;
  margin: 0 0 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}

.faq-q-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-electric);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  padding-left: 32px;
}

/* Route Final CTA Banner */
.route-final-cta-section {
  padding: 0 0 70px 0;
  background-color: #F8F9FD;
}

.route-cta-banner {
  background: linear-gradient(135deg, #0B1020 0%, #1E0766 100%);
  border-radius: 24px;
  padding: 40px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(11, 16, 32, 0.2);
}

.r-cta-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.r-cta-desc {
  font-size: 14.5px;
  color: #CBD5E1;
  margin: 0;
  max-width: 680px;
}

.r-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cta-call:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .routes-hero-layout,
  .route-detail-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .routes-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .route-faq-list {
    grid-template-columns: 1fr;
  }
  .route-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .r-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .routes-hub-hero-section,
  .route-detail-hero-section,
  .page-hero,
  .route-page-hero {
    padding: 120px 0 40px 0;
  }

  .routes-hub-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}