/* ============================================================
   IRON VOLT ELECTRIC — styles.css  v7.0
   Design: Industrial Grit — Deep Navy / Amber / Electric Blue
   Fonts: Archivo (headings) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  overscroll-behavior: none;
  --navy:        #060e1a;
  --navy-light:  #0c1829;
  --navy-mid:    #0a1422;
  --blue:        #14304d;
  --blue-mid:    #1a4068;
  --blue-accent: #2d7cf6;
  --gold:        #e8a020;
  --gold-dark:   #c58c18;
  --gold-light:  #f5c24a;
  --gold-pale:   rgba(232,160,32,0.06);
  --gold-border: rgba(232,160,32,0.2);
  --gold-glow:   rgba(232,160,32,0.15);
  --cream:       #faf8f5;
  --light-bg:    #f4f2ef;
  --off-white:   #f9f8f6;
  --white:       #ffffff;
  --gray:        #5e6b7a;
  --gray-light:  #8a95a4;
  --text:        #121a26;
  --border:      #ddd8d0;
  --border-light:#eae7e2;
  --success:     #1a7f4e;
  --danger:      #c23030;
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 3px rgba(6,14,26,0.06);
  --shadow-sm: 0 2px 8px rgba(6,14,26,0.08);
  --shadow:    0 4px 20px rgba(6,14,26,0.1);
  --shadow-lg: 0 12px 44px rgba(6,14,26,0.14);
  --shadow-xl: 0 28px 70px rgba(6,14,26,0.2);
  --shadow-gold: 0 4px 16px rgba(232,160,32,0.18);
  --trans:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:0.16s cubic-bezier(0.4, 0, 0.2, 1);
  /* Subtle texture */
  --noise: none;
  --diagonal: none;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img     { max-width: 100%; height: auto; display: block; }
a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
button  { font-family: inherit; cursor: pointer; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

section         { padding: 4.5rem 0; }
section.compact { padding: 3rem 0; }
section.tight   { padding: 1.5rem 0; }

.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.bg-light    { background: var(--light-bg); }
.bg-navy     { background: var(--navy); }
.hidden      { display: none !important; }

/* ============================================================
   SECTION LABELS & HEADERS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header .section-label,
.text-center .section-label,
.cta-section .section-label,
.areas-map-section .section-label {
  margin-left: auto;
  margin-right: auto;
}

.section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title  { margin-bottom: 0.75rem; }

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}
.section-title.left::after { margin-left: 0; }
.section-title.left { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }

.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0.85rem auto 0;
  line-height: 1.72;
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.92rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after { display: none; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(232,160,32,0.2);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(232,160,32,0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-lg   { padding: 1.1rem 2.8rem; font-size: 0.95rem; }
.btn-sm   { padding: 0.55rem 1.3rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-title { font-size: 1.06rem; margin-bottom: 0.5rem; }
.card-text  { color: var(--gray); font-size: 0.93rem; line-height: 1.68; }

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency-banner {
  background: linear-gradient(90deg, #b52020 0%, var(--danger) 50%, #b52020 100%);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 1100;
  position: relative;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
}
.marquee-track {
  display: inline-block;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* Hazard-stripe texture on emergency banner */
.emergency-banner a:hover { opacity: 0.85; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,14,26,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  gap: 1.5rem;
}
.logo img { height: 48px; width: auto; display: block; }
.nav-spacer { flex: 1; }
.nav-menu { display: flex; align-items: center; gap: 0.15rem; }

.nav-menu li a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  display: block;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  border-radius: 1px;
  transition: transform var(--trans);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

.nav-book {
  font-family: var(--font-head) !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius) !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all var(--trans) !important;
}
.nav-book:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px) !important;
}
.nav-book::after { display: none !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  padding: 0.44rem 0.95rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--trans);
  white-space: nowrap;
}
.nav-phone:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-pale);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.55rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem;
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0.6rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.trust-item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   PAGE BANNER — industrial texture
   ============================================================ */
