@charset "UTF-8";
/* =====================================================
   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;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.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, minmax(0, 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;
}
.dest img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.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: 280px;
    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%;
  -o-object-fit: cover;
     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 li p {
  max-width: 350px;
}

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

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

.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;
}
/*# sourceMappingURL=local.css.map */