/* ==========================================================================
   Design System & Styling - autoentsorgen-neuss.de
   Style: Premium White Design with Vibrant Colorful Accents
   ========================================================================== */

/* Google Fonts loaded via <link> tags in HTML head */

/* CSS Variables */
:root {
  --font-primary: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Color Palette - White/Light Theme */
  --color-primary: #0f172a;      /* Deep Slate/Navy for headings */
  --color-primary-light: #334155;  /* Slate 700 for subtext */
  --color-primary-tint: #f1f5f9;   /* Slate 100 for light backgrounds */
  --color-accent: #e11d48;       /* Premium Red/Rose */
  --color-accent-hover: #be123c; /* Darker Rose */
  --color-secondary: #64748b;    /* Steel Gray */
  --color-dark: #1e293b;         /* Slate 800 for body copy */
  --color-light: #f8fafc;        /* Slate 50 for alternate sections */
  --color-border: #cbd5e1;
  --color-border-light: #e2e8f0;
  --color-white: #ffffff;
  
  /* Gradients for colorful visual accents */
  --color-gradient-text: linear-gradient(135deg, #e11d48 0%, #ef4444 50%, #f97316 100%);
  --color-gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --color-gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --color-gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 76px;
  --top-bar-height: 40px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 8px 15px -6px rgba(15, 23, 42, 0.03);
  --box-shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 0 10px 20px -8px rgba(15, 23, 42, 0.05);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-secondary); }
.bg-light { background-color: var(--color-light); }
.bg-primary { background-color: var(--color-primary-tint); color: var(--color-primary); }

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #ea580c 0%, var(--color-accent) 100%);
  margin: 0.85rem auto 0;
  border-radius: 3px;
  transition: width 0.4s ease;
}

section:hover h2::after {
  width: 80px;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-primary-light);
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--color-light);
  color: var(--color-primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 0;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}

.top-bar-marquee span {
  display: inline-block;
  padding-right: 2rem;
}

.top-bar-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.top-bar-phone {
  color: var(--color-accent);
  font-weight: 700;
  margin-left: 1rem;
  text-decoration: none;
  border: 1px solid rgba(225, 29, 72, 0.2);
  padding: 0.15rem 0.65rem;
  border-radius: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.top-bar-phone:hover {
  background: rgba(225, 29, 72, 0.05);
  border-color: var(--color-accent);
}

/* Header & Navigation */
header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  height: 65px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(225, 29, 72, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.02);
}

.logo svg {
  width: 36px;
  height: 36px;
  max-width: 36px;
  fill: var(--color-accent);
  filter: drop-shadow(0 2px 6px rgba(225, 29, 72, 0.15));
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.logo:hover svg {
  transform: rotate(180deg);
}

.logo-sub {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -0.1rem;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.mobile-menu-actions {
  display: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(15, 23, 42, 0.8);
  padding: 0.4rem 0.1rem;
  margin: 0 0.6rem;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.btn-secondary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-primary);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-tint);
  transform: translateY(-2px);
}

.btn-call {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.2);
  animation: call-pulse 3s infinite;
}

.btn-call:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
  animation: none;
}

@keyframes call-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(225, 29, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 101;
}

.mobile-toggle .bar {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle .bar-1 {
  top: 4px;
}

.mobile-toggle .bar-2 {
  bottom: 4px;
  width: 70%;
  right: 0;
}

/* Active animated close cross */
.mobile-toggle.open .bar-1 {
  transform: translateY(5.5px) rotate(45deg);
}

.mobile-toggle.open .bar-2 {
  transform: translateY(-5.5px) rotate(-45deg);
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6.5rem 0 7.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--color-light) 0%, var(--color-white) 100%);
  color: var(--color-dark);
}

/* Subtle colorful background glows */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle at 60% 40%, rgba(225, 29, 72, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

/* Hero grid layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Right column: image stacked above form */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(65px + 1.5rem);
}

.hero-ratings {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.rating-stars {
  color: #f59e0b; /* Golden Yellow */
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.rating-text {
  color: var(--color-primary-light);
  font-weight: 600;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.06);
  color: #059669; /* Emerald Green */
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: dot-pulse 1.5s infinite ease-in-out;
  opacity: 0.8;
}

@keyframes dot-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.05);
  color: var(--color-accent);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(225, 29, 72, 0.15);
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.04);
  letter-spacing: 0.015em;
}

