/* ============================================================
   SELF-HOSTED FONTS - privacy-friendly, GDPR-safe
   ============================================================ */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/Manrope-Variable.woff2') format('woff2-variations'),
       url('../fonts/Manrope-Variable.woff2') format('woff2');
}

/* ============================================================
   BIZWINGS GARAGE - MAIN STYLESHEET
   Design system + every component on every page.
   Mirrors the customer-approved demo at hq3.co.uk/steinsgarage
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --navy:        #1e3a5f;
  --navy-deep:   #0f2b48;
  --navy-mid:   #243258;
  --black:      #000000;

  /* Neutrals (Apple-style) */
  --text:       #1d1d1f;
  --text-muted: #6e6e73;
  --text-faint: #4a4a4e;
  --bg:         #ffffff;
  --bg-off:     #f5f5f7;
  --silver:     #a1a1a6;
  --border:     rgba(0, 0, 0, 0.05);

  /* Accents */
  --mot-yellow:    #f5d742;
  --mot-yellow-d:  #e0b31e;
  --success:       #28a745;

  /* Typography */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:        1280px;
  --container-pad:    24px;
  --section-pad-y:    100px;

  /* Radii */
  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-xxl: 48px;
  --r-pill: 980px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow:    0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --t-fast:   0.2s ease;
  --t-med:    0.3s ease;
  --t-slow:   0.5s ease;

  /* Glass */
  --glass-light-bg:    rgba(255, 255, 255, 0.8);
  --glass-light-bd:    rgba(255, 255, 255, 0.3);
  --glass-dark-bg:     rgba(0, 0, 0, 0.6);
  --glass-dark-bd:     rgba(255, 255, 255, 0.2);
  --glass-blur:        blur(20px);
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg-off);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

ul { list-style: none; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: 4rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 1rem;
}
h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-muted);
  line-height: 1.5;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { color: var(--text); }
.section-header p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: rgba(30, 58, 95, 0.1);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ---------- GLASS PRIMITIVES ---------- */
.glass {
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-bd);
  border-radius: var(--r-lg);
}

.glass-dark {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-bd);
  border-radius: var(--r-xl);
}

/* ---------- BUTTONS ---------- */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--t-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-primary.large,
.btn-secondary.large {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

/* ---------- MOBILE PHONE BANNER ---------- */
.mobile-phone-banner {
  display: none;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 102;
}
.mobile-phone-banner a {
  color: #fff;
  font-weight: 600;
}
.mobile-phone-banner i { margin-right: 6px; }
.mobile-phone-banner .available-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  margin-left: 8px;
  display: inline-block;
}
@media (max-width: 768px) {
  .mobile-phone-banner {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 100;
  padding: 12px 0;
  transition: all var(--t-med);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 8px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo img {
  max-height: 50px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  transition: color var(--t-fast);
}
.main-nav a:hover { color: var(--mot-yellow); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--mot-yellow); }
.btn-primary-mobile { display: none; }
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
}
@media (max-width: 768px) {
  body { padding-top: 0; }
  .site-header { margin-top: 44px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: var(--glass-blur);
    padding: 20px;
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; gap: 16px; align-items: center; }
  .btn-primary-mobile {
    display: inline-flex;
    background: var(--navy);
    color: #fff;
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.875rem;
  }
  .mobile-menu-toggle { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}
.hero-split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-glass-card {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-bd);
  border-radius: var(--r-xl);
  padding: 3rem;
  flex: 1;
  color: #fff;
}
.hero-glass-card h1,
.hero-glass-card .hero-subtitle,
.hero-glass-card .hero-trust { color: #fff; }
.hero-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.hero-trust span i { margin-right: 6px; color: var(--mot-yellow); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: floatY 2s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}
@media (max-width: 968px) {
  .hero-split { flex-direction: column; }
  .hero-glass-card,
  .mot-checker-card { width: 100%; }
}

/* ---------- MOT CHECKER CARD ---------- */
.mot-checker-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-bd);
  border-radius: var(--r-xl);
  padding: 2rem;
  flex: 0.8;
  position: relative;
  overflow: hidden;
}
.numberplate-bg {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: linear-gradient(135deg, var(--mot-yellow), var(--mot-yellow-d));
  opacity: 0.15;
  transform: rotate(15deg);
  border-radius: var(--r-sm);
  pointer-events: none;
}
.mot-checker-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.mot-checker-icon {
  font-size: 2.5rem;
  color: var(--mot-yellow);
  margin-bottom: 1rem;
}
.mot-checker-card h3 { color: #fff; margin-bottom: 0.5rem; }
.mot-checker-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.mot-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}
.mot-input-group input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text);
}
.mot-input-group input:focus {
  outline: none;
  border-color: var(--mot-yellow);
  box-shadow: 0 0 0 3px rgba(245, 215, 66, 0.25);
}
.mot-input-group button { white-space: nowrap; padding: 12px 24px; }

