/* ============================================================
   Spol-Jour — css/style.css
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --dark-blue: #0a1f3c;
  --mid-blue: #1a3a6b;
  --light-gray: #f4f6f9;
  --white: #fff;
  --accent: #ff6b00;
  --accent-dark: #d95800;
  --text: #1a2535;
  --text-muted: #5a6a7e;
  --border: #d0d8e4;
  --shadow-sm: 0 2px 8px rgba(10,31,60,.08);
  --shadow-md: 0 4px 20px rgba(10,31,60,.14);
  --shadow-lg: 0 8px 40px rgba(10,31,60,.18);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --transition: .22s ease;
  --max-w: 1200px;
  --header-h: 70px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
main { display: block; margin: 0; padding: 0; }

/* WordPress admin bar compensation — prevent gap between header and hero */
.admin-bar #site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
button { cursor: pointer; font-family: var(--font); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { line-height: 1.25; color: var(--dark-blue); }
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 1.1rem; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 72px 0; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--dark-blue); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.text-center { text-align: center; }
.lead { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 2rem; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  vertical-align: middle;
}
.btn svg,
.btn img {
  display: block;
  flex-shrink: 0;
  vertical-align: middle;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: 0 4px 18px rgba(255,107,0,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-dark:hover { background: var(--accent); color: var(--white); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-blue);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  overflow: visible;
  isolation: isolate;
}
#site-header.scrolled { background: rgba(10,31,60,.97); box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
}
.header-inner .header-cta { margin-left: auto; }
.logo {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
nav.main-nav { display: flex; align-items: center; gap: .2rem; }
nav.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .7rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
nav.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }

/* ---------- Nav dropdown ---------- */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .28rem;
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .7rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.nav-dropdown-toggle svg {
  transition: transform .22s ease;
  flex-shrink: 0;
  stroke: rgba(255,255,255,.7);
}
.nav-dropdown-wrap:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
  text-decoration: none;
}
.nav-dropdown-wrap:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  stroke: var(--white);
}
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0 .5rem;
  padding-top: 14px; /* covers the gap so mouse doesn't leave the zone */
  list-style: none;
  z-index: 2000;
  border: 1px solid var(--border);
  /* fade in fast, fade out slow so there's time to reach it */
  transition: opacity .12s ease, visibility 0s linear .28s;
}
/* decorative arrow — sits inside the padding area */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 20px;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
  border-radius: 2px;
  pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .12s ease, visibility 0s linear 0s;
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .62rem 1.1rem;
  color: var(--dark-blue);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-dropdown li a svg {
  width: 15px; height: 15px;
  fill: var(--text-muted);
  flex-shrink: 0;
  transition: fill var(--transition);
}
.nav-dropdown li a:hover {
  background: var(--light-gray);
  color: var(--accent);
  text-decoration: none;
}
.nav-dropdown li a:hover svg { fill: var(--accent); }
.nav-dropdown li a[aria-current="page"] {
  background: rgba(255,107,0,.07);
  color: var(--accent);
  font-weight: 700;
}
.nav-dropdown li a[aria-current="page"] svg { fill: var(--accent); }

