/* ==============================================
   CSS-VARIABLER  –  alla färger & radier samlade
   ============================================== */
:root {
  --bg:           #1d2422;   /* sidans bakgrundsfärg */
  --panel:        #242d2a;   /* kortbakgrund */
  --panel-2:      #2c3632;   /* lite ljusare panel, hover-states */
  --accent:       #f08a3c;   /* orange – knappar & detaljer */
  --accent-dim:   rgba(240, 138, 60, 0.15);
  --text:         #f2f4f3;   /* nästan vit */
  --text-muted:   #76837f;   /* dämpad text */
  --border:       rgba(242, 244, 243, 0.08);
  --nav-glass:    rgba(36, 45, 42, 0.80);
  --shadow:       0 8px 32px rgba(0, 0, 0, 0.45);
  --radius:       22px;
  --radius-sm:    12px;
  --font-head:    'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  /* clamp(min, vw-baserat, max) – texten skalas mjukt med skärmen */
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.65;
  min-height: 100vh;
}

a           { color: inherit; text-decoration: none; }
ul          { list-style: none; }
img         { max-width: 100%; display: block; }
blockquote  { font-style: normal; }
address     { font-style: normal; }

/* ==============================================
   NAVIGATION  –  GLASS PILL
   ============================================== */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
}

.nav-pill {
  position: relative; /* nödvändigt för mobilmenyns dropdown */
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--nav-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  width: 100%;
  max-width: 920px;
  box-shadow: var(--shadow);
  transition: background 0.3s;
}

/* Logotypen */
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

/* Länklistan */
.nav-links {
  display: flex;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover  { color: var(--text); background: var(--accent-dim); }
.nav-links a.active { color: var(--accent); background: var(--accent-dim); }

/* Telefonnummer-knapp (desktop) */
.nav-tel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-tel:hover { background: rgba(240, 138, 60, 0.28); }

/* Telefonlänk inuti mobilmenyn */
.mobile-tel-item { display: none; }
.nav-tel-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
}

/* Hamburger-knapp */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.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); }

/* ==============================================
   HERO  –  TVÅ KOLUMNER
   ============================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 90px);
  align-items: center;
}

/* ---- Vänster ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 138, 60, 0.35);
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-top: 0.6rem;
}
.hero-text h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  max-width: 400px;
  line-height: 1.6;
}

/* Klickbar tjänstelista */
.hero-services {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
  user-select: none;
}
.hero-services li .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  transition: background 0.18s;
}
.hero-services li .arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.18s;
  flex-shrink: 0;
}
.hero-services li:hover,
.hero-services li.active       { color: var(--text);   background: var(--panel-2); }
.hero-services li:hover .dot,
.hero-services li.active .dot  { background: var(--accent); }
.hero-services li:hover .arrow,
.hero-services li.active .arrow{ opacity: 1; }

