/* =====================================================
   SafeShift India - Main Stylesheet
   Mobile-first, Bootstrap 5 based
   ===================================================== */

:root {
  --primary:    #1a56db;
  --primary-dk: #1240a8;
  --warning:    #f59e0b;
  --success:    #10b981;
  --dark:       #111827;
  --gray-100:   #f9fafb;
  --gray-200:   #f3f4f6;
  --font-main:  'Poppins', sans-serif;
  --font-body:  'Roboto', sans-serif;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
body { font-family: var(--font-body); color: #374151; font-size: 15px; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); color: var(--dark); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dk); }
img { max-width: 100%; height: auto; }

/* ── Top Bar ── */
.top-bar { background: #0f3a8a; color: #c7d9ff; font-size: 13px; }
.top-bar a { color: #c7d9ff; }
.top-bar a:hover { color: white; }
.btn-whatsapp { background: #25d366; color: white; border: none; }
.btn-whatsapp:hover { background: #1ea855; color: white; }

/* ── Navbar ── */
.navbar { background: var(--primary) !important; padding: 12px 0; }
.brand-icon { font-size: 1.4rem; margin-right: 8px; }
.brand-text { font-family: var(--font-main); font-weight: 700; font-size: 1.2rem; }
.navbar-nav .nav-link { font-weight: 500; padding: 8px 14px !important; }

/* Logo — responsive sizing */
.site-logo {
  height: 42px;   /* mobile default */
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .site-logo { height: 48px; }
}
@media (min-width: 992px) {
  .site-logo { height: 54px; }
  .navbar { padding: 10px 0; }
}

/* ── Section Helpers ── */
.section-badge {
  display: inline-block; background: rgba(26,86,219,.1); color: var(--primary);
  padding: 4px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 12px; }
.section-subtitle { color: #6b7280; max-width: 560px; margin: 0 auto; }

/* ── Hero ── */
.hero-section {
  background: linear-gradient(135deg, #0f3a8a 0%, #1a56db 50%, #2563eb 100%);
  position: relative; padding: 60px 0;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-overlay { position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="%23ffffff08"/><circle cx="80" cy="80" r="50" fill="%23ffffff05"/></svg>'); }
.hero-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #e0edff; border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 500; }
.hero-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.hero-stat { color: white; }
.hero-stat small { color: rgba(255,255,255,.7); font-size: 12px; }
.min-vh-80 { min-height: 80vh; }

.quick-quote-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.card-header-custom { background: var(--primary); color: white; padding: 20px 24px; }
.card-header-custom h4 { font-size: 1.1rem; margin-bottom: 4px; }
.card-header-custom p { opacity: .8; font-size: 13px; }
.card-footer-custom { background: var(--gray-100); padding: 12px 20px; }

/* ── Trust Section ── */
.trust-item { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 14px; }
.trust-item i { font-size: 1.3rem; }

/* ── Services ── */
.service-card-link { display: block; height: 100%; }
.service-card {
  background: white; border-radius: var(--radius); padding: 28px 20px;
  border: 2px solid transparent; transition: all .25s; box-shadow: var(--shadow);
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px; background: rgba(26,86,219,.1);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.service-title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.service-desc { font-size: 13px; color: #6b7280; margin-bottom: 12px; }
.service-link { color: var(--primary); font-size: 13px; font-weight: 600; }

.service-big-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 24px;
  background: white; border-radius: var(--radius); border: 2px solid #e5e7eb;
  transition: all .25s; box-shadow: var(--shadow);
}
.service-big-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.service-big-icon { width: 56px; height: 56px; background: rgba(26,86,219,.1); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.service-big-content h4 { font-size: 1rem; margin-bottom: 6px; }
.service-big-content p { font-size: 13px; color: #6b7280; margin-bottom: 8px; }
.service-big-cta { font-size: 13px; color: var(--primary); font-weight: 600; }

.service-mini-card { display: block; padding: 16px 12px; border-radius: 10px; border: 2px solid #e5e7eb; text-align: center; transition: all .2s; }
.service-mini-card:hover { border-color: var(--primary); background: rgba(26,86,219,.04); }
.service-mini-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 6px; }
.service-mini-title { font-size: 12px; font-weight: 600; color: var(--dark); }

/* ── How It Works ── */
.step-card { padding: 20px; }
.step-number { width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px; }
.step-icon { font-size: 2.5rem; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.step-card h5 { color: white; font-size: 1.1rem; }
.step-card p { color: rgba(255,255,255,.7); font-size: 14px; }

/* ── Cities ── */
.city-card { display: block; }
.city-card-inner { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: white; border-radius: var(--radius); border: 2px solid #e5e7eb; transition: all .2s; }
.city-card-inner:hover { border-color: var(--primary); }
.city-icon { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.city-name { font-size: 14px; font-weight: 600; margin: 0; color: var(--dark); }
.city-state { font-size: 11px; color: #9ca3af; }
.city-arrow { color: #d1d5db; font-size: 11px; margin-left: auto; }

.city-card-full { display: block; }
.city-card-full-inner {
  position: relative; padding: 20px 16px; background: white;
  border-radius: var(--radius); border: 2px solid #e5e7eb;
  text-align: center; transition: all .25s; box-shadow: var(--shadow);
}
.city-card-full-inner:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.city-badge { position: absolute; top: 10px; right: 10px; font-size: 10px; background: var(--warning); color: white; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.city-card-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; }
.city-card-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.city-card-state { font-size: 12px; color: #9ca3af; display: block; margin-bottom: 8px; }
.city-card-cta { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ── Charges ── */
.charges-cta-card { background: var(--primary); color: white; border-radius: var(--radius); padding: 36px; }
.charges-cta-card h3 { color: white; }
.cta-features { list-style: none; padding: 0; margin: 0 0 16px; }
.cta-features li { padding: 6px 0; font-size: 15px; }
.cta-features i { margin-right: 8px; }

/* ── Testimonials ── */
.testimonial-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.testimonial-rating { margin-bottom: 12px; }
.testimonial-rating .fa-star { color: #d1d5db; }
.testimonial-rating .fa-star.filled { color: var(--warning); }
.testimonial-text { font-style: italic; color: #374151; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.author-name { font-size: 14px; }

/* ── Why Section ── */
.why-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; }
.why-card h5 { font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: #6b7280; margin: 0; }

/* ── Blog ── */
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-img img { width: 100%; height: 180px; object-fit: cover; }
.blog-category { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; }
.blog-title a { color: var(--dark); font-size: 1rem; font-weight: 600; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 13px; color: #6b7280; }
.blog-meta { font-size: 12px; color: #9ca3af; }
.read-more { color: var(--primary); font-weight: 600; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%); }

/* ── Page Header ── */
.page-header { background: linear-gradient(135deg, #1240a8 0%, #1a56db 100%); }
.page-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: white; margin-bottom: 8px; }
.page-subtitle { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ── City Hero ── */
.city-hero { background: linear-gradient(135deg, #0f3a8a 0%, #1a56db 100%); }
.city-hero-stat { color: white; }
.city-hero-stat small { color: rgba(255,255,255,.6); font-size: 12px; }
.city-quote-form { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); }

/* ── Quote Form ── */
.quote-form-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.quote-form-header { background: var(--primary); color: white; padding: 24px; }
.quote-form-header h3 { color: white; font-size: 1.3rem; margin-bottom: 4px; }
.quote-form-header p { color: rgba(255,255,255,.7); font-size: 14px; }
.form-section-title { display: flex; align-items: center; gap: 10px; color: var(--primary); font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.form-section-title span { width: 28px; height: 28px; background: var(--primary); color: white; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.quote-form-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: #6b7280; }
.quote-success .success-icon { font-size: 5rem; color: var(--success); }

/* ── Sidebar ── */
.sidebar-quote-box { background: var(--primary); color: white; border-radius: var(--radius); padding: 20px; }
.sidebar-quote-box h5 { color: white; margin-bottom: 12px; }
.sidebar-box { background: var(--gray-100); border-radius: var(--radius); padding: 20px; }
.sidebar-box h6 { font-size: 1rem; margin-bottom: 12px; }
.nearby-city-list { list-style: none; padding: 0; margin: 0; }
.nearby-city-list li a { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid #e5e7eb; color: var(--dark); font-size: 14px; }
.nearby-city-list li:last-child a { border-bottom: none; }
.sidebar-service-list { list-style: none; padding: 0; margin: 0; }
.sidebar-service-list li a { display: block; padding: 8px 0; border-bottom: 1px solid #e5e7eb; font-size: 14px; color: var(--dark); }
.sidebar-service-list li:last-child a { border-bottom: none; }
.sidebar-post-list { list-style: none; padding: 0; margin: 0; }
.sidebar-post-list li { padding: 8px 0; border-bottom: 1px solid #e5e7eb; }
.sidebar-post-list li:last-child { border-bottom: none; }
.sidebar-post-list a { font-size: 13px; color: var(--dark); font-weight: 500; }

/* ── Route Badge ── */
.route-badge { display: inline-flex; align-items: center; background: white; border: 1px solid #d1d5db; padding: 6px 14px; border-radius: 50px; font-size: 13px; color: var(--dark); transition: all .2s; }
.route-badge:hover { border-color: var(--primary); color: var(--primary); }

/* ── Feature List ── */
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.feature-list i { margin-top: 2px; flex-shrink: 0; }

/* ── State Filter ── */
.state-btn { border-radius: 50px; font-size: 13px; }

/* ── Blog Post Content ── */
.blog-post-content { font-size: 16px; line-height: 1.8; }
.blog-post-content h2, .blog-post-content h3 { margin-top: 2rem; margin-bottom: 1rem; }
.blog-post-content p { margin-bottom: 1.2rem; }
.blog-cta { border-radius: var(--radius); }

/* ── FAQ Accordion ── */
.accordion-button:not(.collapsed) { background: rgba(26,86,219,.08); color: var(--primary); }
.accordion-button:focus { box-shadow: none; }

/* ── Footer ── */
.footer { background: #0f172a; color: #94a3b8; }
.stats-bar { background: #1e293b; }
.stat-item { }
.stat-number { font-family: var(--font-main); font-size: 2rem; font-weight: 800; color: white; }
.stat-label { font-size: 13px; color: #94a3b8; }
.footer-main { }
.footer-brand { font-family: var(--font-main); font-size: 1.3rem; font-weight: 700; color: white; }
.footer-about { font-size: 14px; line-height: 1.7; }
.footer-heading { color: white; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li a { color: #94a3b8; font-size: 14px; padding: 4px 0; display: block; transition: color .2s; }
.footer-links li a:hover { color: white; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 14px; }
.footer-contact i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: #94a3b8; }
.footer-contact a:hover { color: white; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: #1e293b; color: #94a3b8; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.social-link:hover { background: var(--primary); color: white; }
.footer-bottom { background: #0a0f1e; font-size: 13px; }
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #94a3b8; }

/* ── Float Buttons ── */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 999;
  width: 56px; height: 56px; background: #25d366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all .3s;
}
.whatsapp-float:hover { background: #1ea855; color: white; transform: scale(1.1); }
.whatsapp-tooltip {
  position: absolute; right: 66px; background: #333; color: white;
  white-space: nowrap; padding: 6px 12px; border-radius: 6px; font-size: 13px;
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.call-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 56px; height: 56px; background: var(--primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 16px rgba(26,86,219,.4); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(26,86,219,.4);} 70%{box-shadow:0 0 0 10px rgba(26,86,219,0);} }

/* ── Cities Filter Bar ── */
.cities-filter-bar { }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-section { padding: 40px 0; min-height: auto; }
  .hero-stats { gap: 20px !important; }
  .quick-quote-card .card-body { padding: 20px !important; }
  .charges-cta-card { padding: 24px; }
  .footer-main .row { gap: 24px; }
  .stat-number { font-size: 1.6rem; }
}

/* ── Route Pages ── */
.route-hero { background: linear-gradient(135deg, #0f3a8a 0%, #1a56db 100%); }
.route-stats-strip {
  background: rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 16px 24px; display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px;
}
.route-stat { color: white; text-align: center; }
.route-stat .value { font-size: 1.4rem; font-weight: 800; display: block; }
.route-stat .label { font-size: 12px; color: rgba(255,255,255,.7); }
.route-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #d74c85; border-radius: 50px; padding: 6px 14px; font-size: 13px;
  margin: 4px; transition: background .2s;
}
.route-chip:hover { background: rgba(255,255,255,.25); color: #d74c85; }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: white; border-radius: var(--radius);
  border: 1px solid #e5e7eb; box-shadow: var(--shadow);
}
.feature-item i { color: var(--success); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.feature-item h6 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.feature-item p { font-size: 12px; color: #6b7280; margin: 0; }

/* ── Content list (why-hire bullets) ── */
.content-list { padding-left: 0; list-style: none; }
.content-list li {
  padding: 10px 12px 10px 36px; position: relative;
  border-left: 3px solid var(--primary); margin-bottom: 8px;
  background: #f8faff; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px; line-height: 1.6;
}
.content-list li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--primary); position: absolute; left: 10px; top: 12px;
}

/* ── How It Works Steps ── */
.how-it-works-steps { display: flex; flex-direction: column; gap: 16px; }
.step-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border: 1px solid #e5e7eb;
  border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow);
}
.step-item .step-number {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.step-item .step-content strong { display: block; margin-bottom: 4px; font-size: 15px; }
.step-item .step-content p { margin: 0; font-size: 13px; color: #6b7280; }

/* ── City Hero Stats ── */
.city-hero { background: linear-gradient(135deg, #0f3a8a 0%, #1a56db 100%); }
.city-hero-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.city-stat { color: white; }
.city-stat .val { font-size: 1.5rem; font-weight: 800; display: block; }
.city-stat .lbl { font-size: 12px; color: rgba(255,255,255,.7); }

/* ── Booking Form Card (shared inline form) ── */
.booking-form-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.booking-form-header {
  background: var(--warning); color: var(--dark); padding: 16px 20px;
}
.booking-form-header h5 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.booking-form-body { background: white; }
.form-trust-row { display: flex; gap: 16px; justify-content: center; font-size: 12px; color: #6b7280; flex-wrap: wrap; }
.form-trust-row span { display: flex; align-items: center; gap: 4px; }

/* ── Related Routes ── */
.related-routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.sidebar-route-list { list-style: none; padding: 0; margin: 0; }
.sidebar-route-list li a {
  display: flex; align-items: center; padding: 8px 0;
  border-bottom: 1px solid #e5e7eb; font-size: 13px; color: var(--dark);
  gap: 6px;
}
.sidebar-route-list li:last-child a { border-bottom: none; }
.sidebar-route-list li a:hover { color: var(--primary); }

/* ── Pricing Table ── */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { background: var(--primary); color: white; padding: 10px 14px; text-align: left; font-size: 14px; }
.pricing-table td { padding: 10px 14px; border-bottom: 1px solid #e5e7eb; font-size: 14px; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(26,86,219,.04); }
.pricing-table .price { font-weight: 700; color: var(--primary); }

/* ── Badges ── */
.badge-success-soft { background: rgba(16,185,129,.1); color: #065f46; border-radius: 50px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.badge-primary-soft { background: rgba(26,86,219,.1); color: var(--primary); border-radius: 50px; padding: 4px 12px; font-size: 12px; font-weight: 600; }

/* ── Contact / Static Page ── */
.contact-info-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.contact-info-card .icon { width: 48px; height: 48px; background: rgba(26,86,219,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; margin-bottom: 12px; }
.policy-content h2 { font-size: 1.3rem; margin-top: 2rem; margin-bottom: .8rem; }
.policy-content p, .policy-content li { font-size: 15px; line-height: 1.8; color: #374151; }
.policy-content ul { padding-left: 1.4rem; }

/* ── Feedback Form ── */
.star-rating { display: flex; gap: 6px; font-size: 1.8rem; }
.star-rating label { cursor: pointer; color: #d1d5db; transition: color .2s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--warning); }

@media (max-width: 576px) {
  .route-stats-strip { gap: 16px; padding: 12px 16px; }
  .city-hero-stats { gap: 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .related-routes-grid { grid-template-columns: 1fr 1fr; }
}
