/* ============================================================
   Bades Baumdienst — Komplette Website v1
   WordPress: Darstellung → Customizer → Zusätzliches CSS
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ws-primary:      #FF6B00;
  --ws-primary-dark: #E55A00;
  --ws-primary-glow: rgba(255, 107, 0, 0.35);
  --ws-orange-light: #FF8C33;
  --ws-black:        #0a0a0a;
  --ws-dark:         #111111;
  --ws-card:         #1a1a1a;
  --ws-border:       rgba(255, 107, 0, 0.2);
  --ws-white:        #ffffff;
  --ws-muted:        #888888;
  --ws-font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ws-font);
  background: var(--ws-black);
  color: var(--ws-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ws-dark); }
::-webkit-scrollbar-thumb { background: var(--ws-primary); border-radius: 3px; }

/* ── Lumina Bar ── */
.ws-lumina-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ws-lumina-bar.ws-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.ws-lumina-bar a {
  display: flex;
  align-items: center;
  line-height: 0;
}
.ws-lumina-bar svg {
  height: 22px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.ws-lumina-bar a:hover svg {
  opacity: 1;
}

/* ── Nav ── */
.ws-nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: top 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, border-bottom-color 0.4s ease;
}
.ws-nav.ws-nav-top {
  top: 0;
}
.ws-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ws-border);
}
.ws-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.ws-nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--ws-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.ws-nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ws-white);
  letter-spacing: 0.02em;
}
.ws-nav-logo-text span { color: var(--ws-primary); }
.ws-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.ws-nav-links a {
  text-decoration: none;
  color: var(--ws-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}
.ws-nav-links a:hover { color: var(--ws-white); }
.ws-nav-cta {
  background: var(--ws-primary);
  color: var(--ws-white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s !important;
}
.ws-nav-cta:hover {
  background: var(--ws-orange-light) !important;
  transform: translateY(-1px);
  color: var(--ws-white) !important;
}
@media (max-width: 768px) {
  .ws-nav-links { display: none; }
}

/* ── Hero ── */
.ws-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ws-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.ws-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 0, 0.18) 0%, transparent 60%),
    rgba(0, 0, 0, 0.55);
}
.ws-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: ws-grid-drift 20s linear infinite;
}
@keyframes ws-grid-drift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.ws-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.ws-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--ws-primary);
  border-radius: 50%;
  animation: ws-float-up linear infinite;
  opacity: 0;
}
@keyframes ws-float-up {
  0%   { transform: translateY(100vh) translateX(0);    opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}
.ws-hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
}
.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,107,0,0.12);
  border: 1px solid var(--ws-border);
  color: var(--ws-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: ws-fade-up 0.8s ease both;
}
.ws-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: ws-fade-up 0.8s 0.1s ease both;
}
.ws-hero-title-highlight {
  color: var(--ws-primary);
  position: relative;
  display: inline-block;
}
.ws-hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--ws-primary), var(--ws-orange-light));
  border-radius: 2px;
  animation: ws-line-grow 0.8s 0.8s ease both;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes ws-line-grow {
  to { transform: scaleX(1); }
}
.ws-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ws-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: ws-fade-up 0.8s 0.2s ease both;
}
.ws-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: ws-fade-up 0.8s 0.3s ease both;
}
.ws-btn-primary {
  background: var(--ws-primary);
  color: var(--ws-white);
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 0 30px rgba(255,107,0,0.3);
}
.ws-btn-primary:hover {
  background: var(--ws-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(255,107,0,0.5);
}
.ws-btn-secondary {
  background: transparent;
  color: var(--ws-white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.ws-btn-secondary:hover {
  border-color: var(--ws-primary);
  background: rgba(255,107,0,0.06);
  transform: translateY(-2px);
}
.ws-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: ws-fade-up 0.8s 0.5s ease both;
  flex-wrap: wrap;
}
.ws-hero-stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ws-primary);
  line-height: 1;
}
.ws-hero-stat-label {
  font-size: 0.85rem;
  color: var(--ws-muted);
  margin-top: 0.3rem;
}
@keyframes ws-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section Shared ── */
.ws-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ws-section-full {
  padding: 6rem 0;
  background: var(--ws-dark);
}
.ws-section-full .ws-section { padding-top: 0; padding-bottom: 0; }
.ws-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ws-primary);
  margin-bottom: 1rem;
}
.ws-section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--ws-primary);
  border-radius: 1px;
}
.ws-section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ws-section-desc {
  color: var(--ws-muted);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}
.ws-section-header { margin-bottom: 3.5rem; }

/* ── Reveal Animation ── */
.ws-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ws-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.ws-reveal-delay-1 { transition-delay: 0.1s; }
.ws-reveal-delay-2 { transition-delay: 0.2s; }
.ws-reveal-delay-3 { transition-delay: 0.3s; }
.ws-reveal-delay-4 { transition-delay: 0.4s; }

