/* =========================
   ROOT / THEME
========================= */
:root {
  --color-primary: #f26b1d;   /* CA Auto orange */
  --color-dark: #1f1f1f;
  --color-gray: #6b6b6b;
  --color-light: #f7f7f7;
  --color-white: #ffffff;

  --max-width: 1200px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  scroll-padding-top: 120px;
}


body {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
}

::selection {
  background: var(--color-primary);
  color: white;
}

/* =========================
   LAYOUT HELPERS
========================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

section:nth-of-type(even) {
  background: #fafafa;
}

section > .container > h2 {
  position: relative;
  padding-left: 1.2rem;
}

section > .container > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.1em;
  background: var(--color-primary);
  border-radius: 2px;
}


input[name="license_plate"] {
  text-transform: uppercase;
}

input[name="license_plate"]::placeholder {
  text-transform: none;
}


/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* =========================
   GLOBAL MESSAGE
========================= */
.global-message {
  background: linear-gradient(
    135deg,
    rgba(242,107,29,0.95),
    rgba(255,138,61,0.95)
  );
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.global-message .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
}

.global-message i {
  opacity: 0.9;
}


@media (max-width: 768px) {
  .global-message {
    font-size: 0.85rem;
  }
}


/* =========================
   CSS, Underside
========================= */
.service-content {
  padding: 5rem 0;
  background: #fafafa;
}

.narrow {
  max-width: 1220px;
}

.content-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.content-card h2 {
  margin-bottom: 1.5rem;
}

.content-card h3 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.content-card p {
  margin-bottom: 1.2rem;
  color: #555;
  font-size: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

/* =========================
   NAVIGATION
========================= */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #eee;
}

.main-nav .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

@keyframes backToTopBounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(-3px);
  }
  70% {
    transform: translateY(-6px);
  }
}


#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #ff7a00;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
  position: fixed;
  overflow: visible;
}


#backToTop.show {
  opacity: 1;
  visibility: visible;
  animation: backToTopBounce 2.4s ease-in-out infinite;
}


#backToTop:hover {
  transform: translateY(-4px);
  background: #ff8f26;
}


/* =========================
   NAV LINKS
========================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto; /* skub links + CTA mod højre */
}

.nav-links a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

/* underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* =========================
   NAV CTA
========================= */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.40rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    #ff8a3d
  );
  box-shadow:
    0 6px 16px rgba(242,107,29,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);

  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    filter 0.2s ease;
}

.nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Synlig efter scroll */
.main-nav.scrolled .nav-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================
   CTA ICON – MICRO VIBRATION
========================= */
@keyframes phoneVibrate {
  0%   { transform: translateX(0) rotate(0); }
  2%   { transform: translateX(-1px) rotate(-2deg); }
  4%   { transform: translateX(1px) rotate(2deg); }
  6%   { transform: translateX(-1px) rotate(-2deg); }
  8%   { transform: translateX(1px) rotate(2deg); }
  10%  { transform: translateX(0) rotate(0); }
  100% { transform: translateX(0) rotate(0); }
}

.main-nav.scrolled .nav-cta i {
  display: inline-block;
  transform-origin: center;
  animation: phoneVibrate 5.5s ease-in-out infinite;
}

/* Respektér bruger (hover + accessibility) */
.nav-cta:hover i {
  animation: none;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Aktiv efter scroll */
.main-nav.scrolled {
  border-bottom-color: transparent;
  box-shadow:
    0 4px 12px rgba(242,107,29,0.14),          /* blød separation */
    0 1px 0 rgba(242,107,29,0.14);        /* CA Auto accent */
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.25rem; /* tight + premium */
}


/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  ), url("../img/hero.jpg") center/cover no-repeat;
  color: var(--color-white);
  padding: 7rem 0;
}

.hero h1 {
  max-width: 700px;
}

