@charset "UTF-8";
/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #2D5AA8 ;
    --primaryLight: #ffd675;
    --secondary: #001f3f;
    --secondaryLight: #001f3f;
    --headerColor: #1a1a1a;
    --bodyTextColor: #000;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0em) {
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--bodyTextColor);
    overflow-x: hidden;
    scroll-padding-top: 65px; /* lägg buffert överst för alla ankarscrollar */
    scroll-behavior: smooth; /* valfritt: snygg scroll */
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  body {
    transition: background-color 0.3s;
    font-weight: 300;
  }
  .container {
    position: relative;
    margin: auto;
    max-width: 1326px;
  }
  .header {
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .header .container {
    display: flex;
    align-items: center;
  }
  .header img {
    height: 52px;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    margin: 0;
    margin-bottom: 20px;
  }
  h4 {
    font-size: 14px;
  }
  p,
  li,
  a {
    margin: 0;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  a {
    color: var(--primary);
  }
  img {
    max-width: 100%;
  }
  .h2 {
    font-size: clamp(1.875rem, 1.4627rem + 1.759vw, 3.125rem);
  }
  .h3 {
    font-size: 22px;
  }
  .primary-button {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 3rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  .primary-button:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #0A1D3C;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  .primary-button:hover:before {
    width: 100%;
  }
}
/* =====================================================
   BAS – typografi, layout, verktyg
===================================================== */
#main {
  margin-top: 68px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.home-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .home-section {
    padding: 6rem 0;
  }
}

.section-alt {
  background: #f7f9fb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2rem;
  margin: 0;
}
.section-header p {
  color: #495057;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ================================
   KNAPPAR
================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: #1e4bb8;
  color: #fff;
}
.btn-primary:hover {
  background: #163a8e;
}

.btn-secondary {
  background: #fff;
  border: 2px solid #1e4bb8;
  color: #1e4bb8;
}
.btn-secondary:hover {
  background: #1e4bb8;
  color: #fff;
}

/* =====================================================
   HERO
===================================================== */
.home-hero {
  padding: 4rem 0 2rem;
}
@media (min-width: 900px) {
  .home-hero {
    padding: 6rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-eyebrow {
  font-size: 0.9rem;
  color: #1e4bb8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.home-hero h1 {
  font-size: 2rem;
}
@media (min-width: 900px) {
  .home-hero h1 {
    font-size: 2.6rem;
  }
}

.hero-text {
  color: #495057;
  max-width: 480px;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-trust {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-trust li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.3rem;
  color: #495057;
}
.hero-trust li:before {
  content: "✓";
  color: #1e4bb8;
  position: absolute;
  left: 0;
  top: 0;
}

/* =====================================================
   SERVICES (3 cards)
===================================================== */
.cards-3 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
  /* 🔥 Gör alla bilder i <picture> fullbredd och responsiva */
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.service-card picture {
  display: block;
  margin-bottom: 1rem; /* ser till att texten inte klibbar mot bilden */
  width: 100%;
  height: 200px; /* välj höjd, t.ex. 200–240px */
  overflow: hidden;
}
.service-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.service-card h3 {
  margin-top: 0;
}
.service-card p {
  color: #495057;
}
.service-card .card-link {
  margin-top: 1rem;
  display: inline-block;
  color: #1e4bb8;
  font-weight: 600;
}
.service-card .card-link:hover {
  text-decoration: underline;
}

/* ================================
   Ny process-design (timeline)
================================ */
.process-alt .process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.process-alt .process-header p {
  color: #4b5563;
}

.process-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .process-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: flex-start;
  }
}

.process-intro {
  font-size: 0.95rem;
  color: #4b5563;
}
.process-intro p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.process-intro ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-intro ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.process-intro ul li:before {
  content: "•";
  color: #1e4bb8;
  font-weight: 700;
  margin-top: 0.08rem;
}

.process-timeline {
  position: relative;
  padding-left: 1.75rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(30, 75, 184, 0.25), rgba(30, 75, 184, 0.05));
}

.process-item {
  position: relative;
  padding-bottom: 1.8rem;
}
.process-item:last-child {
  padding-bottom: 0;
}

.step-badge {
  position: absolute;
  left: -0.1rem;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #1e4bb8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(30, 75, 184, 0.35);
}

.step-content {
  margin-left: 1.8rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.step-content h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}
.step-content p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
}

/* ================================
   Varför välja oss
================================ */
.benefit-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefit {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.benefit h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}
.benefit p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

/* =====================================================
   FAQ – klickbar accordion
===================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: #1e4bb8;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

/* Roterad ikon när det är öppet */
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background-color: #1e4bb8;
  color: #fff;
  border-color: #1e4bb8;
}

