/* ===================================================
   EPS Autocontrol Station — Design System & Main CSS
   Brand Colors: Teal #286478 | Coral #C86450
   Version 2.0 | Maj 2026
   =================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ---- DESIGN TOKENS (Brand Colors) ---- */
:root {
  /* Brand Teal Palette */
  --teal-950: #0f2a33;
  --teal-900: #1a3d4a;
  --teal-800: #1d5166;
  --teal-700: #286478;   /* Primary Brand — EPS text */
  --teal-600: #2d7a93;
  --teal-500: #3b8fa6;
  --teal-200: #a8d4df;
  --teal-100: #d1eaf0;
  --teal-50:  #e8f5f8;

  /* Brand Coral Palette */
  --coral-700: #a8503e;
  --coral-600: #b85a46;
  --coral-500: #C86450;  /* Accent Brand — Auto Control text */
  --coral-400: #d47a68;
  --coral-100: #f5dcd9;
  --coral-50:  #fdf3f1;

  /* Semantic aliases (kept for compatibility) */
  --blue-900: var(--teal-900);
  --blue-800: var(--teal-700);
  --blue-700: var(--teal-600);
  --blue-600: var(--teal-500);
  --blue-100: var(--teal-100);
  --blue-50:  var(--teal-50);
  --orange:   var(--coral-500);
  --orange-dark: var(--coral-700);

  /* Neutrals */
  --green:    #16a34a;
  --red:      #dc2626;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50:  #f8fafc;
  --white:    #ffffff;

  /* Shapes & Shadows */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.10);
  --shadow:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.15);
  --shadow-teal: 0 4px 20px rgba(40,100,120,.18);

  --container: 1280px;
  --gap:       1.5rem;
}

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.2; color: var(--gray-900); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem);    font-weight: 700; line-height: 1.3; color: var(--gray-900); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem);   font-weight: 600; line-height: 1.4; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-700); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section--gray { background: var(--gray-50); }
.section--teal { background: var(--teal-900); color: var(--white); }
.section--teal h2, .section--teal h3, .section--teal p { color: var(--white); }
/* legacy compat */
.section--blue { background: var(--teal-900); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p { color: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 640px; margin: .75rem auto 0; font-size: 1.05rem; }

/* ---- TOP INFO BAR ---- */
.top-bar {
  background: var(--teal-950);
  color: rgba(255,255,255,.72);
  font-size: .775rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  letter-spacing: .01em;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.top-bar-left, .top-bar-right {
  display: flex; align-items: center; flex-wrap: nowrap; gap: 0;
}
.top-bar-item {
  display: inline-flex; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.72); text-decoration: none;
  padding: .2rem .5rem; border-radius: 3px;
  transition: color .2s; white-space: nowrap; line-height: 1;
}
.top-bar-item:hover, .top-bar-item:focus { color: var(--white); outline: none; }
.top-bar-item svg { flex-shrink: 0; opacity: .65; }
.top-bar-divider {
  display: inline-block; width: 1px; height: 12px;
  background: rgba(255,255,255,.18); margin: 0 .15rem; flex-shrink: 0;
}
/* Responsive hiding */
@media (max-width: 900px)  { .top-bar-hide-md  { display: none !important; } }
@media (max-width: 768px)  { .top-bar-hide-sm  { display: none !important; } }
@media (max-width: 480px)  {
  .top-bar-hide-xs { display: none !important; }
  .top-bar { padding: .3rem 0; font-size: .73rem; }
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--teal-100);
  box-shadow: 0 2px 12px rgba(40,100,120,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 1rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; }
.site-logo-icon {
  width: 44px; height: 44px; background: var(--teal-700);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.site-logo-text { font-weight: 800; font-size: 1.1rem; color: var(--teal-900); line-height: 1.2; }
.site-logo-text span { display: block; font-weight: 400; font-size: .72rem; color: var(--gray-500); letter-spacing: .03em; }

.main-nav { display: flex; align-items: center; gap: .15rem; }
.main-nav a {
  padding: .5rem .85rem; border-radius: var(--radius-sm);
  font-size: .94rem; font-weight: 500; color: var(--gray-700);
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--teal-50); color: var(--teal-700);
}
.main-nav a.active { font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: .65rem; opacity: .7; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--teal-100);
  border-radius: var(--radius); box-shadow: var(--shadow-teal);
  min-width: 250px; padding: .65rem 0;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.menu-open .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: .55rem 1.25rem;
  border-radius: 0; font-size: .875rem;
  border-left: 3px solid transparent; color: var(--gray-700);
}
.nav-dropdown-menu a:hover {
  background: var(--teal-50); border-left-color: var(--teal-700); color: var(--teal-700);
}