.header-badge-24h { display: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.header-phone svg { width:16px; height:16px; fill:var(--accent); flex-shrink:0; }
.header-phone:hover { color: var(--accent); text-decoration: none; }
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--dark-blue);
  z-index: 2001;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  gap: .5rem;
  overflow-y: auto;
}
.admin-bar .mobile-nav-overlay { top: calc(var(--header-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .mobile-nav-overlay { top: calc(var(--header-h) + 46px); }
}
.mobile-nav-overlay.open { display: flex; }
/* Close button inside mobile nav */
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: .25rem;
  margin-bottom: .5rem;
  align-self: flex-end;
}
.mobile-nav-close svg { stroke: var(--white); }
.mobile-nav-overlay a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: .9rem 1rem;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-nav-overlay a:hover { background: rgba(255,255,255,.08); }
.mobile-nav-overlay .btn { margin-top: 1rem; justify-content: center; }

/* Mobile nav – Tjänster accordion */
.mobile-nav-overlay .mobile-areas-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: .9rem 1rem;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,.08);
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.mobile-nav-overlay .mobile-areas-toggle:hover { background: rgba(255,255,255,.08); }
.mobile-nav-overlay .mobile-areas-toggle svg {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.mobile-nav-overlay .mobile-areas-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mobile-nav-overlay .mobile-areas-submenu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  margin: .25rem 0;
}
.mobile-nav-overlay .mobile-areas-submenu.open { display: flex; }
.mobile-nav-overlay .mobile-areas-submenu a {
  font-size: 1rem;
  font-weight: 500;
  padding: .75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.mobile-nav-overlay .mobile-areas-submenu a:last-child { border-bottom: none; }
.mobile-nav-overlay .mobile-areas-submenu a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.mobile-nav-overlay .mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: .9rem 1rem;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.mobile-nav-overlay .mobile-services-toggle:hover { background: rgba(255,255,255,.08); }
.mobile-nav-overlay .mobile-services-toggle svg {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.mobile-nav-overlay .mobile-services-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mobile-nav-overlay .mobile-services-submenu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  margin: .25rem 0;
}
.mobile-nav-overlay .mobile-services-submenu.open { display: flex; }
.mobile-nav-overlay .mobile-services-submenu a {
  font-size: 1rem;
  font-weight: 500;
  padding: .75rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}
.mobile-nav-overlay .mobile-services-submenu a:last-child { border-bottom: none; }
.mobile-nav-overlay .mobile-services-submenu a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
  padding: 90px 0 120px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(26,58,107,.9) 0%, transparent 60%),
    linear-gradient(135deg, #0a1f3c 0%, #0f2d52 50%, #142a4a 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.35);
  color: #ffaa66;
  font-size: .82rem;
  font-weight: 700;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.75rem;
  max-width: 620px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .97rem;
  color: rgba(255,255,255,.88);
}
.hero-bullets li svg { width:18px; height:18px; fill:var(--accent); flex-shrink:0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Hero background image ---------- */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

/* Hero wave bottom */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ---------- Action banner ---------- */
.action-banner {
  position: relative;
  overflow: hidden;
  max-height: 420px;
  line-height: 0;
}
.action-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.action-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,60,.75) 0%, rgba(10,31,60,.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.action-banner-text {
  padding: 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.action-banner-text span {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  max-width: 500px;
  line-height: 1.3;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-img-wrap {
  overflow: hidden;
  height: 240px;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-info {
  padding: 1.4rem 1.5rem;
}
.team-info h3 { margin-bottom: .2rem; font-size: 1.05rem; }
.team-role {
  color: var(--accent);
  font-size: .83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .65rem;
}
.team-info p { color: var(--text-muted); font-size: .9rem; }
.team-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.team-cta p { color: var(--text-muted); font-size: 1.05rem; margin: 0; }

/* ---------- Akut section ---------- */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.card-icon svg { width:28px; height:28px; fill:var(--accent); }
.problem-card h3 { margin-bottom: .55rem; }
.problem-card p { color: var(--text-muted); font-size: .95rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  margin-top: .85rem;
  text-decoration: none;
}
.card-link:hover { gap: .7rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(10,31,60,.07);
  position: relative;
}
.step-number {
  width: 52px; height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 1.25rem;
}
.step-card h3 { color: var(--dark-blue); margin-bottom: .5rem; }
.step-card p { color: var(--text-muted); font-size: .93rem; }
.step-card svg { width:30px; height:30px; fill:var(--accent); margin: 0 auto .75rem; display: block; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .card-icon { background: rgba(10,31,60,.07); }
.service-card .card-icon svg { fill: var(--mid-blue); }
.service-card h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; }

/* ---------- FAQ expert two-column layout ---------- */
.faq-expert-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}
.faq-expert-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(10,31,60,.13);
  background: var(--white);
}
.faq-expert-card img { display: block; width: 100%; height: auto; }

/* ---------- City intro two-column layout ---------- */
.city-intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}
.city-img-col {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(10,31,60,.13);
  position: sticky;
  top: 120px;
}
.city-img-col img { display: block; width: 100%; height: auto; }

/* ---------- City cards ---------- */
.city-intro { max-width: 760px; margin-bottom: 2.5rem; }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 2px 8px rgba(10,31,60,.07);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  flex: 1 1 140px;
  min-width: 130px;
}
.city-card .pin-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.city-card .pin-icon::after {
  content: '';
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
  transform: rotate(45deg);
}
.city-card svg { width:32px; height:32px; fill:var(--accent); transition: fill var(--transition); }
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10,31,60,.12);
  background: var(--dark-blue);
  color: var(--white);
  text-decoration: none;
}
.city-card:hover svg { fill: var(--accent); }