.faq-body {
  padding: 0 1.25rem 1rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.faq-footer {
  text-align: center;
  margin-top: 1.5rem;
}
.faq-footer a {
  color: #1e4bb8;
  font-weight: 600;
  text-decoration: none;
}
.faq-footer a:hover {
  text-decoration: underline;
}

/* ================================
   Var vi kör – destinationer
================================ */
.destination-grid {
  display: grid;
  gap: 1.8rem;
}
@media (min-width: 900px) {
  .destination-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dest {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* Gör att picture fungerar identiskt med img */
  /* Bildens höjd + beskärning */
}
.dest picture,
.dest img {
  display: block;
  width: 100%;
}
.dest picture img {
  height: 170px;
  object-fit: cover;
}
.dest h3 {
  margin: 0.9rem 1rem 0.2rem;
}
.dest p {
  margin: 0 1rem 1rem;
  color: #4b5563;
  font-size: 0.9rem;
}
.dest:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

/* ============================================
   Gemensam undersides-banner
   Används på t.ex. Om oss, Kontakt, Tjänster
============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  margin-bottom: 3rem;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 1.5rem 2.5rem;
}
@media (min-width: 768px) {
  .page-hero-inner {
    min-height: 350px;
    padding: 5rem 1.5rem 3rem;
  }
}

.page-hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.page-hero-title {
  font-size: 2rem;
  max-width: 720px;
  margin: 0;
}
@media (min-width: 900px) {
  .page-hero-title {
    font-size: 2.4rem;
  }
}

.page-hero-text {
  max-width: 640px;
  margin-top: 0.75rem;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* Bakgrundsbild + overlay */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient-överlägg för bättre läsbarhet */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.35));
}

/* ============================================ */
/*                    FAQ                       */
/* ============================================ */
/* Frågeknappen */
.faq-question {
  width: 100%;
  padding: 1rem 1.2rem;
  text-align: left;
  background: #f3f4f6;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ikonen (plus/minus) */
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  /* Tar bort cirklar, bubblor, borders osv */
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Plus/minus strecken */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #1e4bb8;
  transition: transform 0.2s ease;
  border-radius: 2px;
}

/* Horisontellt streck (minus-linjen) */
.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

/* Vertikalt streck (bildar plus-tecken) */
.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
}

/* När öppen → vertikala strecket försvinner → minus */
.faq-item.open .faq-icon::after {
  transform: scaleY(0);
}

/* Svar (stängt läge) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

/* Svar (öppet läge) */
.faq-item.open .faq-answer {
  max-height: 500px; /* stort nog för alla svar */
  padding: 1rem 1.2rem;
}

/* ============================================
   FOOTER – modern, matchar sidan
============================================ */
.footer {
  background-color: #0a1d3c;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  padding: 48px 0 32px;
  margin-top: 4rem;
}

.footer .container {
  /* ser till att footern följer din vanliga .container-bredd */
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer ul {
    flex-direction: row;
    align-items: flex-start;
    gap: 10%;
  }
}

/* Varje <li> blir en kolumn */
.footer li {
  min-width: 0;
}

.footer img {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.footer p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.hours-text {
  max-width: 250px;
  font-weight: normal !important;
  font-size: 14px !important;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  text-underline-offset: 4px;
}

.footer a:hover {
  text-decoration: underline;
}

/* Lite mer luft i textlänkarna */
.footer li a {
  display: inline-block;
  margin-bottom: 0.2rem;
}

/* ============================================
   SUCCESS PAGE
============================================ */
.success-section {
  padding: 6rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
}

.success-inner {
  max-width: 620px;
  margin: 0 auto;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #22a645;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  font-weight: 700;
}

.success-lead {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
}
.success-lead a {
  color: #1e4bb8;
  text-decoration: underline;
}

/* ============================================
   NAVIGATION START
============================================ */
/* Grundlayout för headern */
/* Sticky navbar – ligger kvar i toppen vid scroll */
#cs-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #ffffff;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

#cs-navigation .cs-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
#cs-navigation .cs-logo {
  width: auto;
  height: auto;
  margin: 0 auto 0 0;
  padding: 0;
  display: flex;
  align-items: center;
}

#cs-navigation .cs-logo img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 5px;
}

/* ================================
   NAV – GEMENSAMT
================================ */
.cs-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Toggle-knappen (hamburgare) */
.cs-toggle {
  border: none;
  background: transparent;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cs-toggle .cs-box {
  width: 24px;
  height: 18px;
  position: relative;
}
.cs-toggle .cs-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: 0.25s ease;
}
.cs-toggle .cs-line1 {
  top: 0;
}
.cs-toggle .cs-line2 {
  top: 8px;
}
.cs-toggle .cs-line3 {
  bottom: 0;
}