.header-cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 700; color: var(--teal-900);
  padding: .4rem .6rem; border-radius: var(--radius-sm);
  transition: background .2s;
}
.header-phone:hover { background: var(--teal-50); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--coral-500); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-800); border-radius: 2px; transition: .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; transition: .2s;
  line-height: 1.2; text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--teal-700); color: var(--white); }
.btn-primary:hover { background: var(--teal-900); transform: translateY(-1px); box-shadow: var(--shadow-teal); }
.btn-orange { background: var(--coral-500); color: var(--white); }
.btn-orange:hover { background: var(--coral-700); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid var(--teal-700); color: var(--teal-700); background: transparent; }
.btn-outline:hover { background: var(--teal-50); }
/* btn-outline-white: used on dark hero backgrounds */
.btn-outline-white { border: 2px solid rgba(255,255,255,.85); color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-white:hover { background: rgba(255,255,255,.18); border-color: var(--white); }
/* btn-light: for use on teal/dark section backgrounds (CTA banner, etc.) */
.btn-light { background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--teal-900); border-color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--teal-900); }
.btn-white:hover { background: var(--teal-50); }
.btn-sm { padding: .58rem 1.08rem; font-size: .9rem; }
.btn-lg { padding: .9rem 1.8rem; font-size: 1.05rem; }

/* ---- HERO SLIDER ---- */
.hero {
  position: relative; overflow: hidden;
  height: clamp(560px, 88vh, 980px);
  color: var(--white);
  display: flex; align-items: center;
}

/* Background image slides */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease; will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay: heavy dark on left → lighter on right */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(15, 42, 51, 0.90) 0%,
    rgba(26, 61, 74, 0.70) 42%,
    rgba(26, 61, 74, 0.20) 100%
  pointer-events: none;
}

/* Coral accent stripe at bottom */
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--coral-500); z-index: 3;
}

/* Container sits above overlay */
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 660px; padding: 5rem 0 5.5rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.hero-content .hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: .35rem .85rem; font-size: .8rem; color: rgba(255,255,255,.9);
}
.badge-coral { background: rgba(200,100,80,.25); border-color: rgba(200,100,80,.4); }

/* Slider dot indicators */
.hero-dots {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .45rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; padding: 0; cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.active { background: var(--coral-500); transform: scale(1.25); }

/* Legacy stubs — kept so inner pages still work */
.hero-inner { display: contents; }
.hero-image-box { display: none; }
.placeholder-img {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-950) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .85rem; text-align: center;
  min-height: 200px; width: 100%;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white); padding: 2rem 0;
  border-bottom: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-item { text-align: center; padding: .5rem; }
.stat-item .stat-num { font-size: 2rem; font-weight: 800; color: var(--teal-700); display: block; }
.stat-item .stat-label { font-size: .82rem; color: var(--gray-500); font-weight: 500; }

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-teal); transform: translateY(-3px);
  border-color: var(--teal-200);
}
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--teal-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; color: var(--teal-700); }
.service-card h3 { margin-bottom: .5rem; font-size: 1.1rem; color: var(--gray-900); }
.service-card p { font-size: .9rem; flex: 1; }
.service-card .card-cta {
  margin-top: 1.25rem; font-size: .875rem; font-weight: 600;
  color: var(--teal-700); display: inline-flex; align-items: center; gap: .3rem;
}
.service-card .card-cta:hover { color: var(--teal-900); }