.hero p {
  max-width: 600px;
  color: #ddd;
  margin: 1rem 0 2rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-bg {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("../img/front.jpg") center / cover no-repeat;
}

.hero-bg .container {
  position: relative;
  z-index: 2;
}
.hero-subnote {
  white-space: normal;
  max-width: 90vw;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-subnote {
    left: 50%;
    transform: translateX(-50%);
  }
}



/* =========================
   CAMPAIGNS
========================= */

.campaigns {
  padding: 3.5rem 0;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.campaign-card {
  position: relative;
  padding: 2.2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.campaign-card h3 {
  margin-bottom: 0.6rem;
}

.campaign-card p {
  margin-bottom: 1.6rem;
  color: #555;
}

/* =========================
   BADGE
========================= */

.campaign-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: #444;
}

/* Highlight badge variant */
.campaign-card.highlight .campaign-badge {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* =========================
   MIDTER HIGHLIGHT (Premium)
========================= */

.campaign-card.highlight {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    #ff9a3c
  );
}


.campaign-card.highlight p {
  color: rgba(255,255,255,0.92);
}

.campaign-card.highlight .btn-primary {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.campaign-card.highlight .btn-primary:hover {
  background: #f4f4f4;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .campaign-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .campaign-card {
    padding: 1.8rem;
  }

  .campaign-badge {
    top: 14px;
    right: 14px;
    font-size: 0.7rem;
  }
}



/* =========================
   BUTTONS
========================= */
.btn-primary,
.btn-secondary,
.btn-general,
.btn-modal-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    color .22s ease;
}

/* =========================
   CASE BUTTON (Refined)
========================= */

.case-btn {
  display: inline-block;
  float: right;

  margin-top: 12px;

  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;

  border-radius: 5px;
  text-decoration: none;

  background: transparent;
  border: 1.5px solid #e5e5e5;
  color: #111;

  transition: all 0.2s ease;
}

.case-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.case-btn i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.case-btn:hover i {
  transform: translateX(3px);
}
/* =========================
   PRIMARY
========================= */
@keyframes phoneRing {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-10deg); }
  40%  { transform: rotate(10deg); }
  60%  { transform: rotate(-6deg); }
  80%  { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    #ff8a3d
  );
  color: var(--color-white);

  box-shadow:
    0 10px 24px rgba(242,107,29,0.45), /* glow */
    0 3px 0 rgba(170,60,10,0.9),       /* bund-tryk */
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    #ff7a2a,
    var(--color-primary)
  );
  box-shadow:
    0 12px 30px rgba(242,107,29,0.6),
    0 3px 0 rgba(170,60,10,1);
    transform: translateY(-2px);
}


.btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 16px rgba(242,107,29,0.45),
    0 1px 0 rgba(170,60,10,1),
    inset 0 2px 4px rgba(0,0,0,0.25);
}

.btn-primary i {
  transition: transform .25s ease;
}

.btn-primary:hover i {
  animation: phoneRing .6s ease;
  transform: rotate(-8deg) scale(1.05);
}

/* =========================
   SECONDARY
========================= */
.btn-secondary {
  color: var(--color-white);
  border: 1.5px solid rgb(255, 255, 255);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
  color: var(--color-dark)
}

.btn-secondary:active {
  transform: translateY(1px);
}

.btn-secondary i {
  margin-left: .35rem;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .85;
}

.btn-secondary:hover i {
  transform: translateX(3px);
  opacity: 1;
}

/* =========================
   General Button
========================= */
.btn-general {
  background: linear-gradient(
    135deg,
    #3a3f45,
    #2b2f34
  );
  color: var(--color-white);

  box-shadow:
    0 10px 24px rgba(0,0,0,0.45), /* glow */
    0 3px 0 rgba(20,20,20,0.9),   /* bund-tryk */
    inset 0 1px 0 rgba(255,255,255,0.15);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn-general:hover {
  background: linear-gradient(
    135deg,
    #42484f,
    #30353b
  );

  box-shadow:
    0 12px 30px rgba(0,0,0,0.6),
    0 3px 0 rgba(15,15,15,1);

  transform: translateY(-2px);
}

.btn-general:active {
  transform: translateY(1px);

  box-shadow:
    0 6px 16px rgba(0,0,0,0.45),
    0 1px 0 rgba(15,15,15,1),
    inset 0 2px 4px rgba(0,0,0,0.35);
}


.btn-general i {
  margin-left: .35rem;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .85;
}

.btn-general:hover i {
  transform: translateX(3px);
  opacity: 1;
}

/* =========================
   MODAL PRIMARY BUTTON
========================= */
.btn-modal-primary {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: none;

  font-weight: 600;
  color: #fff;

  background: linear-gradient(
    135deg,
    var(--color-primary),
    #ff8a3d
  );

  box-shadow:
    0 6px 18px rgba(242,107,29,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);

  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  transition:
    filter 0.15s ease,
    box-shadow 0.15s ease;
}

/* IKON */
.btn-modal-primary i {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* HOVER – rolig, ingen “løft” */
.btn-modal-primary:hover {
  filter: brightness(1.06);
  box-shadow:
    0 6px 18px rgba(242,107,29,0.38),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* IKON-LIV */
.btn-modal-primary:hover i {
  transform: translateX(3px);
  opacity: 0.9;
}

/* ACTIVE */
.btn-modal-primary:active {
  filter: brightness(0.97);
  box-shadow:
    0 4px 12px rgba(242,107,29,0.3),
    inset 0 2px 4px rgba(0,0,0,0.25);
}



/* =========================
   GRID / CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.grid article,
.grid > div {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grid article:hover,
.grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.card-intro {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

#services .section-intro {
  margin-top: -35px;
  margin-left: 20px;
}

/* =========================
   WHY US
========================= */
.checklist {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-gray);
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.checklist.compact {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eee;
}

.checklist.compact li {
  font-size: 0.85rem;
  color: #7a7a7a;
}

.section-intro {
  max-width: 480px;
  margin-bottom: 1.2rem;
  color: #666;
  font-size: 0.95rem;
}

#why-us .section-img {
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.9rem;
}

.trust-item strong {
  display: block;
  font-weight: 600;
}

.stars {
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  color: #ddd; /* tomme stjerner */
  line-height: 1;
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-primary); /* fyldte stjerner */
  pointer-events: none;
}

.trust-note {
  display: block;
  color: #777;
  font-size: 0.8rem;
}

.section-intro.subtle {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #777;
  max-width: 520px;
}

/* HØJRE KOLONNE */
.why-us-right {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 1rem;
}

.trust-inline {
  width: 100%;
  max-width: 520px;
  text-align: center;    /* ← VIGTIG */
}

.trust-stats {
  display: flex;
  justify-content: center;   /* ← VIGTIG */
  gap: 2rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #eee;
}

.trust-stats div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-align: left;
}