/* Bildkort med bokningsknapp */
.hero-card {
  display: flex;
  align-items: stretch;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-card-img {
  flex: 0 0 38%;
  background: var(--panel-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  min-height: 120px;
}
.hero-card-img p  { font-style: italic; line-height: 1.5; }
.hero-card-img small { font-size: 0.68rem; opacity: 0.6; }

.hero-card-body {
  flex: 1;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}
.hero-card-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---- Höger ---- */
.hero-right {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  /* Gradient inspirerad av referensdesignen */
  background:
    radial-gradient(600px 400px at 75% 60%, rgba(240, 138, 60, 0.14), transparent 65%),
    linear-gradient(140deg, #46554f 0%, #5d6f67 40%, #93a69d 100%);
}

/* Den stora nyckel-SVG:n – absolut nere till höger i hero-right */
.key-illustration {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 68%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Statistik – vertikal kolumn, absolut övre vänster i hero-right */
.hero-stats {
  position: absolute;
  top: clamp(1.5rem, 5vh, 3rem);
  left: clamp(1.25rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.5vh, 2.5rem);
  z-index: 2;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Ring med vit conic-gradient + ikon inuti (referensdesignen) */
.stat-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: conic-gradient(rgba(255,255,255,0.85) var(--fill, 75%), rgba(255,255,255,0.18) 0);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.stat-ring::before {
  content: '';
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(38, 52, 46, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.stat-ring svg { position: relative; z-index: 1; }

.stat-value {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 0.2rem;
}

/* Liten nyckelikon i hero-kortet – dubbeldefinitionen är borttagen, den kompletta versionen finns ovan */

.key-icon-small {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

/* ==============================================
   KNAPPAR
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(240, 138, 60, 0.3); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: #1d2422; }
.btn-outline  {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }

/* ==============================================
   DELADE LAYOUT-HJÄLPARE
   ============================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section:not(.hero) { padding: 5rem 0; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.center-btn { text-align: center; margin-top: 2.5rem; }

/* ==============================================
   SÅ FUNGERAR DET  –  3 STEG
   ============================================== */
.how-section { background: var(--panel); }

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

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform 0.22s, border-color 0.22s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 60, 0.35);
}

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-card p       { color: var(--text-muted); font-size: 0.88rem; }
.step-card p a     { color: var(--accent); }
.step-card p a:hover { text-decoration: underline; }

/* ==============================================
   TJÄNSTER  –  4-KORTS GRID
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 60, 0.35);
}
.service-card.featured { border-color: rgba(240, 138, 60, 0.45); }

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #1d2422;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.service-icon  { font-size: 1.75rem; }

/* SVG-ikon i service-card – används istället för emoji */
.service-icon-svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  flex: 1;
}

.service-price {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

/* ==============================================
   OMDÖMEN  –  3-KORTS GRID
   ============================================== */
.reviews-section { background: var(--panel); }

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

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stars   { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }

.review-card blockquote {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.reviewer {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-tel {
  display: inline-block;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer-col ul       { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a     { color: var(--text-muted); font-size: 0.84rem; transition: color 0.18s; }
.footer-col ul a:hover { color: var(--accent); }

.footer-col p, .footer-col address {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}
.footer-col address a {
  color: var(--text-muted);
  transition: color 0.18s;
}
.footer-col address a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

/* ==============================================
   FADE-IN  –  animation via Intersection Observer
   ============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   RESPONSIV  –  ≤ 900px
   ============================================== */
@media (max-width: 900px) {
  /* Nav: visa hamburger, göm desktop-länkar */
  .nav-links          { display: none; }
  .nav-tel            { display: none; }
  .hamburger          { display: flex; }

  /* Dropdown meny */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
  .mobile-tel-item { display: block; }

  /* Site-header sticky längst upp på mobil */
  .site-header { top: 0; padding: 0.5rem 1rem; }
  .nav-pill    { border-radius: var(--radius); }

  /* Hero: en kolumn, höger panel ovan text */
  .hero {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem 2rem;
    min-height: auto;
    gap: 1.25rem;
  }
  .hero-right  { order: -1; min-height: 320px; }
  .stat-ring   { width: 64px; height: 64px; }
  .stat-ring::before { width: 53px; height: 53px; }
  .stat-ring svg { width: 22px; height: 22px; }
  .stat-value  { font-size: 1rem; }
  .stat-label  { font-size: 0.6rem; }

  /* Grids: en kolumn */
  .steps-grid,
  .reviews-grid    { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 2 kolumner */
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}

/* ==============================================
   RESPONSIV  –  ≤ 600px
   ============================================== */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }

  .stats-rings   { gap: 0.6rem; padding: 0.75rem 0.9rem; }
  .ring-circle   { width: 64px; height: 64px; }
  .ring-circle::before { width: 49px; height: 49px; }
  .ring-value    { font-size: 0.72rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==============================================
   RESPONSIV  –  ≤ 360px
   ============================================== */
@media (max-width: 360px) {
  .hero-text h1  { font-size: 1.85rem; }
  .stats-rings   { flex-direction: column; align-items: center; }
  .hero-card     { flex-direction: column; }
  .hero-card-img { flex: none; min-height: 80px; border-right: none; border-bottom: 1px solid var(--border); }
}

/* ==============================================
   TJANSTER-SIDA
   ============================================== */

/* Liten sidhero – inte full skärmhöjd som på startsidan */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero .hero-badge { margin: 0 auto 1.25rem; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.page-hero-sub {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Skärmläsartext – visuellt dold */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Grid för tjänstekort – 3 kolumner desktop, centrerat sista rad */
.tjanster-section { padding-bottom: 2rem; }

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

/* Tjänstekort */
.tjanst-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.22s, border-color 0.22s;
  overflow: hidden;
}
.tjanst-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 60, 0.35);
}
.tjanst-featured { border-color: rgba(240, 138, 60, 0.5); }

.tjanst-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: var(--accent);
  color: #1d2422;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}

.tjanst-top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.tjanst-icon { font-size: 2rem; flex-shrink: 0; margin-top: 0.1rem; }

.tjanst-top h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.2rem;
}

/* SVG-ikon i tjanst-top – används för nya kort utan emoji */
.tjanst-icon-svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.tjanst-tagline {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.tjanst-desc {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* Inkluderat-lista med checkmarke */
.tjanst-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.tjanst-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.tjanst-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Pris + knapp längst ner */
.tjanst-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.tjanst-price-block { display: flex; flex-direction: column; gap: 0.1rem; }
.tjanst-price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.tjanst-price-note { font-size: 0.72rem; color: var(--text-muted); }

/* ---- Bilmärken ---- */
.brands-section { background: var(--panel); }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  list-style: none;
}
.brands-grid li {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s, border-color 0.18s;
}
.brands-grid li:hover {
  color: var(--text);
  border-color: rgba(240, 138, 60, 0.4);
}

/* ---- CTA-sektion ---- */
.cta-section { padding: 4rem 0; }
.cta-box {
  background: var(--panel);
  border: 1px solid rgba(240, 138, 60, 0.3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-box h2 {
  text-align: left;
  margin-bottom: 0.4rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.cta-box p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* Responsivt för tjänstesidan */
@media (max-width: 900px) {
  .tjanster-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { flex-direction: column; text-align: center; }
  .cta-box h2 { text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .tjanster-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   KONTAKT-SIDA
   ============================================== */
.contact-section { padding: 2rem 0 5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.form-intro { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.75rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-group label span { color: var(--accent); }

.form-group input,
.form-group textarea {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 138, 60, 0.15);
}
.form-group input:user-invalid,
.form-group textarea:user-invalid { border-color: #e05555; }

.form-submit { align-self: flex-start; margin-top: 0.5rem; }

.form-feedback {
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(60, 180, 100, 0.15);
  border: 1px solid rgba(60, 180, 100, 0.4);
  color: #7ddca4;
}
.form-feedback.error {
  display: block;
  background: rgba(224, 85, 85, 0.12);
  border: 1px solid rgba(224, 85, 85, 0.35);
  color: #f08080;
}

.contact-info { display: flex; flex-direction: column; gap: 0.9rem; }

.info-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: rgba(240, 138, 60, 0.3); }
.info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.2rem; color: var(--accent); }
.info-icon svg { display: block; }

.info-card h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.info-card p, .info-card address {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.info-link {
  display: block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.18s;
  margin-bottom: 0.2rem;
}
.info-link:hover { opacity: 0.8; }
.info-link.big { font-size: 1.2rem; font-family: var(--font-head); }

.hours-highlight { color: var(--text) !important; font-weight: 700; font-size: 1rem !important; }

.map-placeholder {
  background: var(--panel);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}
.map-placeholder span { font-size: 2rem; }
.map-placeholder small { font-size: 0.72rem; opacity: 0.6; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.25rem; }
}

/* ==============================================
   WHATSAPP FLYTANDE KNAPP
   ============================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ==============================================
   FAQ-SEKTION  –  accordion med animerad höjd
   ============================================== */
.faq-section { background: var(--bg); }

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Varje fråga/svar-par */
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(240, 138, 60, 0.4); }

/* Frågeknappar */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

/* Pil-ikon som roterar vid öppning */
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.28s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

/* Svarspanel – animeras med max-height-trick */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 1rem 1.4rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ==============================================
   BOKA-SIDA
   ============================================== */

/* Grid: 3 kort sida vid sida på desktop */
.booking-section { padding-bottom: 2rem; }

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

/* Bokningskort – samma grundstil som tjanst-card */
.booking-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.22s, border-color 0.22s;
}
.booking-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 138, 60, 0.35);
}

/* Featured-variant med orange kantlinje */
.booking-featured { border-color: rgba(240, 138, 60, 0.5); }

/* Badge i övre kanten */
.booking-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: var(--accent);
  color: #1d2422;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}

/* Ikonbehållare – cirkel med dämpad bakgrund */
.booking-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* Grön färg för WhatsApp-ikonen */
.booking-icon-green { color: #25D366; }

/* SVG-ikon inuti cirkeln */
.booking-icon-svg {
  width: 26px;
  height: 26px;
}

/* Rubrik på bokningskortet */
.booking-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Brödtext */
.booking-card p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
  flex: 1;
}

/* Liten not längst ned (t.ex. "Jour 24/7") */
.booking-note {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-top: 0.25rem;
}

/* ---- Tjänstgenvägar ---- */
.shortcuts-section { background: var(--panel); }

/* Lista som fyller hela behållaren */
.service-shortcuts {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Enskild genväg – klickbar rad */
.shortcut-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.shortcut-item:hover {
  border-color: rgba(240, 138, 60, 0.4);
  background: var(--panel-2);
}

/* Accentfärg för akut-länken */
.shortcut-urgent .shortcut-icon { color: var(--accent); }
.shortcut-urgent .shortcut-label { color: var(--accent); }
.shortcut-urgent { border-color: rgba(240, 138, 60, 0.25); }

/* SVG-ikonbehållare i genvägen */
.shortcut-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}
.shortcut-icon svg { width: 18px; height: 18px; }

.shortcut-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.shortcut-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.18s, color 0.18s;
}
.shortcut-item:hover .shortcut-arrow {
  transform: translateX(3px);
  color: var(--accent);
}

/* ---- Informationsbox ---- */
.info-cta-section { padding: 4rem 0; }

.info-cta-box {
  background: var(--panel);
  border: 1px solid rgba(240, 138, 60, 0.35);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.info-cta-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 520px;
}
.info-cta-box strong { color: var(--text); }
.info-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* Responsivt för boka-sidan */
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .info-cta-box { flex-direction: column; }
  .info-cta-actions { width: 100%; justify-content: center; }
}

/* ==============================================
   MINSKAD RÖRELSE  –  tillgänglighet
   ============================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html              { scroll-behavior: auto; }
  .badge-dot        { animation: none; }
  .key-illustration { animation: none; transform: none; }
}