/* ---- FEATURE LIST (service detail pages) ---- */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: .6rem;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm); padding: .85rem 1rem; font-size: .9rem;
}
.feature-item svg { width: 18px; height: 18px; color: var(--teal-700); flex-shrink: 0; margin-top: 1px; }
.feature-item strong { display: block; font-size: .8rem; color: var(--gray-700); margin-bottom: .1rem; }

/* ---- USP SECTION ---- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.usp-item { text-align: center; }
.usp-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--teal-100) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border: 2px solid var(--teal-200);
}
.usp-icon svg { width: 28px; height: 28px; color: var(--teal-700); }
.usp-item h3 { margin-bottom: .5rem; }

/* ---- LOCATIONS STRIP ---- */
.locations-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.location-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, border-color .2s;
}
.location-card:hover { box-shadow: var(--shadow-teal); border-color: var(--teal-200); }
.location-map-placeholder {
  height: 220px; background: var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-700); font-size: .85rem;
}
.location-map-placeholder iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-info { padding: 1.5rem; }
.location-info h3 { margin-bottom: .7rem; font-size: 1.14rem; color: var(--teal-900); }
.location-detail {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .94rem; line-height: 1.55; color: var(--gray-600); margin-bottom: .45rem;
}
.location-detail span, .location-detail a { overflow-wrap: anywhere; }
.location-detail svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--teal-600); margin-top: 2px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  padding: 3.5rem 0;
}
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p  { color: rgba(255,255,255,.8); margin: 0; }
.cta-banner-actions { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- FAQ ACCORDION ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0; background: none; font-size: 1rem; font-weight: 600;
  color: var(--gray-900); text-align: left; gap: 1rem;
}
.faq-question:hover { color: var(--teal-700); }
.faq-question .faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--teal-700); transition: transform .3s; }
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--teal-700); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--gray-700); font-size: .95rem; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ---- FORMS ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.span-2 { grid-column: span 2; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
  padding: .65rem .9rem; font-size: .95rem; font-family: inherit;
  color: var(--gray-900); background: var(--white);
  transition: border .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(40,100,120,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2364748b' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
  background-size: 18px; padding-right: 2.5rem;
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.form-group .error-msg { font-size: .8rem; color: var(--red); display: none; }
.form-group.has-error .error-msg { display: block; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--teal-700); margin-top: 2px; }
.form-check label { font-size: .875rem; color: var(--gray-600); }
.form-check a { color: var(--teal-700); text-decoration: underline; }
.form-note {
  font-size: .8rem; color: var(--gray-500);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
}
.form-note strong { color: var(--gray-700); }
.form-success {
  display: none; background: #dcfce7; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.form-success h3 { color: #166534; margin-bottom: .5rem; }
.form-success p { color: #166534; margin: 0; }

/* ---- BOOKING TABS ---- */
.booking-tabs { display: flex; gap: .25rem; border-bottom: 2px solid var(--gray-200); margin-bottom: 2rem; flex-wrap: wrap; }
.booking-tab {
  padding: .65rem 1.25rem; font-size: .875rem; font-weight: 600;
  color: var(--gray-600); border-bottom: 3px solid transparent;
  background: none; margin-bottom: -2px; transition: .2s; cursor: pointer;
  border: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.booking-tab:hover { color: var(--teal-700); background: var(--teal-50); }
.booking-tab.active { color: var(--teal-700); border-bottom: 3px solid var(--teal-700); background: var(--teal-50); }
.booking-panel { display: none; }
.booking-panel.active { display: block; }

/* ---- SIDEBAR ---- */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: flex-start; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-box {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem;
}
.sidebar-box h4 { color: var(--teal-900); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--gray-100); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: var(--white); border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center; margin-bottom: 1.25rem;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: .5rem; border: none; padding: 0; font-size: 1.1rem; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: .5rem; }
.sidebar-contact-row { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; font-size: .875rem; }
.sidebar-contact-row svg { width: 16px; height: 16px; color: var(--coral-500); flex-shrink: 0; }
.sidebar-contact-row a { color: var(--teal-700); font-weight: 600; }

/* ---- CONTACT INFO ---- */
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.contact-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-card h3 {
  margin-bottom: 1.25rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--teal-100); color: var(--teal-900);
}
.contact-row { display: flex; gap: .75rem; margin-bottom: .85rem; align-items: flex-start; }
.contact-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal-700); margin-top: 3px; }
.contact-row div { font-size: .9rem; }
.contact-row div strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: 2px; }
.contact-row div a { color: var(--teal-700); font-weight: 600; }
.contact-row div a:hover { color: var(--teal-900); text-decoration: underline; }
.conflict-note {
  background: #fef3c7; border: 1px solid #f59e0b; border-radius: var(--radius-sm);
  padding: .5rem .8rem; font-size: .8rem; color: #92400e; margin-top: .5rem;
  display: flex; align-items: flex-start; gap: .4rem;
}

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: .75rem 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; font-size: .85rem; }
.breadcrumb li { display: flex; align-items: center; gap: .25rem; color: var(--gray-500); }
.breadcrumb li + li::before { content: '/'; }
.breadcrumb li a { color: rgba(255,255,255,.75); }
.breadcrumb li a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb li:last-child { color: rgba(255,255,255,.95); font-weight: 500; }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-700) 100%);
  padding: 3rem 0 2.5rem; color: var(--white);
  border-bottom: 3px solid var(--coral-500);
}
.page-header h1 { color: var(--white); margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; margin: 0; }

