/* ==========================================================================
   SONANCHAL PRINTERS - MASTER CSS DESIGN SYSTEM (CREATIVE LUXURY EDITION)
   Glassmorphism Aesthetics | Perfect Spacing & Typography | Responsive Layout
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --primary-navy: #2A438A;
  --primary-navy-dark: #1A2B5C;
  --primary-navy-light: #3D5BB0;

  /* CMYK Accents */
  --cmyk-cyan: #00AEEF;
  --cmyk-magenta: #EC008C;
  --cmyk-yellow: #FFF200;
  --whatsapp-green: #25D366;

  /* Surfaces */
  --bg-white: #FFFFFF;
  --bg-pearl-gray: #F8FAFC;
  --bg-dark-slate: #0B132B;
  --bg-glass-dark: rgba(255, 255, 255, 0.07);
  --bg-glass-card: rgba(255, 255, 255, 0.06);

  /* Typography */
  --text-dark: #1E293B;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-glass: rgba(255, 255, 255, 0.16);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-glass: 0 25px 50px rgba(0, 0, 0, 0.35);

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.4px;
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--primary-navy);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cmyk-cyan), var(--cmyk-magenta), var(--cmyk-yellow));
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-heading p.subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

/* CMYK Brand Line Decorator */
.cmyk-bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--cmyk-cyan) 0%, var(--cmyk-cyan) 25%, var(--cmyk-magenta) 25%, var(--cmyk-magenta) 50%, var(--cmyk-yellow) 50%, var(--cmyk-yellow) 75%, var(--primary-navy) 75%, var(--primary-navy) 100%);
}

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(42, 67, 138, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(42, 67, 138, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--text-white);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* --------------------------------------------------------------------------
   4. HEADER & STICKY NAVIGATION
   -------------------------------------------------------------------------- */

/* Header & Sticky Navigation System (Batch 1 Polish) */
.site-header {
  overflow: visible !important;

  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(11, 19, 43, 0.06);

}

.header-container {
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 20px;

}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 2px 0;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo img {
  height: 48px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  overflow: visible !important;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;

}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  list-style: none;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.2px;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--primary-navy);
}

.header-actions .btn-primary {
  padding: 10px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.1px;
}



.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary-navy);
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.show-proof .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: 0.84rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--bg-pearl-gray);
  color: var(--primary-navy);
  padding-left: 22px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (HOME PAGE SLIDER)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 560px;
  overflow: hidden;
  background-color: #070D1E;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 30, 0.92) 0%, rgba(7, 13, 30, 0.78) 55%, rgba(7, 13, 30, 0.45) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  color: var(--text-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cmyk-yellow);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.slider-controls {
  position: absolute;
  bottom: 28px;
  right: 48px;
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active, .slider-dot:hover {
  background-color: var(--cmyk-cyan);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   6. SUBPAGE HERO SECTION
   -------------------------------------------------------------------------- */
.page-hero-section {
  position: relative;
  padding: 85px 0 65px;
  background: linear-gradient(135deg, #070D1E 0%, #162447 50%, #0B132B 100%);
  color: var(--text-white);
  overflow: hidden;
}

.page-hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cmyk-yellow);
}

.page-hero-content h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.18;
  margin-bottom: 18px;
}

.page-hero-content p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   7. TRUST BAR SECTION
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 22px 0;
  border-bottom: 3px solid var(--cmyk-cyan);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 6px 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  min-height: 52px;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   8. CAPABILITIES SECTION & GRID
   -------------------------------------------------------------------------- */
.capabilities-section {
  padding: 85px 0;
  background-color: var(--bg-white);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.capability-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cmyk-cyan);
}