/* ---------- SERVICES (HOMEPAGE) ---------- */
.services { padding: var(--section-pad-y) 0; background: var(--bg-off); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  overflow: hidden;
  padding: 0;
  transition: transform var(--t-med);
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-bd);
  border-radius: var(--r-lg);
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
}
.service-image { height: 200px; overflow: hidden; }
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content { padding: 24px; }
.service-icon {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: gap var(--t-fast);
}
.card-link:hover { gap: 12px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---------- WHY US ---------- */
.why-us { padding: var(--section-pad-y) 0; background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content {
  padding: 40px;
  border-radius: var(--r-xl);
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-bd);
}
.why-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.why-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.why-image img { width: 100%; display: block; }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
}

/* ---------- SERVICE LIST ---------- */
.service-list { padding: var(--section-pad-y) 0; background: var(--bg-off); }
.list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.list-category {
  padding: 28px;
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-bd);
  border-radius: var(--r-lg);
}
.list-category h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-category h3 i { color: var(--navy); }
.list-category ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-faint);
}
.list-category ul li:last-child { border-bottom: none; }
@media (max-width: 1024px) { .list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .list-grid { grid-template-columns: 1fr; } }

/* ---------- FEATURED SERVICES ---------- */
.featured-services { padding: var(--section-pad-y) 0; background: var(--bg); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.featured-card {
  overflow: hidden;
  background: var(--glass-light-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-light-bd);
  border-radius: var(--r-lg);
  transition: transform var(--t-med);
}
.featured-card:hover { transform: translateY(-8px); }
.featured-image { height: 280px; overflow: hidden; }
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.featured-card:hover .featured-image img { transform: scale(1.05); }
.featured-content { padding: 32px; }
.featured-icon {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
@media (max-width: 768px) { .featured-grid { grid-template-columns: 1fr; } }

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}
.cta-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-xxl);
  padding: 60px;
  text-align: center;
}
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--navy);
}
.cta-section .btn-primary:hover { background: #f0f0f0; }
.cta-section .btn-secondary { border-color: #fff; color: #fff; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: var(--silver);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
}
.footer-info p { color: var(--silver); }
.footer-logo {
  max-height: 120px;
  max-width: 280px;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
}
.footer-contact h4,
.footer-hours h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-contact p,
.footer-hours p {
  margin: 10px 0;
  color: var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact p i,
.footer-hours p i {
  flex-shrink: 0;
  margin-top: 3px;
  margin-right: 0;
}
.footer-contact i { color: var(--mot-yellow); }
.footer-contact a { color: var(--silver); }
.footer-contact a:hover { color: #fff; }
.social-icons { display: flex; gap: 16px; }
.social-icons a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--t-fast);
}
.social-icons a:hover {
  background: var(--navy);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 24px 0;
}

/* Bizwings credit line in footer */
.footer-credit {
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.footer-credit a {
  color: #fff;
  text-decoration: underline;
}
.footer-credit a:hover {
  color: #fff;
  opacity: 0.8;
}

/* ---------- STICKY BOOK BUTTON ---------- */
.sticky-booking {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
}
.btn-sticky {
  background: rgba(30, 58, 95, 0.95);
  backdrop-filter: var(--glass-blur);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: all var(--t-fast);
}
.btn-sticky:hover {
  transform: scale(1.05);
  background: var(--navy);
}

/* ---------- MODALS ---------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal.is-open { display: flex; }
.modal-content {
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--r-lg);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--t-fast);
  background: none;
  border: none;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }

.vehicle-summary {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.vehicle-details {
  background: rgba(30, 58, 95, 0.05);
  padding: 12px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
}
.vehicle-details p { margin: 4px 0; color: var(--text); }

.service-options { display: flex; flex-direction: column; gap: 12px; }
.service-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--t-fast);
  gap: 16px;
}
.service-option:hover {
  transform: translateX(4px);
  border-color: var(--navy);
}
.service-info h4 { font-weight: 700; margin-bottom: 4px; color: var(--text); }
.service-info p { font-size: 0.8rem; color: var(--text-muted); }
.service-price {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
}
.book-service-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  transition: all var(--t-fast);
}
.book-service-btn:hover {
  background: var(--navy-deep);
  transform: scale(1.02);
}

.confirmation-card { text-align: center; }
.confirmation-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1rem;
}
.confirmation-details {
  background: rgba(30, 58, 95, 0.05);
  padding: 20px;
  border-radius: var(--r-md);
  margin: 20px 0;
  text-align: left;
}
.confirmation-details p { color: var(--text); margin: 6px 0; }
.share-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

/* ---------- INNER PAGES (about, services, news, contact, generic) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 30%, rgba(245, 215, 66, 0.15), transparent 50%),
    radial-gradient(at 80% 70%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.page-hero .lead {
  max-width: 700px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}
.page-hero h1 { position: relative; z-index: 1; }

.page-content {
  padding: 80px 0;
  background: var(--bg);
}
.page-content .prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--text);
}
.page-content .prose p { margin-bottom: 1.25rem; color: var(--text); }
.page-content .prose h2 { margin-top: 2.5rem; }
.page-content .prose h3 { margin-top: 2rem; }
.page-content .prose ul,
.page-content .prose ol {
  margin: 1.25rem 0 1.25rem 1.5rem;
}
.page-content .prose li {
  margin: 0.5rem 0;
  color: var(--text);
}
.page-content .prose ul li { list-style: disc; }
.page-content .prose ol li { list-style: decimal; }
.page-content .prose a {
  color: var(--navy);
  text-decoration: underline;
}
.page-content .prose img {
  border-radius: var(--r-md);
  margin: 1.5rem 0;
}
.page-content .prose blockquote {
  border-left: 4px solid var(--navy);
  padding: 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ---------- NEWS / BLOG ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.news-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.news-card h3 a { color: var(--text); }
.news-card h3 a:hover { color: var(--navy); }
.news-card p {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.9375rem;
}
@media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .news-grid { grid-template-columns: 1fr; } }

/* Single post */
.single-post .post-header {
  padding: 160px 0 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
}
.single-post .post-header h1 { color: #fff; }
.single-post .post-meta {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
.single-post .post-featured {
  margin: -40px auto 0;
  max-width: var(--container);
  padding: 0 var(--container-pad);
  position: relative;
  z-index: 2;
}
.single-post .post-featured img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.single-post .post-body {
  padding: 60px 0 80px;
  background: var(--bg);
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-info {
  padding: 40px;
  background: var(--bg-off);
  border-radius: var(--r-lg);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-info-text h4 { margin-bottom: 0.25rem; color: var(--text); }
.contact-info-text p,
.contact-info-text a { color: var(--text-muted); }
.contact-info-text a:hover { color: var(--navy); }
.contact-form-wrap {
  padding: 40px;
  background: var(--bg-off);
  border-radius: var(--r-lg);
}
.contact-form .field { margin-bottom: 1rem; }
.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d2d2d7;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button { width: 100%; justify-content: center; margin-top: 0.5rem; }
.contact-map {
  margin-top: 60px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- ABOUT TIMELINE ---------- */
.about-timeline {
  position: relative;
  max-width: 760px;
  margin: 60px auto;
  padding-left: 24px;
  border-left: 2px solid var(--border);
}
.about-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 24px;
}
.about-timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--navy);
}
.about-timeline-year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.about-timeline-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* ---------- SERVICES PAGE ---------- */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.service-detailed {
  background: var(--bg-off);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid transparent;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.service-detailed:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.service-detailed-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-detailed h3 { margin-bottom: 0.75rem; }
.service-detailed-price {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- 404 ---------- */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
  background: var(--bg-off);
}
.error-404 .big {
  font-size: 8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ---------- HELPERS ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

/* ---------- RESPONSIVE TYPE ---------- */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero { padding: 100px 0 60px; }
  .hero-glass-card,
  .mot-checker-card { padding: 1.5rem; }
  .modal-content { padding: 24px; }
  .service-option {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .cta-glass { padding: 36px 24px; }
  .why-content { padding: 28px; }
  .why-stats { gap: 20px; flex-wrap: wrap; }
  .stat-number { font-size: 1.5rem; }
  :root { --section-pad-y: 70px; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--mot-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- FOOTER NAV (legal links) ---------- */
.footer-bottom .footer-nav { margin-bottom: 0.75rem; }
.footer-bottom .footer-nav ul {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom .footer-nav a {
  color: var(--silver);
  font-size: 0.875rem;
  transition: color var(--t-fast);
}
.footer-bottom .footer-nav a:hover { color: #fff; }

/* ---------- AMELIA SIDEBAR / STEPPER OVERRIDES (v1.1.6) ---------- */
/* Step labels - white on dark blue sidebar */
.amelia-app-booking .am-step,
.amelia-app-booking [class*="am-step"],
.amelia-app-booking .am-stepper li,
.amelia-app-booking .am-stepper li *,
.amelia-app-booking .am-step-name,
.amelia-app-booking .am-step-title,
.amelia-app-booking .am-section-side,
.amelia-app-booking .am-section-side *,
.amelia-app-booking [class*="am-section-side"],
.amelia-app-booking [class*="am-section-side"] *,
.amelia-app-booking [class*="sidebar"],
.amelia-app-booking [class*="sidebar"] * {
  color: #ffffff !important;
}

/* Inactive/upcoming step labels */
.amelia-app-booking .am-section-side li:not(.am-active):not(.am-completed),
.amelia-app-booking .am-section-side li:not(.am-active):not(.am-completed) * {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Active step - bright white */
.amelia-app-booking .am-section-side .am-active,
.amelia-app-booking .am-section-side .am-active *,
.amelia-app-booking .am-active,
.amelia-app-booking .am-active * {
  color: #ffffff !important;
}

/* Collapse-menu link */
.amelia-app-booking [class*="collapse"],
.amelia-app-booking [class*="collapse"] * {
  color: #ffffff !important;
}

/* SVG icons in sidebar */
.amelia-app-booking .am-section-side svg,
.amelia-app-booking [class*="am-section-side"] svg {
  fill: #ffffff !important;
  color: #ffffff !important;
}

/* ---------- AMELIA v9 SIDEBAR FIX (v1.1.7) ----------
 * Real class names from Amelia 9.4 plugin CSS:
 *   .am-step / .am-steps / .am-current-step / .am-passed-step
 *   .am-icon-steps / .am-collapse-item / .am-collapsed
 * The dark-on-dark issue is on .am-step (not current/passed).
 * Using triple-class specificity + #id prefix to beat Amelia's bundle.
 */

/* Step rows - all states white text */
#amelia-v2-booking-1000 .am-step,
#amelia-v2-booking-1000 .am-step *,
#amelia-v2-booking-1000 .am-steps .am-step,
#amelia-v2-booking-1000 .am-steps .am-step *,
[id^="amelia-v2-booking-"] .am-step,
[id^="amelia-v2-booking-"] .am-step *,
[id^="amelia-v2-booking-"] .am-steps,
[id^="amelia-v2-booking-"] .am-steps *,
[id^="amelia-v2-booking-"] .am-current-step,
[id^="amelia-v2-booking-"] .am-current-step *,
[id^="amelia-v2-booking-"] .am-passed-step,
[id^="amelia-v2-booking-"] .am-passed-step * {
  color: #ffffff !important;
}

/* Step icons */
[id^="amelia-v2-booking-"] .am-icon-steps,
[id^="amelia-v2-booking-"] .am-icon-steps *,
[id^="amelia-v2-booking-"] .am-step svg,
[id^="amelia-v2-booking-"] .am-step svg *,
[id^="amelia-v2-booking-"] .am-steps svg,
[id^="amelia-v2-booking-"] .am-steps svg * {
  fill: #ffffff !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* The right-hand circle indicator on each step row */
[id^="amelia-v2-booking-"] .am-step::after,
[id^="amelia-v2-booking-"] .am-step::before {
  background-color: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Active step - bright white + slight highlight bg already provided by Amelia */
[id^="amelia-v2-booking-"] .am-current-step,
[id^="amelia-v2-booking-"] .am-current-step *,
[id^="amelia-v2-booking-"] .am-current-step .am-icon-steps,
[id^="amelia-v2-booking-"] .am-current-step svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Inactive (upcoming) steps - slightly dimmer white but still readable */
[id^="amelia-v2-booking-"] .am-step:not(.am-current-step):not(.am-passed-step),
[id^="amelia-v2-booking-"] .am-step:not(.am-current-step):not(.am-passed-step) * {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Collapse menu trigger at bottom of sidebar */
[id^="amelia-v2-booking-"] .am-capai-collapse,
[id^="amelia-v2-booking-"] .am-capai-collapse *,
[id^="amelia-v2-booking-"] .am-collapse-item,
[id^="amelia-v2-booking-"] .am-collapse-item * {
  color: #ffffff !important;
}
[id^="amelia-v2-booking-"] .am-capai-collapse svg,
[id^="amelia-v2-booking-"] .am-capai-collapse svg * {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* ---------- AMELIA v9 SIDEBAR FIX (v1.1.8) - CORRECT CLASS NAMES ----------
 * Real classes from rendered DOM:
 *   .am-fs-sb__step                  - the row container
 *   .am-fs-sb__step-inner            - inner flex wrapper
 *   .am-fs-sb__step-icon             - icon circle on left
 *   .am-fs-sb__step-heading          - the TEXT "Date & Time" / "Your Information" / "Payments"
 *   .am-fs-sb__step-checker          - circle indicator on right
 *   .am-fs-sb__step-selection__wrapper - selection details below row
 * Plugin uses CSS variables (--map-base-danube-symbol-0) we override with !important.
 */

/* The text in each step row */
[id^="amelia-v2-booking-"] .am-fs-sb__step-heading,
[id^="amelia-v2-booking-"] .am-fs-sb__step-heading *,
[id^="amelia-v2-booking-"] .am-fs-sb__step,
[id^="amelia-v2-booking-"] .am-fs-sb__step *,
[id^="amelia-v2-booking-"] .am-fs-sb__step-inner,
[id^="amelia-v2-booking-"] .am-fs-sb__step-inner *,
[id^="amelia-v2-booking-"] .am-fs-sb__step-selection__wrapper,
[id^="amelia-v2-booking-"] .am-fs-sb__step-selection__wrapper * {
  color: #ffffff !important;
}

/* Icons inside step rows (date-time, person, card icons) */
[id^="amelia-v2-booking-"] .am-fs-sb__step-icon,
[id^="amelia-v2-booking-"] .am-fs-sb__step-icon *,
[id^="amelia-v2-booking-"] .am-fs-sb__step-icon span,
[id^="amelia-v2-booking-"] [class*="am-icon-"]::before,
[id^="amelia-v2-booking-"] [class*="am-icon-"] {
  color: #ffffff !important;
}

/* The right-hand circle indicator */
[id^="amelia-v2-booking-"] .am-fs-sb__step-checker,
[id^="amelia-v2-booking-"] .am-fs-sb__step-checker * {
  border-color: rgba(255, 255, 255, 0.6) !important;
  background-color: transparent !important;
}

/* SVGs in sidebar */
[id^="amelia-v2-booking-"] .am-fs-sb__step svg,
[id^="amelia-v2-booking-"] .am-fs-sb__step svg *,
[id^="amelia-v2-booking-"] .am-fs-sb__step path {
  fill: #ffffff !important;
  stroke: #ffffff !important;
  color: #ffffff !important;
}

/* "Collapse menu" link at bottom of sidebar */
[id^="amelia-v2-booking-"] .am-fs-sb__collapse,
[id^="amelia-v2-booking-"] .am-fs-sb__collapse *,
[id^="amelia-v2-booking-"] [class*="am-fs-sb__collapse"],
[id^="amelia-v2-booking-"] [class*="am-fs-sb__collapse"] *,
[id^="amelia-v2-booking-"] [class*="collapse"]:not(.am-collapse-item-no-button),
[id^="amelia-v2-booking-"] [class*="collapse"]:not(.am-collapse-item-no-button) * {
  color: #ffffff !important;
}
[id^="amelia-v2-booking-"] .am-fs-sb__collapse svg,
[id^="amelia-v2-booking-"] [class*="am-fs-sb__collapse"] svg {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

/* Override Amelia's CSS variables that drive sidebar text colour */
[id^="amelia-v2-booking-"] .am-fs-sb,
[id^="amelia-v2-booking-"] [class*="am-fs-sb"],
[id^="amelia-v2-booking-"] [class*="am-fs-sb__"] {
  --map-base-danube-symbol-0: #ffffff !important;
  --map-base-danube-stroke-0: rgba(255, 255, 255, 0.7) !important;
  --map-brand-primary-symbol-0: #ffffff !important;
  --primitive-white: #ffffff !important;
}

/* ============================================================
   Floating WhatsApp bubble (bottom-right, all pages)
   ============================================================ */
.wa-bubble {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 18px;
  background: #25D366;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.wa-bubble:hover,
.wa-bubble:focus {
  background: #1ebe5b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  outline: none;
}
.wa-bubble:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.45);
  outline-offset: 3px;
}
.wa-bubble .fa-whatsapp {
  font-size: 22px;
  line-height: 1;
}

/* On phones: hide the text label, keep just the icon as a circle */
@media (max-width: 600px) {
  .wa-bubble {
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    right: 16px;
    bottom: 80px;
  }
  .wa-bubble-label {
    display: none;
  }
  .wa-bubble .fa-whatsapp {
    font-size: 26px;
  }
}

/* Footer WhatsApp row icon colour (matches phone row) */
.footer-contact .fa-whatsapp {
  color: inherit;
}


/* ============================================================
   BOOKING REG MODAL (mini-modal that opens when "Book Online" clicked)
   ============================================================ */
.booking-reg-card {
	max-width: 480px;
	padding: 32px 28px 28px;
	text-align: center;
}
.booking-reg-card h3 {
	margin: 0 0 12px;
	font-size: 1.5rem;
	color: var(--navy);
}
.booking-reg-card h3 i {
	margin-right: 8px;
	color: var(--mot-yellow, #f5a623);
}
.booking-reg-lead {
	margin: 0 0 24px;
	font-size: 0.95rem;
	color: var(--text-muted, #555);
	line-height: 1.5;
}
.booking-reg-input-group {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}
.booking-reg-input-group input {
	flex: 1;
	padding: 12px 16px;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: 2px solid var(--border, #d0d0d0);
	border-radius: 6px;
	transition: border-color 0.2s ease;
}
.booking-reg-input-group input:focus {
	outline: none;
	border-color: var(--navy);
}
.booking-reg-input-group button {
	white-space: nowrap;
	padding: 12px 24px;
}
.booking-reg-error {
	min-height: 1.2em;
	margin: 0;
	font-size: 0.85rem;
	color: #c62828;
	font-weight: 500;
}

/* Empty / invalid input state - applied to BOTH the homepage MOT input
   and the booking modal reg input */
.input-error {
	border-color: #c62828 !important;
	background-color: #fff5f5;
}
@keyframes bizwings-shake {
	0%, 100% { transform: translateX(0); }
	20%, 60% { transform: translateX(-6px); }
	40%, 80% { transform: translateX(6px); }
}
.shake {
	animation: bizwings-shake 0.4s ease-in-out;
}


/* Button spacing fix */
.service-detailed-cta {
  margin-top: 20px;
}

/* Mobile responsive grid */
@media (max-width: 640px) {
  .services-detailed {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-detailed {
    padding: 20px;
  }
  .service-detailed-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ===== Multi-select service rows (v1.4.1): tick box, text beside it, price right ===== */
.service-option.svc-pick { justify-content: flex-start; text-align: left; cursor: pointer; }
.service-option.svc-pick .svc-check { flex: 0 0 auto; width: 18px; height: 18px; margin: 0; cursor: pointer; }
.service-option.svc-pick .service-info { flex: 1 1 auto; min-width: 0; text-align: left; }
.service-option.svc-pick .service-info h4,
.service-option.svc-pick .service-info p { text-align: left; }
.service-option.svc-pick .service-price { flex: 0 0 auto; margin-left: auto; }
@media (max-width: 768px) {
  .service-option.svc-pick { flex-direction: row; text-align: left; }
}

/* VAT / legal boilerplate line in footer */
.footer-legal {
	font-size: 0.72rem;
	color: rgba(255,255,255,0.45);
	text-align: center;
	margin-top: 0.4rem;
	line-height: 1.5;
}

/* Pricing disclaimer line in footer */
.footer-disclaimer {
	font-size: 0.76rem;
	color: rgba(255,255,255,0.70);
	text-align: center;
	margin-top: 0.75rem;
	margin-bottom: 0.2rem;
	line-height: 1.5;
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 0.6rem;
}
.footer-disclaimer strong {
	color: #f5d742;
	font-weight: 600;
}

/* ---- Area pages ---- */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .area-layout { grid-template-columns: 1fr; }
  .area-sidebar { order: -1; }
}
.area-cta-box {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.area-cta-box h3 {
  color: var(--mot-yellow);
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.area-cta-box p { color: var(--silver); margin-bottom: 1.25rem; font-size: .95rem; }
.area-cta-box .btn-secondary {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.area-sidebar-info {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
}
.area-sidebar-info p {
  font-size: .85rem;
  color: var(--silver);
  margin: .5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.area-sidebar-info i {
  color: var(--mot-yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- Areas grid (hub page) ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 1rem;
}
.area-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--card-bg, #f8f8f8);
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .18s, transform .18s;
}
.area-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  transform: translateY(-2px);
  color: var(--navy);
}
.area-card i { color: var(--mot-yellow); font-size: 1.1rem; }
.area-card strong { font-size: 1rem; }
.area-card span { font-size: .8rem; color: var(--muted, #888); }

/* ---- Footer areas list ---- */
.footer-areas h4 { color: #fff; margin-bottom: .75rem; }
.footer-areas ul { list-style: none; margin: 0; padding: 0; }
.footer-areas li { margin-bottom: .4rem; }
.footer-areas a {
  color: var(--silver);
  text-decoration: none;
  font-size: .9rem;
  transition: color .15s;
}
.footer-areas a:hover { color: var(--mot-yellow); }