/* ---------- Problems list ---------- */
.problems-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 2rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}
.problems-cols li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .97rem;
}
.problems-cols li svg { width:18px; height:18px; fill:#16a34a; flex-shrink:0; margin-top: 2px; }

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.trust-item:hover { background: rgba(255,255,255,.1); }
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,0,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width:22px; height:22px; fill:var(--accent); }
.trust-item h3 { color: var(--white); font-size: 1rem; margin-bottom: .25rem; }
.trust-item p { color: rgba(255,255,255,.72); font-size: .9rem; margin:0; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(10,31,60,.06);
  margin-bottom: .75rem;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: #fafafa; }
.faq-question[aria-expanded="true"] { background: #fafafa; }
.faq-chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: var(--accent);
  transition: transform .3s;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: .25rem 1.5rem 1.35rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: var(--dark-blue);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .97rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mid-blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-cta-box {
  background: var(--mid-blue);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}
.contact-cta-box h3 { color: var(--white); font-size: 1.4rem; }
.contact-cta-box p { color: rgba(255,255,255,.8); }
.contact-big-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: none;
}
.contact-big-phone svg { width:32px; height:32px; fill:var(--accent); }
.contact-big-phone:hover { color: var(--accent); text-decoration: none; }
.contact-info-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.contact-info-row svg { width:16px; height:16px; fill:rgba(255,255,255,.5); flex-shrink:0; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark-blue);
  color: rgba(255,255,255,.7);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { margin-bottom: .6rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); }
footer h4 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .85rem; }
footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
footer ul a { color: rgba(255,255,255,.65); font-size: .9rem; text-decoration: none; transition: color var(--transition); }
footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.sticky-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  padding: 1rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .2px;
}
.sticky-cta-bar svg { width:22px; height:22px; fill:var(--white); }

/* ---------- Section headings ---------- */
.section-heading { margin-bottom: .65rem; }
.section-subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* ---------- Local page extras ---------- */
.local-hero {
  background: var(--dark-blue);
  padding: 60px 0 130px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.local-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(26,58,107,.85) 0%, transparent 60%),
    linear-gradient(135deg, #0a1f3c 0%, #0f2d52 50%, #142a4a 100%);
  z-index: 0;
}
.local-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  z-index: 0;
}
.local-hero-content { position: relative; z-index: 1; }
.local-hero h1 { color: var(--white); margin-bottom: .85rem; }
.local-hero p  { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 640px; }
.local-hero h1 { color: var(--white); margin-bottom: .85rem; }
.local-hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 640px; }
.local-services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .65rem;
  margin-top: 1.5rem;
}
.local-services-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .97rem;
  padding: .6rem .9rem;
  background: var(--light-gray);
  border-radius: 8px;
}
.local-services-list li svg { width:20px; height:20px; fill:var(--accent); flex-shrink:0; }

/* Area cards on city pages */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 2px 8px rgba(10,31,60,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark-blue);
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10,31,60,.12);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--dark-blue); }
.breadcrumb svg { width:12px; height:12px; fill: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .section { padding: 52px 0; }
  nav.main-nav { display: none; }
  .header-cta .btn { display: none; }
  #site-header .container { padding: 0; }
  #site-header .container { padding: 0 .75rem; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; }
  .hamburger { display: flex; flex: 0 0 auto; }
  .logo { flex: 0 0 auto; margin: 0 auto; }
  .header-badge-24h { display: flex; flex: 0 0 auto; align-items: center; gap: .35rem; color: rgba(255,255,255,.85); font-size: .75rem; font-weight: 700; letter-spacing: .03em; }
  .header-badge-24h svg { stroke: var(--accent); }
  .header-badge-24h span { color: var(--accent); }
  nav.main-nav { display: none !important; }
  .header-inner .header-cta { display: none !important; }
  .hero { padding: 60px 0 140px; }
  .services-grid { grid-template-columns: 1fr; }
  .problems-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta-box { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 60px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .action-banner img { height: 260px; }
  .action-banner-text { padding: 0 1.25rem; gap: 1rem; }
  .action-banner-text span { font-size: 1.2rem; }
  .city-intro-grid { grid-template-columns: 1fr !important; }
  .city-intro-grid .city-img-col { position:static !important; }
  .faq-expert-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .contact-big-phone { font-size: 1.3rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Print ---------- */
@media print {
  .sticky-cta-bar, #site-header, .hamburger, .mobile-nav-overlay { display: none !important; }
  body { padding-bottom: 0; }
  .hero { background: #eee !important; color: #000 !important; }
  .hero * { color: #000 !important; }
  .section-dark { background: #eee !important; }
  .section-dark * { color: #000 !important; }
}