.card-image-wrapper {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.capability-card:hover .card-image-wrapper img {
  transform: scale(1.06);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--primary-navy);
  color: var(--text-white);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 1.22rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card-link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.card-link:hover {
  color: var(--cmyk-cyan);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. ENTERPRISE B2B HUB SECTION (.b2b-section)
   -------------------------------------------------------------------------- */
.b2b-section {
  padding: 85px 0;
  background-color: var(--bg-pearl-gray);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.b2b-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.b2b-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.b2b-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.b2b-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

.bullet-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.b2b-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.b2b-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. RAILWAY HOARDING & OOH MEDIA HUB SECTION (.railway-section)
   -------------------------------------------------------------------------- */
.railway-section {
  padding: 85px 0;
  background-color: var(--bg-white);
}

.railway-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.railway-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.railway-heading p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   LUMINOUS OOH MEDIA HIGHLIGHT BANNER (CREATIVE HIGH-CONTRAST REDESIGN)
   -------------------------------------------------------------------------- */
.ooh-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 52px;
  padding: 26px;
  background: linear-gradient(135deg, #070D1E 0%, #0F172A 60%, #1E293B 100%);
  border-radius: 16px;
  border-top: 3.5px solid #38BDF8;
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 16px 40px rgba(7, 13, 30, 0.22);
  position: relative;
  overflow: hidden;
}

.ooh-metrics-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.metric-pill {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.metric-pill:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.25);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38BDF8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.metric-pill:nth-child(1) .metric-icon {
  background: rgba(236, 72, 153, 0.18);
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.25);
}

.metric-pill:nth-child(2) .metric-icon {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.metric-pill:nth-child(3) .metric-icon {
  background: rgba(250, 204, 21, 0.18);
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.25);
}

.metric-pill:nth-child(4) .metric-icon {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.25);
}

.metric-data strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.metric-data span {
  font-size: 0.83rem;
  color: #7DD3FC !important; /* Luminous Sky Cyan */
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

@media (max-width: 1024px) {
  .ooh-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ooh-metrics-bar {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}


.media-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.zone-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.zone-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cmyk-cyan);
}

.zone-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.zone-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zone-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--primary-navy);
  color: var(--text-white);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.zone-size-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: rgba(7, 13, 30, 0.85);
  color: var(--cmyk-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.zone-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.zone-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.zone-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cmyk-cyan);
  margin-bottom: 16px;
}

.zone-site-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.zone-site-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.zone-actions {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.zone-link {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.zone-link:hover {
  color: var(--cmyk-cyan);
  transform: translateX(4px);
}

.railway-actions-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   11. EDITORIAL SEO CONTENT WRITEUP SECTION
   -------------------------------------------------------------------------- */
.editorial-section {
  padding: 85px 0;
  background-color: var(--bg-white);
}

.editorial-container {
  max-width: 960px;
  margin: 0 auto;
}

.editorial-body {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.editorial-body p {
  margin-bottom: 22px;
}

.editorial-body h3 {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin: 32px 0 16px;
}

.editorial-highlight-box {
  background-color: var(--bg-pearl-gray);
  border-left: 4px solid var(--cmyk-cyan);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 85px 0;
  background-color: var(--bg-pearl-gray);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--cmyk-cyan);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--cmyk-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --------------------------------------------------------------------------
   13. LUXURY GLASSMORPHIC CONTACT HUB
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 95px 0;
  background: linear-gradient(135deg, #0B132B 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

.glass-contact-card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-glass);
  text-align: center;
}

.glass-contact-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  color: var(--text-white);
  margin-bottom: 14px;
}

.glass-contact-card p.cta-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin: 0 auto 45px;
  line-height: 1.6;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-method-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-normal);
}

.contact-method-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.icon-phone {
  background: rgba(0, 174, 239, 0.2);
  color: var(--cmyk-cyan);
}

.icon-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: var(--whatsapp-green);
}

.icon-email {
  background: rgba(236, 0, 140, 0.2);
  color: var(--cmyk-magenta);
}