/* Lista & wrapper (desktop-läge) */
.cs-ul-wrapper {
  position: static;
}

.cs-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* Vanliga länkar */
.cs-li-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  padding: 0.25rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}
.cs-li-link:hover, .cs-li-link:focus-visible {
  color: #1e4bb8;
}

/* ================================
   DROPDOWNS – DESKTOP
================================ */
.cs-dropdown {
  position: relative;
}

.cs-drop-icon {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.cs-drop-ul {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 220px;
  padding: 0.75rem 0;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 60;
}

.cs-drop-li {
  padding: 0;
}

.cs-drop-link {
  width: 100%;
  padding: 0.6rem 1.1rem;
  font-size: 0.92rem;
  color: #6b7280;
  display: block;
}
.cs-drop-link:hover {
  background: rgba(37, 99, 235, 0.04);
  color: #1e4bb8;
}

@media (min-width: 1024px) {
  .cs-dropdown:hover > .cs-drop-ul,
  .cs-dropdown:focus-within > .cs-drop-ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
/* ================================
   CTA-KNOPP I HEADERN (desktop)
================================ */
.cs-button-solid.cs-nav-button {
  display: none;
}

/* ================================
   MOBILMENY
================================ */
@media (max-width: 1023px) {
  #cs-navigation .cs-container {
    padding: 0.6rem 1rem;
  }
  .cs-nav {
    margin-left: auto;
  }
  /* Panelen under headern (overlay + vit meny) */
  #cs-navigation .cs-ul-wrapper {
    position: fixed;
    inset: 56px 0 0 0; /* under headern */
    background: rgba(15, 23, 42, 0.38);
    backdrop-filter: blur(8px);
    display: none; /* utgångsläge: gömd */
    justify-content: center; /* centrera innehållet horisontellt */
    align-items: flex-start;
    padding: 0;
    z-index: 50;
  }
  /* När headern får cs-active (nav.js) → visa panelen */
  #cs-navigation.cs-active .cs-ul-wrapper {
    display: flex;
  }
  /* Själva vita menykortet */
  #cs-navigation .cs-ul {
    flex-direction: column;
    align-items: center; /* centrera alla items */
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    padding: 1.25rem 1.5rem 1.5rem;
    height: auto;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    text-align: center; /* text centrerad */
  }
  /* Visa/dölj UL med aria-expanded (nav.js uppdaterar) */
  #cs-expanded[aria-expanded=false] {
    display: none;
  }
  #cs-expanded[aria-expanded=true] {
    display: flex;
  }
  .cs-li {
    width: 100%;
    text-align: center; /* säkerställ centrerad text */
  }
  .cs-li-link {
    width: 100%;
    padding: 0.4rem 0;
    justify-content: center; /* centrera innehåll i länken */
  }
  /* Dropdowns på mobil – styrs via .cs-active på .cs-dropdown (nav.js) */
  #cs-navigation .cs-dropdown .cs-drop-ul {
    position: static;
    box-shadow: none;
    padding: 0.2rem 0 0.6rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    text-align: center;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    display: flex;
    flex-direction: column;
    align-items: center; /* centrera drop-raderna */
  }
  #cs-navigation .cs-dropdown .cs-drop-link {
    padding-left: 0;
    text-align: center;
  }
  .cs-cta-mobile {
    margin-top: 0.5rem;
  }
  .cs-cta-mobile .cs-cta-link {
    display: inline-flex;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #1e4bb8;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 auto; /* centrera knappen */
    justify-content: center;
  }
  /* Språkväxlaren / globen i mobilmenyn */
  #cs-navigation .language-switch {
    margin-top: 0.75rem;
    text-align: center;
  }
  #cs-navigation .lang-toggle {
    margin-left: auto;
    margin-right: auto;
  }
  /* Flagg-listan under globen */
  #cs-navigation .language-switch .lang-menu {
    width: 100%;
    align-items: center;
  }
  #cs-navigation .language-switch .lang-option {
    justify-content: center;
  }
  .cs-button-solid.cs-nav-button {
    display: none !important;
  }
}
/* ================================
   DESKTOP-LÄGE
================================ */
@media (min-width: 1024px) {
  .cs-toggle {
    display: none;
  }
  .cs-ul-wrapper {
    position: static;
  }
  .cs-ul {
    flex-direction: row;
    background: none;
    padding: 0;
  }
  #cs-expanded {
    display: flex !important;
  }
  .cs-cta-mobile {
    display: none;
  }
  .cs-button-solid.cs-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: #1e4bb8;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
  }
  .cs-button-solid.cs-nav-button:hover {
    background: #163a8e;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  }
}
/* ============================================
   DESKTOP: dropdown på ren hover
============================================ */
@media (min-width: 1024px) {
  #cs-navigation .cs-dropdown > .cs-drop-ul {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }
  #cs-navigation .cs-dropdown:hover > .cs-drop-ul,
  #cs-navigation .cs-dropdown:focus-within > .cs-drop-ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-drop-ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
  }
}
/* ============================================
   LANGUAGE DROPDOWN (globe + flags)
============================================ */
.language-switch {
  position: relative;
}