.hero-badge svg {
  width: 15px;
  height: 15px;
  fill: var(--color-accent);
  filter: drop-shadow(0 0 4px rgba(225, 29, 72, 0.2));
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero h1 span.gradient-text {
  background: var(--color-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero h1 span.subtitle, .hero-subtitle {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-light);
  margin-top: 0.85rem;
  letter-spacing: 0.01em;
  -webkit-text-fill-color: var(--color-primary-light);
  background: none;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 580px;
  color: var(--color-primary-light);
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}

.hero-bullets svg {
  width: 20px;
  height: 20px;
  fill: #10b981; /* green for trust/description contrast */
  filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.15));
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-btn-main {
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.25);
  border-radius: 50px;
}

.hero-btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(225, 29, 72, 0.35);
}

.hero-btn-call {
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  border-width: 2px;
  font-weight: 700;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.hero-btn-call:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-tint);
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  perspective: 1000px;
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  animation: float 6s ease-in-out infinite;
  text-align: center;
  margin-top: 0;
}

.hero-image-wrap:hover {
  transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
}

.hero-image-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.1), 0 0 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--color-border-light);
}

@keyframes float {
  0% { transform: translateY(0px) rotateY(-8deg) rotateX(4deg); }
  50% { transform: translateY(-12px) rotateY(-8deg) rotateX(4deg); }
  100% { transform: translateY(0px) rotateY(-8deg) rotateX(4deg); }
}

/* Form Card */
.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--box-shadow);
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

/* Premium top accent stripe on form card */
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-gradient-text);
  z-index: 3;
}

.form-card:hover {
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(225, 29, 72, 0.2);
}

.form-header {
  margin-bottom: 0;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.form-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  color: var(--color-primary);
}

.form-header p.text-muted {
  color: var(--color-secondary) !important;
}

/* Step Indicators */
.form-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin: 1.25rem 2rem 0;
  position: relative;
}

.form-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-border-light);
  z-index: 1;
  transform: translateY(-50%);
}

.form-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: var(--color-accent);
  z-index: 1;
  transform: translateY(-50%);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-border-light);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-dot.active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2);
  animation: step-glow 2s infinite;
}

@keyframes step-glow {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.3); }
  70% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.step-dot.completed {
  border-color: #10b981;
  background-color: #10b981;
  color: var(--color-white);
}

.form-step {
  display: none;
  padding: 1.5rem 2rem;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  background-color: var(--color-light);
  border: 1.5px solid var(--color-border-light);
  color: var(--color-primary);
  border-radius: 8px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
}

.form-control option {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  accent-color: var(--color-accent);
}

.checkbox-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-buttons .btn {
  flex: 1;
}

.success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: #10b981;
}

/* Trust Banner */
.trust-banner {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 3.5rem 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-number-wrap {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(225, 29, 72, 0.08);
}

.trust-content h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.trust-content p {
  color: var(--color-secondary);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Sections Base */
section {
  padding: 6rem 0;
}

/* Certificate & Pickup Sections */
.certificate-section,
.pickup-section {
  padding: 6rem 0;
}

.certificate-grid,
.pickup-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
}

.pickup-grid {
  grid-template-columns: 1.25fr 1fr;
}

.certificate-image,
.pickup-image {
  position: relative;
  text-align: center;
  z-index: 2;
}

.certificate-image img,
.pickup-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(15, 23, 42, 0.06));
  animation: float-simple 6s ease-in-out infinite;
}

.pickup-image img {
  animation: float-simple 6s ease-in-out infinite 0.5s;
}

@keyframes float-simple {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.certificate-content h2,
.pickup-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.certificate-content h2::after,
.pickup-content h2::after {
  margin: 0.75rem 0 0;
}

.certificate-content p,
.pickup-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--color-primary-light);
}

.certificate-bullets {
  list-style: none;
  margin-top: 1.5rem;
}

.certificate-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.certificate-bullets svg {
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(225, 29, 72, 0.05);
  color: var(--color-accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(225, 29, 72, 0.15);
}

.pickup-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pickup-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pickup-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.pickup-feature-item:nth-child(2) .pickup-feature-icon {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.15);
}

.pickup-feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.pickup-feature-item p {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .certificate-grid,
  .pickup-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .certificate-image {
    order: 2;
  }
  .pickup-image {
    order: 2;
  }
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border-light), var(--color-border-light) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

@media (max-width: 1024px) {
  .process-grid::before {
    display: none;
  }
}

.process-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  z-index: 2;
  box-shadow: var(--box-shadow);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(225, 29, 72, 0.25);
}