.contact-method-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-method-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   14. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark-slate);
  color: var(--text-light);
  padding-top: 80px;
  font-size: 0.9rem;
  border-top: 4px solid var(--primary-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--cmyk-cyan);
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-about-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.factual-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 12px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--cmyk-cyan);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-icon {
  color: var(--cmyk-cyan);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  background-color: #050A17;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   15. MODALS & FORMS
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-white);
  width: 90%;
  max-width: 560px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  transform: translateY(20px) scale(0.96);
  transition: var(--transition-normal);
  position: relative;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: var(--text-white);
  font-size: 1.25rem;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(42, 67, 138, 0.15);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .b2b-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .media-zones-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-item {
    border-right: none;
    padding: 10px;
  }
  .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap: 28px;
  margin-bottom: 60px;
}
  .ooh-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-container {
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 0 24px;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap: 28px;
  margin-bottom: 60px;
}
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .glass-contact-card {
    padding: 36px 20px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-section {
    height: 480px;
  }
  .slider-controls {
    right: 20px;
    bottom: 20px;
  }
  .ooh-metrics-bar {
    grid-template-columns: 1fr;
  }
  .railway-actions-bar {
    flex-direction: column;
    width: 100%;
  }
  .railway-actions-bar .btn {
    width: 100%;
  }
}

/* Visual Micro-Batch 1: Split Hero System */
.page-hero-section.split-hero-active {
  padding: 52px 0 48px;
}

.split-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.split-hero-text {
  text-align: left;
}

.split-hero-text .breadcrumb-nav {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.split-hero-text h1 {
  font-size: clamp(2.0rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF !important;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.split-hero-text p {
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.6;
  margin-bottom: 24px;
}

.split-hero-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.split-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .page-hero-section.split-hero-active {
    padding: 40px 0 36px;
  }
  .split-hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split-hero-text {
    text-align: center;
  }
  .split-hero-text .breadcrumb-nav {
    justify-content: center;
  }
  .split-hero-media img {
    max-height: 280px;
  }
}


/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid #38BDF8;
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* Global Responsive Protection */
table, pre, code {
  max-width: 100%;
  overflow-x: auto;
}


/* Micro-Fix: Legible Light-Cyan & White Breadcrumb System for Dark Navy Heroes */
.page-hero-section .breadcrumb-nav,
.split-hero-text .breadcrumb-nav,
.breadcrumb-nav {
  font-size: 0.875rem !important; /* ~14px */
  font-weight: 500 !important;
  margin-bottom: 14px !important;
  color: rgba(255, 255, 255, 0.65) !important; /* Separator color */
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.page-hero-section .breadcrumb-nav a,
.split-hero-text .breadcrumb-nav a,
.breadcrumb-nav a {
  color: #7DD3FC !important; /* Light Cyan */
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.page-hero-section .breadcrumb-nav a:hover,
.split-hero-text .breadcrumb-nav a:hover,
.breadcrumb-nav a:hover {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}

.page-hero-section .breadcrumb-nav span,
.split-hero-text .breadcrumb-nav span,
.breadcrumb-nav span {
  color: #FFFFFF !important; /* Current page pure white */
  font-weight: 500 !important;
}


/* 5-Column Footer Responsive Adjustment */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* --------------------------------------------------------------------------
   BATCH 3: FINAL UI NORMALIZATION & COMPONENT SYSTEM
   -------------------------------------------------------------------------- */

/* Standardized Section Spacing & Reading Container */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 48px 0;
  }
}

/* Standardized Card System (Borders, Radius, Shadow) */
.capability-card,
.zone-card,
.faq-item,
.contact-method-box,
.service-hub-card {
  border-radius: var(--radius-lg) !important; /* 12px */
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.capability-card:hover,
.zone-card:hover,
.faq-item:hover,
.contact-method-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cmyk-cyan);
}

/* Standardized Button Padding & Typography */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  padding: 12px 24px;
  background-color: var(--primary-navy);
  color: var(--text-white);
  border: 1px solid var(--primary-navy);
}

.btn-primary:hover {
  background-color: var(--navy-hover);
  border-color: var(--navy-hover);
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.2);
}

.btn-secondary {
  padding: 12px 24px;
  background-color: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
}

.btn-secondary:hover {
  background-color: var(--bg-pearl-gray);
  color: var(--primary-navy);
}