.page-banner {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before { display: none; }
.page-banner::after { display: none; }
.page-banner .container { position: relative; }
.page-banner h1 { color: var(--white); margin-bottom: 1rem; font-weight: 900; }
.page-banner h1 span { color: var(--gold); }
.page-banner p {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.72;
}
.breadcrumb {
  margin-bottom: 1.2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   HERO — full industrial treatment
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 4rem;
}

.hero::before { display: none; }
.hero::after { display: none; }

.hero-lines { display: none; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/ironvoltvan.png') center center / cover no-repeat;
  opacity: 0.04;
  filter: blur(3px);
}

.hero-bg-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,160,32,0.08);
  border: 1px solid rgba(232,160,32,0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-weight: 900;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
  animation: fadeInDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.78;
  font-weight: 400;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.1rem;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.hero-stars { color: var(--gold); font-size: 0.98rem; letter-spacing: 0.05em; }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-stat .stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -0.01em;
}
.hero-stat .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
  font-weight: 500;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--trans);
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}
.service-card:hover::before { opacity: 1; }

.service-card-img-wrap { overflow: hidden; height: 195px; }
.service-card .card-image {
  width: 100%;
  height: 195px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover .card-image { transform: scale(1.05); }

.service-card-body { padding: 1.35rem 1.5rem 0.85rem; }
.service-card .card-title { font-size: 1.04rem; margin-bottom: 0.45rem; font-weight: 800; }
.service-card .card-text  { font-size: 0.88rem; color: var(--gray); line-height: 1.62; }

.service-card-footer { padding: 0 1.5rem 1.3rem; }
.service-card-link {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--trans), color var(--trans);
}
.service-card-link:hover { color: var(--blue); gap: 0.7rem; }

/* ============================================================
   SLIDESHOW
   ============================================================ */
.card-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 195px;
  background: var(--navy);
}
.slideshow-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide-img {
  min-width: 100%;
  width: 100%;
  height: 195px;
  object-fit: cover;
  flex-shrink: 0;
}
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,14,26,0.65);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
  z-index: 2;
  padding: 0;
  backdrop-filter: blur(8px);
}
.slide-btn:hover {
  background: var(--gold);
  border-color: transparent;
  color: var(--navy);
}
.slide-prev { left: 8px; }
.slide-next { right: 8px; }
.slide-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.slide-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--trans-fast);
}
.slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   WHY US — industrial accent cards
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
/* Top accent bar */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.why-card::after { display: none; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card h3 { font-size: 1.02rem; margin-bottom: 0.6rem; position: relative; font-weight: 800; }
.why-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.68; position: relative; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-widget-wrap { max-width: 1060px; margin: 0 auto; }

/* ============================================================
   AREAS — industrial dark section
   ============================================================ */
.areas-map-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.areas-map-section::before { display: none; }
.areas-map-section .container { position: relative; }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.area-tag {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: all var(--trans);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.area-tag::before { content: '\00B7'; color: var(--gold); font-weight: 700; }
.area-tag:hover {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--gold-border);
  transform: translateY(-1px);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 830px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow var(--trans), border-color var(--trans);
  background: var(--white);
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-border); }
.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--trans), color var(--trans);
  letter-spacing: 0.01em;
}
.faq-q:hover { background: var(--off-white); color: var(--blue); }
.faq-q.active { background: var(--navy); color: var(--gold); }
.faq-arrow {
  font-size: 1.12rem;
  transition: transform 0.32s ease;
  flex-shrink: 0;
  opacity: 0.5;
}
.faq-q.active .faq-arrow { transform: rotate(45deg); opacity: 1; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--off-white);
}
.faq-a.open { max-height: 600px; }
.faq-a-inner {
  padding: 1.2rem 1.5rem;
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
   CTA — full industrial treatment
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before { display: none; }
.cta-section::after { display: none;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.06rem;
  margin-bottom: 2.2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.trust-badge {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  text-align: center;
  min-width: 120px;
  transition: all var(--trans-fast);
  backdrop-filter: blur(8px);
}
.trust-badge:hover {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.trust-badge .badge-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
}
.trust-badge .badge-detail {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.15rem;
  display: block;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-category { margin-bottom: 0; }
.service-category h2 { margin-bottom: 1.2rem; }

.service-category-image {
  width: 100%;
  max-width: 960px;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 2.6rem;
  display: block;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  transition: all var(--trans);
}
.service-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold-light);
}
.service-detail-card h3 { margin-bottom: 0.55rem; font-weight: 800; }
.service-detail-card p  { font-size: 0.93rem; color: var(--gray); line-height: 1.68; }

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.service-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--gray);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  padding: 0.32rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all var(--trans-fast);
}
.service-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-feature:hover {
  border-color: var(--gold-border);
  background: var(--gold-pale);
  color: var(--navy);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-img {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  border-left: 3px solid var(--gold);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: transform var(--trans), box-shadow var(--trans);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card h3 { margin-bottom: 0.5rem; font-weight: 800; }

.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.25rem; }
.credential-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--trans-fast);
  position: relative;
  overflow: hidden;
}
.credential-card::before { display: none; }
.credential-card:hover { border-color: var(--gold-border); }
.credential-card:hover::before { opacity: 1; }
.credential-num {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.credential-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-lg);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item h4 {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: 0.2rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}
.contact-item a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.02rem;
  transition: color var(--trans);
}
.contact-item a:hover { color: var(--gold-dark); }