/* ---- STEPS ---- */
.steps-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; counter-reset: step; }
.step-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.5rem 1.25rem;
  position: relative; counter-increment: step;
}
.step-item::before {
  content: counter(step); position: absolute; top: -14px; left: 1.25rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-700); color: var(--white);
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.step-item h4 { font-size: .95rem; margin-bottom: .4rem; padding-top: .2rem; color: var(--teal-900); }
.step-item p { font-size: .85rem; margin: 0; }

/* ---- DOCS LIST ---- */
.docs-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .75rem; }
.doc-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm); padding: .85rem 1rem;
  font-size: .9rem; font-weight: 500; color: var(--teal-900);
}
.doc-item svg { width: 20px; height: 20px; color: var(--teal-700); flex-shrink: 0; }

/* ---- SERVICE BADGES ---- */
.service-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.service-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 600;
}
.service-badge-teal { background: var(--teal-50); color: var(--teal-700); border: 1px solid var(--teal-200); }
.service-badge-green { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.service-badge-gray  { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }

/* ---- HOURS TABLE ---- */
.hours-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table td { padding: .5rem .25rem; color: var(--gray-700); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--teal-700); }
.hours-table tr.today td { background: var(--teal-50); color: var(--teal-900); border-radius: 4px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .site-logo-text { color: var(--white); }
.footer-brand .site-logo-text span { color: rgba(255,255,255,.45); }
.footer-brand p { margin-top: 1rem; font-size: .875rem; max-width: 260px; }
.footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-col h4 {
  color: var(--white); font-size: .8rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.footer-col h4::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.15); }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .65rem; font-size: .875rem; }
.footer-contact-item { overflow-wrap: anywhere; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--coral-500); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.85); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--teal-700); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); }

/* ---- DISCLAIMER BOX ---- */
.disclaimer-box {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal-700);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  font-size: .875rem; color: var(--gray-600);
}
.disclaimer-box p { margin-bottom: .5rem; }

/* ---- LANGUAGE SWITCH ---- */
.language-switch {
  display: inline-flex; align-items: center; padding: 2px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); flex-shrink: 0;
}
.language-switch a {
  min-width: 31px; padding: .25rem .4rem; border-radius: 4px;
  color: var(--gray-600); font-size: .72rem; font-weight: 700; text-align: center;
}
.language-switch a.active { color: var(--white); background: var(--teal-700); }
.language-switch a:focus-visible { outline: 2px solid var(--coral-500); outline-offset: 2px; }

/* ---- INFO / NOTICE BOXES ---- */
.info-box {
  background: var(--teal-50); border: 1px solid var(--teal-200);
  border-left: 4px solid var(--teal-700);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  font-size: .9rem; color: var(--teal-900);
}
.warning-box {
  background: #fef3c7; border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  font-size: .9rem; color: #78350f;
}