.btn-whatsapp {
  padding: 12px 24px;
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  border: 1px solid var(--whatsapp-green);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* Standardized Badge/Pill System */
.card-tag,
.zone-badge,
.hero-badge span,
.metric-pill {
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: -0.1px;
}

/* Homepage Railway Card Height & Internal Alignment Normalization */
.media-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.zone-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.zone-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

@media (max-width: 1024px) {
  .media-zones-grid {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------------------------------
   BATCH 3A: RAILWAY CARD VISUAL DESIGN CLEANUP
   -------------------------------------------------------------------------- */
.media-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.zone-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); /* 12px */
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cmyk-cyan);
}

.zone-image-wrapper {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.zone-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.zone-card:hover .zone-image-wrapper img {
  transform: scale(1.03);
}

.zone-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(7, 13, 30, 0.88);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.zone-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.zone-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.zone-sub {
  font-size: 0.92rem;
  font-weight: 600;
  color: #0284C7; /* Scannable Sky Blue */
  margin-bottom: 16px;
}

.zone-site-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.zone-site-list li {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.zone-actions {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.zone-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.zone-link:hover {
  color: #0284C7;
  transform: translateX(4px);
}


/* --------------------------------------------------------------------------
   RAILWAY CARD 2x2 INFORMATION BLOCK GRID
   -------------------------------------------------------------------------- */
.zone-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 20px;
}

.info-block {
  background-color: rgba(243, 244, 246, 0.65);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.info-block-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-block-value {
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 540px) {
  .zone-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (FIX OVERSIZED SVG BUG)
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.45);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

/* --------------------------------------------------------------------------
   RESPONSIVE RAILWAY NETWORK & HUB GRID (4x2 DESKTOP, 2xN TABLET, 1xN MOBILE)
   -------------------------------------------------------------------------- */
.railway-network-grid,
.railway-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.railway-card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.railway-station-card,
.hub-station-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  height: 100%;
}

.railway-station-card:hover,
.hub-station-card:hover {
  transform: translateY(-4px);
  border-color: #38BDF8;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.railway-station-card.coming-soon,
.hub-station-card.coming-soon {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.railway-station-card.coming-soon:hover,
.hub-station-card.coming-soon:hover {
  border-color: #94A3B8;
}

.card-thumb-frame {
  width: 100%;
  height: 155px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.station-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.station-card-desc {
  font-size: 0.85rem;
  color: #CBD5E1 !important;
  line-height: 1.45;
  margin-bottom: 16px;
}

.station-card-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
}

.railway-station-card:hover .station-card-btn,
.hub-station-card:hover .station-card-btn {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
}

.station-card-pdf-btn {
  display: inline-block;
  background: #0284C7;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  width: 100%;
  margin-top: 8px;
}

.station-card-pdf-btn:hover {
  background: #0369A1;
}

/* FOOTER LEGIBILITY & LINK CONTRAST ENHANCEMENTS */
.site-footer {
  font-size: 0.88rem;
  color: #E2E8F0;
}

.site-footer h4,
.footer-col h4,
.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 14px;
}

.site-footer a,
.footer-col a,
.footer-links-list a,
.footer-links a {
  font-size: 0.88rem;
  color: #CBD5E1 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:visited,
.footer-col a:visited,
.footer-links-list a:visited,
.footer-links a:visited {
  color: #CBD5E1 !important;
}

.site-footer a:hover,
.footer-col a:hover,
.footer-links-list a:hover,
.footer-links a:hover {
  color: #38BDF8 !important;
}

.footer-contact-list li {
  font-size: 0.86rem;
  color: #CBD5E1;
}

.site-footer .footer-brand img,
.site-footer .brand-logo img,
.footer-col img[src*="logo.png"] {
  height: 44px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

/* SITETWIDE SERVICE PAGE GRID, TYPOGRAPHY & ALIGNMENT HARMONIZATION */
.editorial-section,
.b2b-section,
.capabilities-section,
.railway-section {
  padding: 60px 0;
  display: flow-root;
}

.editorial-container,
.split-hero-container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flow-root;
}

.editorial-body {
  display: flow-root;
}

.editorial-body::after,
.editorial-container::after,
.editorial-section::after {
  content: "";
  display: table;
  clear: both;
}

.editorial-container p,
.editorial-body p,
.railway-section p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 16px;
}

.editorial-container ul li,
.editorial-body ul li,
.railway-section ul li,
.station-site-list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 6px !important;
}

.editorial-container h3,
.editorial-body h3,
.railway-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  margin-top: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* SERVICE PAGE INFOGRAPHIC BADGE & OVERLAY LEGIBILITY */
.infographic-main-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0F172A;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.floating-specs-badge {
  position: absolute;
  bottom: 8px !important;
  right: 12px !important;
  left: auto !important;
  max-width: 320px !important;
  width: auto !important;
  background: rgba(15, 23, 42, 0.94) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
}

.floating-specs-badge h3 {
  color: #FFFFFF !important;
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.2px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.floating-specs-badge p,
.floating-specs-badge span {
  color: #7DD3FC !important;
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  margin: 2px 0 0 12px !important;
  line-height: 1.3 !important;
  letter-spacing: 0.2px !important;
  opacity: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .railway-network-grid,
  .railway-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .railway-network-grid,
  .railway-hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* --------------------------------------------------------------------------
   STRICT RESPONSIVE RAILWAY NETWORK & HUB GRID BOUNDS
   -------------------------------------------------------------------------- */
.railway-network-grid,
.railway-hub-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-top: 36px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.railway-card-link-wrapper {
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
  height: 100% !important;
  width: 100% !important;
}

.railway-station-card,
.hub-station-card {
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  cursor: pointer !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

.railway-station-card:hover,
.hub-station-card:hover {
  transform: translateY(-4px) !important;
  border-color: #38BDF8 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
  background: rgba(15, 23, 42, 0.95) !important;
}

.card-thumb-frame {
  width: 100% !important;
  height: 140px !important;
  max-height: 140px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.card-thumb-frame img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 1100px) {
  .railway-network-grid,
  .railway-hub-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 640px) {
  .railway-network-grid,
  .railway-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* --------------------------------------------------------------------------
   FINAL OVERRIDE FOR CARDS & THUMBNAIL IMAGE CONTAINMENT
   -------------------------------------------------------------------------- */
.card-thumb-frame {
  width: 100% !important;
  height: 140px !important;
  max-height: 140px !important;
  min-height: 140px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.card-thumb-frame img {
  max-width: 100% !important;
  max-height: 140px !important;
  width: auto !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Ensure no child img inside cards expands uncontrollably */
.railway-station-card img,
.hub-station-card img {
  max-height: 140px !important;
  object-fit: contain !important;
}


/* --------------------------------------------------------------------------
   STRICT EDITORIAL CONTAINER BOUNDS (PREVENTS WIDE EXPANSION)
   -------------------------------------------------------------------------- */
.editorial-container {
  max-width: 1080px !important;
  margin: 0 auto !important;
  width: 92% !important;
  box-sizing: border-box !important;
}

.floated-infographic-card {
  float: right !important;
  width: 440px !important;
  max-width: 100% !important;
  padding-bottom: 24px !important;
  margin: 6px 0 32px 32px !important;
  position: relative !important;
}

@media (max-width: 900px) {
  .floated-infographic-card {
    float: none !important;
    width: 100% !important;
    margin: 24px 0 36px 0 !important;
  }
}


/* --------------------------------------------------------------------------
   PREMIUM EDITORIAL READING CONTAINER (920px MAX-WIDTH MATCHING COMMERCIAL OFFSET)
   -------------------------------------------------------------------------- */
.editorial-section {
  padding: 60px 0 80px 0 !important;
  background-color: var(--bg-white) !important;
}

.editorial-container {
  max-width: 920px !important;
  margin: 0 auto !important;
  width: 92% !important;
  box-sizing: border-box !important;
}

.editorial-body {
  max-width: 920px !important;
  margin: 0 auto !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: #334155 !important;
}

.editorial-body p {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: #334155 !important;
  margin-bottom: 20px !important;
}

.floated-infographic-card {
  float: right !important;
  width: 400px !important;
  max-width: 100% !important;
  padding-bottom: 24px !important;
  margin: 6px 0 28px 28px !important;
  position: relative !important;
}

@media (max-width: 860px) {
  .floated-infographic-card {
    float: none !important;
    width: 100% !important;
    margin: 24px 0 32px 0 !important;
  }
}

/* ==========================================================================
   STANDARDIZED CORPORATE SERVICE PAGE COMPONENT SYSTEM (.svc-page)
   ========================================================================== */
.svc-container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* 1. HERO COMPONENT */
.svc-hero {
  background: var(--primary-navy);
  padding: 56px 0 64px;
  color: #FFFFFF;
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.svc-breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 14px;
  color: #94A3B8;
}

.svc-breadcrumb a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 500;
}

.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.svc-hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.svc-hero-desc {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: #E2E8F0;
  margin-bottom: 24px;
}

.svc-hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0F172A;
}

.svc-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 2. INTRO COMPONENT */
.svc-intro {
  padding: 56px 0 24px;
  text-align: center;
}

.svc-eyebrow {
  font-size: 0.82rem;
  color: #64748B;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.svc-intro-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.svc-intro-lead {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: #475569;
  max-width: 820px;
  margin: 0 auto;
}

/* 3. MAIN EDITORIAL CONTENT CONTAINER & LOCAL FLOAT COMPONENT */
.svc-content-section {
  padding: 32px 0 60px;
  display: flow-root;
}

.svc-editorial-container {
  max-width: 960px;
  margin: 0 auto;
  display: flow-root;
}

.svc-body-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.68;
  color: #334155;
  display: flow-root;
}

.svc-body-text p {
  margin-bottom: 20px;
}

.svc-body-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* LOCAL EDITORIAL MEDIA CARD (RIGHT FLOAT, NO STICKY, NATURAL SCROLL) */
.svc-media-card {
  float: right;
  width: 420px;
  max-width: 100%;
  margin: 6px 0 24px 32px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  border: 1px solid #E2E8F0;
}

.svc-media-frame {
  position: relative;
  background: #0F172A;
}

.svc-media-accent-bar {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #0284C7, #38BDF8, #818CF8);
}

.svc-media-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.svc-media-caption-box {
  padding: 12px 16px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.svc-media-caption-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.svc-media-caption-sub {
  font-size: 0.76rem;
  color: #64748B;
  font-weight: 500;
}

/* CLEARFIX UTILITY FOR FULL-WIDTH TRANSITION */
.svc-clearfix {
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* 4. FULL-WIDTH HIGHLIGHT BOX COMPONENT */
.svc-highlight-card {
  width: 100%;
  box-sizing: border-box;
  margin: 36px 0;
  padding: 24px 28px;
  border-radius: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--accent-cyan);
  clear: both;
}

.svc-highlight-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.svc-highlight-desc {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* 5. FULL-WIDTH RESTRAINED CORPORATE FAQ COMPONENT */
.svc-faq-section {
  width: 100%;
  box-sizing: border-box;
  margin-top: 52px;
  padding: 32px 36px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  clear: both;
}

.svc-faq-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
}

.svc-faq-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
  letter-spacing: -0.3px;
}

.svc-faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 3px solid var(--accent-cyan);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.svc-faq-item:last-child {
  margin-bottom: 0;
}

.svc-faq-q {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.svc-faq-a {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* RESPONSIVE STACKING FOR STANDARDIZED TEMPLATE */
@media (max-width: 992px) {
  .svc-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .svc-hero-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 860px) {
  .svc-media-card {
    float: none;
    width: 100%;
    max-width: 520px;
    margin: 20px auto 28px;
  }
  
  .svc-faq-section {
    padding: 24px 20px;
  }
}