/* ── Services ── */
.ws-services-strip {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 1.6rem;
  background: var(--ws-primary);
  border-radius: 10px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.ws-services-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ws-white);
}
.ws-services-strip-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.ws-services-strip-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}
.ws-services-list { border-top: 1px solid rgba(255,255,255,0.07); }
.ws-service-row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  cursor: default;
  transition: padding-left 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ws-service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ws-primary);
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 0 2px 2px 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ws-service-row:hover { padding-left: 1.4rem; }
.ws-service-row:hover::before { transform: scaleY(1); }
.ws-service-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ws-primary);
  letter-spacing: 0.06em;
  line-height: 1;
  padding-top: 0.2rem;
}
.ws-service-body h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}
.ws-service-row:hover .ws-service-body h3 { color: var(--ws-primary); }
.ws-service-body p {
  font-size: 0.875rem;
  color: var(--ws-muted);
  line-height: 1.65;
  max-width: 600px;
}
.ws-service-pictogram {
  width: 48px; height: 48px;
  flex-shrink: 0;
  opacity: 0.18;
  transition: opacity 0.35s;
  color: var(--ws-primary);
}
.ws-service-row:hover .ws-service-pictogram { opacity: 0.7; }
@media (max-width: 600px) {
  .ws-service-row { grid-template-columns: 2.5rem 1fr; }
  .ws-service-pictogram { display: none; }
}

/* ── About ── */
.ws-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .ws-about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.ws-about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ws-card);
}
.ws-about-img-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 70%),
    linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  filter: drop-shadow(0 0 40px rgba(255,107,0,0.3));
}
.ws-about-badge-float {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--ws-primary);
  color: var(--ws-white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 20px 40px rgba(255,107,0,0.4);
  animation: ws-badge-float 4s ease-in-out infinite;
}
@keyframes ws-badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.ws-about-badge-float span { display: block; font-size: 1.8rem; font-weight: 900; }
.ws-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}
.ws-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.ws-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ws-primary);
  margin-top: 0.1rem;
}

/* ── Process ── */
.ws-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.ws-process-steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ws-border) 20%, var(--ws-border) 80%, transparent);
}
.ws-process-step { padding: 0 2rem 2rem; position: relative; }
.ws-process-num {
  width: 52px; height: 52px;
  background: var(--ws-card);
  border: 2px solid var(--ws-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ws-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, box-shadow 0.3s;
}
.ws-process-step:hover .ws-process-num {
  background: var(--ws-primary);
  color: var(--ws-white);
  box-shadow: 0 0 24px rgba(255,107,0,0.4);
}
.ws-process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.ws-process-step p { font-size: 0.875rem; color: var(--ws-muted); line-height: 1.6; }

/* ── Testimonials ── */
.ws-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.ws-testimonial-card {
  background: var(--ws-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.ws-testimonial-card:hover {
  border-color: var(--ws-border);
  transform: translateY(-4px);
}
.ws-testimonial-stars {
  color: var(--ws-primary);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.ws-testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.ws-testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.ws-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ws-primary), var(--ws-primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.ws-testimonial-name { font-weight: 700; font-size: 0.9rem; }
.ws-testimonial-location { font-size: 0.8rem; color: var(--ws-muted); }

/* ── CTA ── */
.ws-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--ws-black);
  padding: 6rem 2rem;
  text-align: center;
}
.ws-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,107,0,0.12) 0%, transparent 70%);
}
.ws-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.ws-cta-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ws-cta-subtitle { color: var(--ws-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.ws-cta-phone {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--ws-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.ws-cta-phone:hover { color: var(--ws-orange-light); }
.ws-cta-note { font-size: 0.85rem; color: var(--ws-muted); margin-bottom: 2.5rem; }
.ws-cta-divider {
  display: flex; align-items: center; gap: 1rem;
  color: var(--ws-muted); font-size: 0.85rem;
  margin: 2rem 0;
}
.ws-cta-divider::before, .ws-cta-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(255,255,255,0.07);
}

/* ── Footer ── */
.ws-footer {
  background: #070707;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem;
}
.ws-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ws-footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.ws-footer-brand-icon {
  width: 32px; height: 32px;
  background: var(--ws-primary);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ws-footer-brand-name { font-weight: 700; font-size: 0.95rem; }
.ws-footer-brand-name span { color: var(--ws-primary); }
.ws-footer-copy { font-size: 0.82rem; color: var(--ws-muted); }
.ws-footer-links { display: flex; gap: 1.5rem; list-style: none; }
.ws-footer-links a {
  font-size: 0.82rem;
  color: var(--ws-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ws-footer-links a:hover { color: var(--ws-white); }