.trust-stats strong {
  font-size: 0.95rem;
}

.trust-stats span {
  font-size: 0.7rem;
  color: #777;
}
.stat-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
}

/* BUNDDEL */
.why-us-foot {
  margin-top: 3rem;
}

.why-us-foot .grid > div {
  background: #fafafa;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* =========================
   ABOUT
========================= */
#about .section-img {
  border-radius: 14px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* =========================
   TESTIMONIALS
========================= */
#testimonials {
  background: #f7f7f7;
  padding: 4rem 0;
}



/* --- Headline spacing fix --- */
#testimonials h2 {
  margin-bottom: 0.35rem;
}

#testimonials .section-intro {
  margin-top: 0;
  margin-left: 20px;
}

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}


.testimonial-viewport {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* =========================
   SLIDE
========================= */
.testimonial {
  min-width: 100%;
  max-width: 780px;
  margin: 0 auto;

  padding: 1.4rem 2.2rem;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;

  border: 2px solid rgba(0,0,0,0.06);
}
/* =========================
   CONTENT
========================= */
.testimonial .stars {
  color: #f5a623;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.testimonial-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #111;
}


.testimonial p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial .author {
  font-weight: 600;
  font-size: 0.85rem;
  color: #666;
}

.testimonial .author a {
  color: var(--color-primary);
  text-decoration: none;
}

.testimonial .author a:hover {
  text-decoration: underline;
}

/* =========================
   SIDE ARROWS
========================= */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;

  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(242,107,29,0.35);
}

.carousel-arrow.prev { left: -18px; }
.carousel-arrow.next { right: -18px; }


.carousel-arrow.prev { left: -18px; }
.carousel-arrow.next { right: -18px; }


.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }


/* --- Placering --- */
.carousel-arrow.prev {
  left: -62px;   /* var -18px / 0 */
}

.carousel-arrow.next {
  right: -62px;
}


/* --- Hover --- */
.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

/* ========================= 
  MOBILE FALLBACK 
========================= */ 
@media (max-width: 768px) { 
    .carousel-arrow { 
        top: auto; 
        bottom: -54px; 
        transform: none; 
        
    } 
    .carousel-arrow:hover {
        transform: none !important;
    }
  
    .carousel-arrow.prev { 
        left: calc(50% - 52px); 
        
    } 
    .carousel-arrow.next { 
        right: calc(50% - 52px); 
    } 
}



/* =========================
   FOOTER LINK
========================= */
.testimonial-footer {
  margin-top: 1rem;
  text-align: center;
}


/* =========================
   REVIEW BUTTON
========================= */
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;

  border-radius: 999px;
  text-decoration: none;

  color: #1c9c6d;
  background: #e9f7f1;
  border: 1px solid rgba(28,156,109,0.25);

  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-review:hover {
  background: #def3eb;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .btn-review {
    margin-top: 2rem;
  }
}


.testimonial-footer {
  margin-top: 1.8rem;
  text-align: center;
}

/* =========================
   Featured Review
========================= */
#featured-review {
  padding: 4rem 0;
  background: #fff;
}