/* Globen i navbaren */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 4px; /* liten klickmarginal */
  transition: 0.2s ease;
}

/* Själva glob-ikonen */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 4px;
  transition: 0.2s ease;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
}

.lang-toggle:focus-visible {
  outline: 2px solid #1e4bb8;
  outline-offset: 2px;
}

.lang-globe {
  width: 20px;
  height: 20px;
  color: #111827;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* Hover – diskret, som en länk */
.lang-toggle:hover .lang-globe {
  opacity: 0.7; /* lätt fade i stället för skugga */
}

/* Själva språk-menyn (återanvänder cs-drop-ul men tweakar) */
.language-switch .lang-menu {
  min-width: 180px;
  right: 0;
  left: auto;
}

/* Länkar/rader i språk-menyn */
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  color: #6b7280;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.lang-option img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  display: block;
}

.lang-option span {
  white-space: nowrap;
}

.lang-option:hover {
  background: rgba(37, 99, 235, 0.04);
  color: #1e4bb8;
}

/* Aktivt språk – mer markerat, ej klickbart */
.lang-option.is-active {
  font-weight: 600;
  color: #111827;
  cursor: default;
  background: rgba(15, 23, 42, 0.03);
}

/* ============================================
   Messenger
============================================ */
/* ============================================
   Messenger Floating Chat
============================================ */
.messenger-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 9999;
}

/* IKON */
.messenger-fab img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.35));
  animation: pulse 2.5s infinite ease-in-out;
  transition: transform 0.2s ease;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}
/* "Chat-popup"-ruta på desktop */
.messenger-bubble {
  background: #ffffff;
  color: #111827;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  max-width: 280px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateX(10px) translateY(4px);
  animation: messenger-bubble-in 0.4s ease-out forwards;
}

@keyframes messenger-bubble-in {
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
.messenger-bubble-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}

.messenger-bubble-body {
  font-size: 14px;
  line-height: 1.4;
}

/* Hover-effekt */
.messenger-wrapper:hover .messenger-fab img {
  transform: scale(1.1);
}

.messenger-wrapper:hover .messenger-bubble {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* 🔹 Mobil: mer kompakt, inte stor popup */
@media (max-width: 640px) {
  .messenger-wrapper {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }
  .messenger-fab img {
    width: 46px;
    height: 46px;
  }
  .messenger-bubble {
    padding: 8px 10px;
    max-width: 180px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  }
  .messenger-bubble-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .messenger-bubble-body {
    display: none; /* bara rubriken på mobil */
  }
}
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 10000;
  padding: 0.85rem 1rem;
  background-color: #111;
  color: #fff;
  font-size: 0.875rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.35);
  display: none;
}
.cookie-banner--visible {
  display: block;
}
.cookie-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__text {
  flex: 1 1 260px;
  min-width: 0;
}
.cookie-banner__title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.cookie-banner__body {
  line-height: 1.4;
  opacity: 0.9;
}
.cookie-banner__link {
  display: inline-block;
  margin-top: 0.35rem;
  text-decoration: underline;
  color: #e5e5e5;
}
.cookie-banner__link:hover, .cookie-banner__link:focus-visible {
  text-decoration: none;
}
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-banner__btn {
  cursor: pointer;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}
.cookie-banner__btn:active {
  transform: translateY(1px);
}
.cookie-banner__btn--secondary {
  background-color: #222;
  border-color: #444;
  color: #f5f5f5;
}
.cookie-banner__btn--secondary:hover, .cookie-banner__btn--secondary:focus-visible {
  background-color: #2c2c2c;
  border-color: #555;
}
.cookie-banner__btn--primary {
  background-color: #f0b90b;
  color: #111;
  font-weight: 600;
  border-color: #f0b90b;
}
.cookie-banner__btn--primary:hover, .cookie-banner__btn--primary:focus-visible {
  background-color: #f6c73a;
  border-color: #f6c73a;
}
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

/* GDPR notice contaact-form */
.gdpr-notice {
  font-size: 0.75rem;
  opacity: 0.75;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.3;
}

/*# sourceMappingURL=main.css.map */