@media (min-width: 769px) {
  .process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35%;
    left: calc(100% - 16px);
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
    animation: pulse-arrow 2s infinite;
  }
}

@keyframes pulse-arrow {
  0% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(8px); opacity: 0.9; }
  100% { transform: translateX(0); opacity: 0.4; }
}

.process-number {
  width: 52px;
  height: 52px;
  background: var(--color-gradient-blue);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-light);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
  transition: var(--transition);
}

.process-card:nth-child(2) .process-number {
  background: var(--color-gradient-green);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.process-card:nth-child(3) .process-number {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.2);
}

.process-card:hover .process-number {
  transform: scale(1.05);
}

.process-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.process-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-primary-light);
  line-height: 1.6;
}

/* Services / Subpage grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-gradient-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: rgba(225, 29, 72, 0.15);
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

/* Colorful Icon styles */
.service-card:nth-child(4n+1) .service-icon {
  background: rgba(225, 29, 72, 0.05);
  border-color: rgba(225, 29, 72, 0.12);
}
.service-card:nth-child(4n+1) .service-icon svg { fill: #dc2626; }

.service-card:nth-child(4n+2) .service-icon {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.12);
}
.service-card:nth-child(4n+2) .service-icon svg { fill: #2563eb; }

.service-card:nth-child(4n+3) .service-icon {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.12);
}
.service-card:nth-child(4n+3) .service-icon svg { fill: #059669; }

.service-card:nth-child(4n+4) .service-icon {
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.12);
}
.service-card:nth-child(4n+4) .service-icon svg { fill: #7c3aed; }

/* Service Card Hover States for Icons */
.service-card:nth-child(4n+1):hover .service-icon {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.2);
}
.service-card:nth-child(4n+2):hover .service-icon {
  background: var(--color-gradient-blue);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}
.service-card:nth-child(4n+3):hover .service-icon {
  background: var(--color-gradient-green);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}