.featured-review {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.4rem;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.featured-review .stars {
  color: #f5a623;
  margin-bottom: 0.8rem;
}

.featured-review .excerpt {
  font-size: 1.05rem;
  line-height: 1.6;
}

.featured-review .full-review p {
  margin-top: 1rem;
  line-height: 1.6;
}

.review-toggle {
  margin-top: 1rem;
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
}

.review-toggle:hover {
  text-decoration: underline;
}

.featured-review .author {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #666;
}

#featured-review h2 {
  margin-bottom: 0.35rem;
}

#featured-review .section-intro {
  margin-top: -5px;
  margin-left: 20px;
}

.full-review {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
}

.full-review > * {
  overflow: hidden;
}

.featured-review.open .full-review {
  grid-template-rows: 1fr;
}


.featured-review .author {
  font-weight: 600;
  color: #666;
}

.featured-review .author a {
  color: var(--color-primary);
  text-decoration: none;
}

.muted {
  font-size: 0.9rem;
  color: #4f4f4f;
}

/* =========================
   PROCESS
========================= */
.process-steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.process-steps li {
  background: var(--color-light);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-steps li:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  .process-steps li::before {
    right: 8px;
    top: 8px;
  }
}


.process-steps li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.process-steps li span {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

/* =========================
   TRUST
========================= */
#trust .section-img.mt {
  margin-top: 1.5rem;
}

.trust-stats {
  display: flex;
  gap: 3rem;
  margin: 1.5rem 0 2.5rem;
  flex-wrap: wrap;
}

.stat-icon {
  grid-row: 1 / span 2;
  font-size: 1.4rem;
  color: var(--color-primary);
  line-height: 1;
}

.trust-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0;
  align-items: center;
}

.trust-stats strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 0.2rem;
}

.trust-stats span {
  font-size: 0.75rem;
  color: #777;
  margin-top: -0.35rem;
}


/* =========================
   Booking
========================= */
/* BOOKING MODAL */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.booking-modal h2 {
  color: var(--color-primary)
}

.booking-modal label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #ddd; 
}

.booking-modal.active {
  display: block;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}


.booking-modal-content {
  position: relative;
  max-width: 520px;
  margin: 5vh auto;
  background: #1f1f1f;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.25s ease;
}

.booking-modal-content {
  overflow-y: auto;
  max-height: calc(100vh - 6vh);
  -webkit-overflow-scrolling: touch;
}


@keyframes modalIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.booking-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #aaa;
  cursor: pointer;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
}

.btn-primary.full {
  width: 100%;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  overflow: hidden;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
}

.form-note u {
    color: #ff8a3d;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-success h2 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Mobil */
@media (max-width: 600px) {
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* MOBIL */
@media (max-width: 600px) {
  .booking-modal-content {
    margin: 3vh 1rem;
  }
}



/* =========================
   BRANDS
========================= */
.brand-strip {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.brand-track {
  display: flex;
  will-change: transform;
}

.brand-set {
  display: flex;
}

.brand-set img {
  height: 46px;
  flex-shrink: 0;
  margin-right: 6rem;
  opacity: 0.75;
  filter: grayscale(0%);
}

.brand-set img:last-child {
  margin-right: 0;
}




/* =========================
   CONTACT
========================= */
/* CONTACT */
#contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

#contact .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

#contact .contact-list i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.map-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.25);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-img {
  width: 100%;
  max-width: 420px;
  margin-top: 1.5rem;
  border-radius: 14px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25);
}




/* =========================
   FOOTER
========================= */
footer {
  background: var(--color-dark);
  color: #bbb;
  text-align: center;
  padding: 2rem 0;
}

footer p {
  color: #bbb;
  font-size: .9rem;
}
.site-footer {
  background: linear-gradient(
    180deg,
    #121212,
    #0b0b0b
  );
  color: rgba(255,255,255,0.75);
  padding: 2.2rem 0;
  font-size: 0.9rem;
  box-shadow: 0 -10px 30px rgba(242,107,29,0.25);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}



.footer-brand strong {
  display: block;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.footer-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-cvr {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.footer-socials a {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}


/* Mobil */
@media (max-width: 768px) {
  .footer-socials { 
      justify-content: center; 
      
  }
  .footer-inner{
      flex-direction: column;
      text-align: center;
  }
}


/* =========================
   IMAGES
========================= */
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.section-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.mb {
  margin-bottom: 2rem;
}

/* =========================
   TWO COLUMN LAYOUT
========================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .nav-links {
    display: none; /* burger-menu i fase 6 */
  }
}