/* ---- MOBILE STICKY CTA ---- */
/* Removed per design decision: sticky bar covered content and added visual noise */
.sticky-cta { display: none !important; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100;
  background: var(--gray-900); color: rgba(255,255,255,.85);
  padding: 1rem 1.25rem;
}
.cookie-banner .container { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.cookie-banner p { font-size: .85rem; margin: 0; color: rgba(255,255,255,.8); }
.cookie-banner p a { color: var(--teal-400); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ---- UTILS ---- */
.text-center { text-align: center; }
.text-teal  { color: var(--teal-700); }
.text-coral { color: var(--coral-500); }
.text-blue  { color: var(--teal-700); }  /* legacy compat */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--teal-50); color: var(--teal-700);
  border: 1px solid var(--teal-100); border-radius: 100px;
  padding: .3rem .8rem; font-size: .84rem; font-weight: 600;
}
.tag-coral  { background: var(--coral-50); color: var(--coral-700); border-color: var(--coral-100); }
.tag-orange { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.tag-green  { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .locations-strip .location-card:last-child { grid-column: 1 / -1; max-width: 620px; width: 100%; justify-self: center; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid .contact-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 1120px) {
  .header-phone { display: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .site-header .container { height: 68px; padding-inline: 1rem; }
  .site-logo img { height: 42px; }
  .header-cta { margin-left: auto; }
  .language-switch a { min-width: 34px; padding: .35rem .45rem; font-size: .75rem; }
  .hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--gray-100);
    padding: .75rem 1rem 1rem; gap: .2rem; box-shadow: var(--shadow);
    border-bottom: 3px solid var(--teal-700);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .main-nav .nav-dropdown > a {
    display: block; width: 100%; padding: .8rem .9rem; font-size: 1rem;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown-menu {
    display: none;
  }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; text-align: left; gap: 1.25rem; }
  .usp-item { display: flex; gap: 1rem; align-items: flex-start; }
  .usp-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .locations-strip { grid-template-columns: 1fr; gap: 1.25rem; }
  .locations-strip .location-card:last-child { grid-column: auto; max-width: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-grid .contact-card:last-child { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: auto; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feature-list { grid-template-columns: 1fr; }
  .section { padding: 3.25rem 0; }
  .section-header { margin-bottom: 2rem; }
  .page-header { padding: 2.25rem 0 2rem; }
  .hero { height: min(720px, calc(100svh - 68px)); min-height: 540px; }
  .hero-content { max-width: 100%; padding: 4rem 0 5rem; }
  .hero-content h1 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .hero-content .hero-sub { font-size: 1.05rem; line-height: 1.65; }
  .hero-overlay { background: linear-gradient(to right, rgba(15,42,51,.92), rgba(26,61,74,.68)); }
  .location-map-placeholder { height: 240px; }
  .location-info { padding: 1.35rem; }
  .service-card { padding: 1.4rem; }
  .service-layout { gap: 2rem; }
  .footer-brand p { max-width: none; }
}

@media (max-width: 480px) {
  .booking-tabs { gap: 0; }
  .booking-tab { padding: .6rem .85rem; font-size: .8rem; }
  .container { padding-inline: 1rem; }
  .hero { min-height: 560px; height: calc(100svh - 68px); max-height: 700px; }
  .hero-slide { background-position: 58% center; }
  .hero-content { padding: 3.5rem 0 4.5rem; }
  .hero-content h1 { font-size: clamp(1.85rem, 9vw, 2.25rem); line-height: 1.16; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: .75rem 1rem; font-size: .92rem; white-space: normal; justify-content: center; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .contact-card { padding: 1.25rem; }
  .location-map-placeholder { height: 210px; }
  .location-info { padding: 1.2rem; }
  .cta-banner { padding: 2.75rem 0; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { width: 100%; }
  .form-group input, .form-group select, .form-group textarea { min-height: 48px; font-size: 16px; }
  .footer-bottom { align-items: flex-start; text-align: left; }
}