.contact-badge { max-width: 260px; width: 100%; margin: 0 auto; border-radius: var(--radius-lg); }

.contact-method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-bottom: 3rem;
}
.contact-method-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.contact-method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-border); }
.contact-method-card h3 { font-size: 1.06rem; margin-bottom: 0.5rem; font-weight: 800; }
.contact-method-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.68; }
.contact-method-card a.method-link {
  display: inline-block;
  margin-top: 0.88rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  transition: color var(--trans), gap var(--trans);
}
.contact-method-card a.method-link:hover { color: var(--navy); }

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--gold-pale), rgba(232,160,32,0.1));
  border: 1px solid var(--gold-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}
.contact-method-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.form-section-title {
  font-size: 0.95rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--border-light);
  letter-spacing: 0.03em;
}

.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-head);
}
.form-control {
  width: 100%;
  padding: 0.82rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.1);
}
.form-control::placeholder { color: #b5b0a8; }
textarea.form-control { resize: vertical; min-height: 115px; }
select.form-control { cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--off-white);
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: border-color var(--trans-fast);
}
.form-check:hover { border-color: var(--gold-border); }
.form-check input { margin-top: 0.24rem; accent-color: var(--gold); }
.form-check span  { font-size: 0.9rem; color: var(--gray); line-height: 1.55; }

.form-success { text-align: center; padding: 3rem 2rem; display: none; }
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; }
.form-success p  { color: var(--gray); }

/* ============================================================
   MISC
   ============================================================ */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.75rem 0;
}

.guarantee-box {
  background: linear-gradient(135deg, rgba(26,127,78,0.06), rgba(26,127,78,0.02));
  border: 1px solid rgba(26,127,78,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform var(--trans), box-shadow var(--trans);
}
.guarantee-box:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.guarantee-box h4 { color: var(--success); margin-bottom: 0.4rem; font-weight: 800; }
.guarantee-box p  { font-size: 0.92rem; color: var(--gray); line-height: 1.72; }

.emergency-callout {
  background: linear-gradient(138deg, #c02828 0%, #8a1c14 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(192,40,40,0.2);
}
.emergency-callout::before { display: none; }
.emergency-callout h3 { color: var(--white); margin-bottom: 0.3rem; position: relative; }
.emergency-callout p  { color: rgba(255,255,255,0.75); font-size: 0.92rem; position: relative; }
.emergency-callout .btn { white-space: nowrap; flex-shrink: 0; position: relative; }

.highlight-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-xs);
}

.icon-list { display: flex; flex-direction: column; gap: 0.75rem; }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.62;
}
.icon-list-item .il-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(232,160,32,0.1);
  border: 1.5px solid rgba(232,160,32,0.28);
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOOTER — industrial texture
   ============================================================ */
.site-footer {
  background: #050a12;
  color: #8a97a8;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before { display: none; }
.site-footer::after { display: none; }


.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.footer-brand h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.78; color: rgba(255,255,255,0.28); }

.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section h3 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}

.footer-links li { margin-bottom: 0.58rem; }
.footer-links a { color: rgba(255,255,255,0.3); font-size: 0.9rem; transition: color var(--trans); font-weight: 400; }
.footer-links a:hover { color: var(--gold); }

.footer-section p { margin-bottom: 0.58rem; font-size: 0.9rem; }
.footer-section a { color: rgba(255,255,255,0.3); transition: color var(--trans); }
.footer-section a:hover { color: var(--gold); }

.footer-tecl {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.8rem;
  border-radius: 4px;
  margin-top: 0.55rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.85rem 0 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-socials-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-right: 0.4rem;
  white-space: nowrap;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  transition: all var(--trans);
  flex-shrink: 0;
}
.social-btn svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.social-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.18); transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(6,14,26,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(232,160,32,0.2);
  padding: 0.75rem 1rem;
  gap: 0.65rem;
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 0.82rem 1rem; font-size: 0.88rem; }

