/* ===================================================================
   LORBER MÖBELSERVICE — lorbeer.css
   Möbelpacker & Umzugshilfe | Mobile-First Stylesheet
   Farbwelt: Dunkelblau (Vertrauen) + Orange/Amber (Aktion)
=================================================================== */

/* -------------------------------------------------
   1. RESET & GRUNDEINSTELLUNGEN
------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--ink);
  line-height: 1.65;
  padding-top: 72px; /* Platz für fixierten Header */
  overflow-x: hidden;
}

@media (min-width: 960px) {
  body { padding-top: 88px; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }

:focus-visible {
  outline: 3px solid var(--amber-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------
   2. DESIGN TOKENS
------------------------------------------------- */
:root {
  /* Dunkelblau */
  --navy-900: #081b36;
  --navy-800: #0f2c52;
  --navy-700: #173e6e;
  --navy-600: #21508a;

  /* Orange / Amber (Aktion) */
  --orange-500: #ff7a29;
  --orange-600: #e8620f;
  --orange-700: #c94f04;
  --amber-400: #ffc14d;

  /* Grautöne / Neutral */
  --gray-50: #f5f8fb;
  --gray-100: #eef1f6;
  --gray-200: #e0e6ee;
  --gray-400: #9aa6ba;
  --white: #ffffff;
  --ink: #182233;
  --ink-soft: #57637a;

  /* Sonstiges */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(8, 27, 54, 0.08);
  --shadow-md: 0 14px 36px rgba(8, 27, 54, 0.12);
  --shadow-lg: 0 26px 60px rgba(8, 27, 54, 0.18);
  --container: 1180px;
}

/* -------------------------------------------------
   3. LAYOUT-HILFSKLASSEN
------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.sec {
  padding: 64px 0;
}

@media (min-width: 960px) {
  .sec { padding: 110px 0; }
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: repeating-linear-gradient(115deg, var(--orange-500) 0 6px, var(--amber-400) 6px 12px);
}
.section-head.on-dark .eyebrow { color: var(--amber-400); }

.section-head h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-head.on-dark h2 { color: var(--white); }

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-head.on-dark p { color: rgba(255, 255, 255, 0.75); }

/* -------------------------------------------------
   4. BUTTONS
------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 54px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(255, 122, 41, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 122, 41, 0.42);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--navy-900);
}
.btn-outline-navy:hover {
  border-color: var(--navy-700);
  background: var(--gray-100);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); }

.btn-block { width: 100%; }

/* -------------------------------------------------
   5. HEADER / NAVIGATION
------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(8, 27, 54, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

@media (min-width: 960px) {
  .nav-inner { min-height: 88px; }
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
  letter-spacing: 0.2px;
}
.logo span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange-600);
}

/* Checkbox-Hack fürs mobile Menü (kein JS nötig) */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: var(--navy-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 27, 54, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.nav-toggle:checked ~ .nav-backdrop { opacity: 1; visibility: visible; }

.nav-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  max-width: 84%;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  transition: right 0.35s ease;
  z-index: 1001;
  overflow-y: auto;
}
.nav-toggle:checked ~ .nav-panel { right: 0; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-900);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--orange-600); }

.nav-call { display: none; }

@media (min-width: 960px) {
  .hamburger, .nav-backdrop { display: none; }

  .nav-panel {
    position: static;
    width: auto;
    height: auto;
    max-width: none;
    background: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 42px;
  }
  .nav-links { flex-direction: row; gap: 34px; }
  .nav-links a { font-size: 15.5px; }
  .nav-call {
    display: inline-flex;
    height: 46px;
    padding: 0 24px;
    font-size: 14.5px;
  }
}

/* -------------------------------------------------
   6. HERO
------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 48%, var(--navy-700) 100%);
  color: var(--white);
  padding: 52px 0 0;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.hero::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 122, 41, 0.28);
  top: -140px;
  right: -120px;
}
.hero::after {
  width: 320px;
  height: 320px;
  background: rgba(255, 193, 77, 0.16);
  bottom: -120px;
  left: -80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding-bottom: 56px;
}

.hero-copy { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 22px;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.1rem, 6.4vw, 3.5rem);
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--amber-400); }

.hero .lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-art {
  display: none;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 90px;
  }
  .hero-art {
    display: block;
    width: 380px;
    flex-shrink: 0;
  }
}

/* Vertrauens-Leiste, überlappt Hero-Unterkante */
.trust-bar-wrap {
  position: relative;
  z-index: 5;
  margin-top: -46px;
}
@media (min-width: 960px) { .trust-bar-wrap { margin-top: -60px; } }

.trust-bar {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 24px 24px;
  overflow: hidden;
}

.tape-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(115deg, var(--orange-500) 0 16px, var(--amber-400) 16px 32px);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item .ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 13.5px;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item {
    padding-left: 22px;
    border-left: 1px solid var(--gray-200);
  }
  .trust-item:first-child { padding-left: 0; border-left: none; }
}

/* -------------------------------------------------
   7. LEISTUNGEN
------------------------------------------------- */
.services { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--amber-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--amber-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-600);
  transition: gap 0.25s ease;
}
.service-card:hover .service-link { gap: 10px; }

/* -------------------------------------------------
   8. ABLAUF / 3-SCHRITTE-PROZESS
------------------------------------------------- */
.process {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 122, 41, 0.14);
  filter: blur(70px);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.process-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 46px;
  margin-top: 54px;
}

.process-step {
  position: relative;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.step-num {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-400));
  color: var(--navy-900);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 122, 41, 0.4);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 900px) {
  .process-track {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
  }
  .process-track::before {
    content: '';
    position: absolute;
    top: 29px;
    left: 12%;
    right: 12%;
    border-top: 3px dashed rgba(255, 255, 255, 0.22);
    z-index: 0;
  }
  .process-step { flex: 1; }
}

/* -------------------------------------------------
   9. KONTAKT
------------------------------------------------- */
.contact { background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 46px; }
}

.contact-info {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(115deg, var(--orange-500) 0 16px, var(--amber-400) 16px 32px);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact-info > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}
.contact-list .ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list a:hover { color: var(--amber-400); }

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.contact-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255, 122, 41, 0.14);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* -------------------------------------------------
   10. FOOTER
------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  padding-bottom: 44px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; line-height: 1.75; max-width: 320px; }

.site-footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14.5px; transition: color 0.25s ease, transform 0.25s ease; display: inline-block; }
.footer-links a:hover { color: var(--amber-400); transform: translateX(5px); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--amber-400); }

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* -------------------------------------------------
   11. MOBILE STICKY CTA-LEISTE
------------------------------------------------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  box-shadow: 0 -8px 24px rgba(8, 27, 54, 0.18);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
}
.mobile-cta-btn.call { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.mobile-cta-btn.whatsapp { background: #25d366; }

@media (min-width: 960px) {
  .mobile-cta { display: none; }
}

/* -------------------------------------------------
   12. ANIMATIONEN
------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy { animation: fadeUp 0.8s ease both; }
.hero-art { animation: fadeUp 0.9s ease 0.15s both; }