.service-card:nth-child(4n+4):hover .service-icon {
  background: var(--color-gradient-purple);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.service-card:hover .service-icon svg {
  fill: var(--color-white) !important;
  transform: scale(1.1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary-light);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .more-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.service-card .more-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.service-card:hover .more-link {
  color: var(--color-primary);
}

.service-card:hover .more-link svg {
  transform: translateX(6px);
}

/* Split CTA Section */
.cta-banner {
  position: relative;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border-light);
  padding: 4.5rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-primary);
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.cta-banner h2::after {
  margin: 0.75rem 0 0;
}

.cta-banner p {
  color: var(--color-primary-light);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.cta-contact-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.cta-contact-row .btn {
  flex: 1;
  padding: 0.85rem 1.5rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0 1.5rem;
  background-color: var(--color-light);
}

.faq-answer p {
  padding: 1.25rem 0;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Active FAQ state */
.faq-item.active {
  border-color: var(--color-accent);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--color-accent);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

/* Stadtteile Area */
.district-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.district-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.district-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-gradient-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.district-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.18);
  box-shadow: var(--box-shadow-hover);
}

.district-card:hover::before {
  transform: scaleX(1);
}

.district-card h3 {
  font-size: 1.25rem;
  border-bottom: 2px solid var(--color-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.district-list {
  list-style: none;
  font-size: 0.9rem;
}

.district-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.district-list svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

/* Main content layout for Subpages */
.subpage-hero {
  padding: 6.5rem 0 4rem;
  background-color: var(--color-white);
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.subpage-hero h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.subpage-hero p {
  color: var(--color-primary-light);
  font-size: 1.15rem;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.subpage-content {
  padding: 4rem 0;
}

.subpage-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.article-content h2 {
  text-align: left;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.article-content h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.5rem 0 0;
  border-radius: 2px;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.sidebar-card {
  position: sticky;
  top: 100px;
  padding: 2.25rem 2rem;
}

/* Footer styling */
footer {
  background-color: var(--color-light);
  color: var(--color-primary-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info p {
  color: var(--color-primary-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-logo {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--color-accent);
}

.footer-col h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-primary-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 0.25rem;
}

.footer-contact li {
  color: var(--color-primary-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-secondary);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--color-primary);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero entrance on page load */
.hero-content {
  animation: heroSlideIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .form-card {
  animation: heroSlideIn 0.75s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Process card icon pulse on hover */
.process-card:hover .process-number {
  animation: iconBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  70%  { transform: scale(0.97); }
  100% { transform: scale(1.05); }
}

/* Media Queries (Responsive Design) */
@media (max-width: 1024px) {
  h1 { font-size: 2.2rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-right {
    position: static;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero-image-wrap {
    flex: 0 0 220px;
    animation: none;
  }

  .form-card {
    flex: 1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --top-bar-height: 36px;
  }
  
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; margin-bottom: 2rem; }
  h2::after { margin-top: 0.5rem; }
  .trust-banner { padding: 2.5rem 0; }
  section { padding: 3.5rem 0; }

  .top-bar {
    font-size: 0.72rem;
  }

  .top-bar .container {
    justify-content: space-between;
    overflow: hidden;
  }

  .top-bar-marquee {
    justify-content: flex-start;
  }

  .top-bar-marquee span {
    animation: topBarMarquee 15s linear infinite;
  }

  @keyframes topBarMarquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle .bar {
    background-color: var(--color-primary); /* Dark toggle button bars */
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 280px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }

  .nav-menu .nav-link {
    color: var(--color-primary);
    font-size: 1.05rem;
    margin: 0;
  }
  
  .nav-menu.open {
    right: 0;
    left: auto;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
  }
  
  .hero-right {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-image-wrap {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .form-card {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Hero mobile text styles for light background */
  .hero h1 {
    color: var(--color-primary);
    font-size: 1.85rem;
  }
  .hero h1 span.gradient-text {
    background: var(--color-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero h1 span.subtitle {
    color: var(--color-primary-light);
    -webkit-text-fill-color: var(--color-primary-light);
  }
  .hero-text { color: var(--color-primary-light); }
  .hero-bullets li { color: var(--color-primary); }
  .hero-badge {
    background: rgba(225, 29, 72, 0.05);
    color: var(--color-accent);
    border-color: rgba(225, 29, 72, 0.15);
    backdrop-filter: none;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-btn-call {
    color: var(--color-primary);
    border-color: var(--color-border);
  }

  .process-grid, .district-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .subpage-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .cta-contact-row {
    flex-direction: column;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-btn-main, .hero-btn-call {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   Floating CTA Panel
   ========================================================================== */
.floating-cta-panel {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.floating-cta-panel.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}

.floating-cta-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
}

/* Call Button - Brand Red */
.floating-cta-btn.cta-call {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.floating-cta-btn.cta-call:hover {
  background-color: var(--color-accent-hover);
}

/* Form Button - Navy */
.floating-cta-btn.cta-form {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.floating-cta-btn.cta-form:hover {
  background-color: var(--color-primary-light);
}

/* WhatsApp Button - Green */
.floating-cta-btn.cta-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: whatsapp-pulse 2s infinite;
}
.floating-cta-btn.cta-whatsapp svg {
  width: 36px;
  height: 36px;
}
.floating-cta-btn.cta-whatsapp:hover {
  background-color: #1fc157;
  animation: none;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 30px rgba(15, 23, 42, 0.08);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 8px 30px rgba(15, 23, 42, 0.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 30px rgba(15, 23, 42, 0.08);
  }
}

/* Tooltips */
.floating-cta-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.floating-cta-btn:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-cta-panel {
    right: 16px;
    gap: 10px;
  }
  .floating-cta-btn {
    width: 52px;
    height: 52px;
  }
  .floating-cta-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .floating-cta-btn.cta-whatsapp svg {
    width: 30px;
    height: 30px;
  }

  .floating-cta-btn::before {
    display: none;
  }
}

/* ==========================================================================
   Map & Coverage Section (Local SEO)
   ========================================================================== */
.map-section {
  padding: 6.5rem 0;
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: stretch;
}

.map-info-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.map-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gradient-text);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.map-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.map-info-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-primary-light);
  margin-bottom: 2rem;
}

.map-details {
  list-style: none;
  margin-bottom: 2.5rem;
}

.map-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.map-details li strong {
  color: var(--color-primary);
  display: block;
}

.map-details-icon {
  width: 38px;
  height: 38px;
  background-color: var(--color-primary-tint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.map-container {
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  min-height: 400px;
  position: relative;
}

.map-container iframe {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

@media (max-width: 1024px) {
  .map-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .map-info-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 4rem 0;
  }
  .map-container {
    min-height: 320px;
  }
  .map-container iframe {
    min-height: 320px;
  }
}

/* Subpage Text Section (Landing Page Variant) */
.subpage-text-section {
  padding: 5rem 0;
  background-color: var(--color-white);
  position: relative;
}

.subpage-text-container {
  max-width: 800px;
  margin: 0 auto;
}