/* ============================================================
   RESPONSIVE -- 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .grid-3, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-method-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  section         { padding: 3rem 0; }
  section.compact { padding: 2rem 0; }
  section.tight   { padding: 1.25rem 0; }

  header { position: sticky; top: 0; }
  .navbar { display: flex; align-items: center; height: 58px; padding: 0 1rem; gap: 0; }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    flex-shrink: 0;
    padding: 0;
  }

  .logo { flex: 1; display: flex; justify-content: center; align-items: center; }
  .logo img { height: 34px; }
  .nav-spacer { width: 40px; flex: 0 0 40px; }
  .nav-phone  { display: none; }

  .nav-menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 58px; left: 0; right: 0;
    z-index: 999;
    background: rgba(6,14,26,0.97);
    backdrop-filter: blur(20px);
    overflow: hidden;
    max-height: 0; opacity: 0;
    padding: 0 1rem;
    gap: 0.18rem;
    transition: max-height 0.35s ease, opacity 0.28s ease, padding 0.28s ease, box-shadow 0.28s ease;
    box-shadow: none;
  }
  .nav-menu.active {
    max-height: 520px; opacity: 1;
    padding: 0.7rem 1rem 1.2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .nav-menu li { opacity: 0; transform: translateY(-5px); transition: opacity 0.2s ease, transform 0.2s ease; }
  .nav-menu.active li { opacity: 1; transform: translateY(0); }
  .nav-menu.active li:nth-child(1) { transition-delay: 0.04s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.08s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.12s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.16s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.20s; }
  .nav-menu li a { padding: 0.68rem 1rem; border-radius: var(--radius); }
  .nav-book { text-align: center; margin-top: 0.5rem; }

  .emergency-banner {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
  }
  .emergency-banner .marquee-track {
    animation: marquee-scroll 12s linear infinite;
  }

  .trust-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-bar-inner { justify-content: flex-start; flex-wrap: nowrap; padding: 0 0.25rem; gap: 1.25rem; min-width: max-content; }
  .trust-item { font-size: 0.7rem; white-space: nowrap; }

  .hero { min-height: auto; padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-sub { font-size: 0.96rem; }
  .hero-badge { font-size: 0.68rem; letter-spacing: 0.14em; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.7rem; }
  .hero-btns .btn { width: 100%; max-width: 300px; }
  .hero-stats { gap: 1.5rem; padding-top: 1.5rem; }
  .hero-stat .stat-num { font-size: 1.8rem; }
  .hero-rating { font-size: 0.8rem; }

  .grid-2, .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Services page: more breathing room on mobile */
  .service-detail-card { padding: 1.25rem; }
  .service-detail-card p { font-size: 0.9rem; }
  .service-features { gap: 0.35rem; }
  .service-feature { font-size: 0.78rem; padding: 0.25rem 0.6rem; }

  .cta-btns { flex-direction: column; align-items: center; gap: 0.7rem; }
  .cta-btns .btn { width: 100%; max-width: 300px; }

  .service-category-image { height: 190px; }
  .page-banner { padding: 3rem 0 2.75rem; }
  .page-banner p { font-size: 0.97rem; }
  .emergency-callout { flex-direction: column; gap: 1rem; padding: 1.5rem 1.25rem; }
  .emergency-callout .btn { width: 100%; text-align: center; }
  .guarantee-box { flex-direction: column; gap: 0.75rem; padding: 1.35rem; }
  .highlight-box { padding: 1.35rem; }
  .contact-method-cards { grid-template-columns: 1fr; }
  .trust-badges { gap: 0.65rem; }
  .trust-badge { min-width: 100px; padding: 0.7rem 0.88rem; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .booking-sidebar { position: static !important; }

  .footer-socials { gap: 0.5rem; }
  .footer-socials-label { width: 100%; margin-right: 0; margin-bottom: 0.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.2rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr 1fr; }
  .section-header { margin-bottom: 2rem; }
  .card { padding: 1.45rem; }
  .emergency-banner { font-size: 0.65rem; padding: 0.35rem 0.5rem; }
  .emergency-banner .marquee-track {
    animation: marquee-scroll 10s linear infinite;
  }
}

/* ============================================================
   UTILITY: SMOOTH BACKGROUND TRANSITIONS
   ============================================================ */
section { position: relative; }
.bg-light {
  background: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}