/* 
  Project: Autoankauf 2026 
  Theme: Modern 2026 Vision (Obsidian + Electric Ultraviolet + Cyber Blue)
*/

:root {
  /* Colors - Premium Executive Palette (Midnight Blue & Automotive Red) */
  --color-white: #ffffff;
  --color-bg-light: #f8fafc;
  --color-primary: #0a192f;      /* Midnight Blue */
  --color-secondary: #1e293b;    /* Slate */
  --color-accent: #e11d48;       /* Automotive Red */
  --color-accent-hover: #be123c;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-border: #e2e8f0;
  --color-gold: #fbbf24;
  --color-success: #10b981;
  --color-danger: #ef4444;

  /* Gradients */
  --grad-main: linear-gradient(135deg, #0a192f 0%, #1e293b 100%);
  --grad-accent: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(10, 25, 47, 0.1);
  --shadow-premium: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-mobile);
}

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

html {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text);
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography Overrides */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.text-highlight {
  color: var(--color-accent);
}

/* Buttons: 2026 Hyper-Gradients */
/* Buttons: 2026 Hyper-Gradients */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  /* Larger padding */
  border-radius: 50px;
  /* Modern pill shape */
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  /* Larger font */
  gap: 0.75rem;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(10, 25, 47, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d4a017 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(191, 148, 48, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(191, 148, 48, 0.4);
}

/* Modern 2026 Phone Hero Button */
.btn-phone-hero {
  background: linear-gradient(135deg, #0a192f 0%, #2563eb 50%, #3b82f6 100%);
  background-size: 200% auto;
  color: var(--color-white);
  padding: 1.25rem 3rem;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: gradient-shift 3s ease infinite;
}

.btn-phone-hero:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
  background-position: right center;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
  text-decoration: none;
}

.whatsapp-sticky svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.whatsapp-sticky:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  background: var(--color-primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

/* Hero Section */
.hero {
  background: var(--color-bg-light);
  padding: var(--space-xl) 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.trust-pills {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.trust-pill {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  color: var(--color-text-muted);
}

.trust-pill.highlight {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Calculator Card */
.calculator-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
}

.calc-input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.calc-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(191, 148, 48, 0.1);
}

/* Features */
.features {
  background-color: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  padding: 3rem 2.5rem;
  background: var(--color-bg-light);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.icon-box {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* Vehicle Categories Section */
.categories-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-light);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-bottom: 5px solid var(--color-hero-accent);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.category-img-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.category-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-title {
  padding: 1.5rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Content Sections */
.content-section {
  padding: var(--space-lg) 0;
}

/* FAQ Section */
.faq-section {
  background: var(--color-bg-light);
}

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

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

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

.faq-question:hover {
  background: rgba(15, 23, 42, 0.02);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 2rem;
}

.faq-icon::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
}

.faq-item.active .faq-icon::after {
  content: '-';
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.5rem 0;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.breadcrumb-item a {
  text-decoration: none;
  color: var(--color-accent);
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-lg) 0 2rem;
}

footer .logo {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

footer li a:hover {
  color: var(--color-accent) !important;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-pills {
    justify-content: center;
  }

  .nav-links {
    display: none;
    /* Add hamburger menu logic if needed */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: var(--space-md) 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  .btn {
    width: 100%;
  }

  .calculator-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Detailed Bottom Contact Form */
.contact-form-section {
  padding: var(--space-xl) 0;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}


.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-hero-accent);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

/* SEO Content Section */
.seo-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-light);
}

.seo-container {
  max-width: 1000px;
}

.seo-content-block {
  margin-bottom: 3rem;
}

.seo-content-block h2,
.seo-content-block h3 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.seo-content-block p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--color-text);
  font-size: 1.05rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.seo-grid-column h4 {
  color: var(--color-hero-accent);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Navigation */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: var(--transition);
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

/* Glassmorphism Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Stats Bar - Premium Counter Interaction */
.trust-stats-bar {
  background: var(--color-primary);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.trust-stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(225, 29, 72, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.trust-stats-bar {
  padding: var(--space-lg) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Background Decoration for Stats Bar */
.trust-stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(225, 29, 72, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.stat-card-v2 {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.stat-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.1);
  border-color: rgba(225, 29, 72, 0.2);
}

.stat-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-card-v2:hover::before {
  opacity: 1;
}

.stat-icon-v2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card-v2:hover .stat-icon-v2 {
  transform: scale(1.2) rotate(5deg);
}

.stat-value-v2 {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.stat-value-v2 span.accent {
  color: var(--color-accent);
}

.stat-label-v2 {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .stats-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid-v2 {
    grid-template-columns: 1fr;
  }
  .stat-card-v2 {
    padding: 2rem 1rem;
  }
}

/* Comparison Table - Premium Glass Style */
.comparison-table-wrapper {
  margin: 3rem auto 0;
  max-width: 900px;
  overflow-x: auto;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th {
  padding: 1.5rem 2rem;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-align: left;
}

.comparison-table th:nth-child(2) { background: #1e293b; }
.comparison-table th:nth-child(3) { background: var(--color-accent); position: relative; }

.comparison-table td {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}

.comparison-table .feature-name {
  color: var(--color-primary);
  font-weight: 700;
  background: #f8fafc;
}

.check-yes {
  color: var(--color-success);
}

.check-no {
  color: var(--color-danger);
}

.col-premium {
  background: rgba(225, 29, 72, 0.02);
  font-weight: 700 !important;
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: grid;
  }
  
  body {
    padding-bottom: 80px; /* Space for CTA */
  }
}

/* Redesigned FAQ Glass */
.faq-item.glass-style {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  border-radius: 16px;
}

.faq-item.glass-style .faq-question {
  padding: 1.8rem;
}
.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.breadcrumb-item a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--color-accent);
}

.breadcrumb-item.active {
  color: var(--color-text);
  font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: #94a3b8;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0.75rem 0;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
/* Interactive "Why Us?" Cards - Hexagon/Glass Hybrid */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.1);
  background: white;
}

.why-card .icon-box {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  transform: rotate(45deg);
  transition: var(--transition);
}

.why-card .icon-box i {
  transform: rotate(-45deg);
}

.why-card:hover .icon-box {
  background: var(--color-accent);
  color: white;
  transform: rotate(45deg) scale(1.1);
}

.why-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* 3-Step Process Section */
.process-section {
  padding: var(--space-xl) 0;
  background: white;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

/* Connecting line for desktop */
@media (min-width: 968px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 50px; /* Align with the center of icons */
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    z-index: 0;
  }
}

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

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.process-icon-wrapper {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 4px solid var(--color-bg-light);
  position: relative;
  transition: var(--transition);
}

.process-step:hover .process-icon-wrapper {
  border-color: rgba(225, 29, 72, 0.2);
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 3px solid white;
}

.process-step h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* Redesigned FAQ Accordion - Glassmorphism */
.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item.glass-style:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--color-accent);
}

.faq-item.active .faq-icon {
  background: var(--color-accent);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 2.5rem;
  color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
  padding-bottom: 2rem;
}

/* Sticky Mobile CTA Refined - New v2 Design Match */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--color-border);
  z-index: 9998;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .sticky-cta { 
    display: grid; 
    bottom: 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  }
  body { padding-bottom: 80px; }
}

/* Sticky Button Version 2 Styles */
.btn-sticky-v2 {
  height: 54px;
  border-radius: 15px !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: none !important;
}

/* Dark Phone Button */
.btn-sticky-phone-v2 {
  background: #1a2433 !important;
  color: #ffffff !important;
}

.btn-sticky-phone-v2 .icon-pink {
  color: #ff3366;
  font-size: 1.1rem;
}

/* Gradient Angebot Button */
.btn-sticky-angebot-v2 {
  background: linear-gradient(90deg, #de0044 0%, #90002d 100%) !important;
  color: #ffffff !important;
}

.btn-sticky-angebot-v2 .icon-white {
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.btn-sticky-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  filter: brightness(1.1);
}

/* Floating WhatsApp Button v2 */
.whatsapp-sticky-v2 {
  position: fixed;
  bottom: 85px; /* Offset for sticky CTA */
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), inset 0 -4px 8px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-sticky-v2:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-sticky-v2 svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.sticky-cta .btn {
  padding: 1rem 0.5rem;
  font-size: 0.95rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* =========================================
   Custom Image-Match Hero Buttons (2026)
   ========================================= */

.hero-custom-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.custom-btn-phone,
.custom-btn-mail {
   position: relative;
   display: inline-flex;
   align-items: center;
   text-decoration: none;
   margin: 1.5rem 0.5rem;
   transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s;
}

.custom-btn-phone { margin-top: 2.5rem; }

.custom-btn-phone:hover,
.custom-btn-mail:hover {
   transform: translateY(-4px) scale(1.02);
   filter: brightness(1.05);
}

/* --- Image 1: Phone Button Match (Modernized) --- */
.custom-btn-phone::before {
   content: 'JETZT ANRUFEN';
   position: absolute;
   top: -25px;
   left: 50%;
   transform: translateX(-40%);
   color: #1a2433;
   font-weight: 900;
   font-size: 1.1rem;
   white-space: nowrap;
   letter-spacing: 1px;
   text-transform: uppercase;
   z-index: 10;
}

.custom-btn-phone .custom-btn-icon-wrapper {
   width: 80px;
   height: 80px;
   background: radial-gradient(circle at 30% 30%, #2c3e50, #1a2433);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 2px 4px 15px rgba(0,0,0,0.2), inset -2px -2px 6px rgba(0,0,0,0.3);
   z-index: 2;
   position: relative;
}

.custom-btn-phone .custom-btn-icon-wrapper svg {
   width: 40px;
   height: 40px;
   transform: rotate(-10deg);
}

.custom-btn-phone .custom-btn-pill {
   background: white;
   border: 5px solid #1a2433;
   border-radius: 40px;
   height: 60px;
   display: flex;
   align-items: center;
   padding: 0 40px 0 55px;
   margin-left: -45px;
   z-index: 1;
   color: #111;
   font-size: 1.6rem;
   font-weight: 900;
   font-family: 'Inter', sans-serif;
   letter-spacing: 0.5px;
   box-shadow: 3px 5px 15px rgba(0,0,0,0.1);
}

/* --- Image 2: Mail Button Match (Modernized) --- */
.custom-btn-mail .custom-btn-icon-wrapper {
   width: 86px;
   height: 86px;
   background: #de0044; 
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: inset 0 8px 12px rgba(255,100,130,0.5), inset 0 -6px 12px rgba(0,0,0,0.4), 3px 6px 20px rgba(222,0,68,0.4);
   z-index: 2;
   position: relative;
   border: 4px solid #de0044;
}

.custom-btn-mail .custom-btn-icon-inner {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #de0044, #90002d);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: inset 0 2px 5px rgba(0,0,0,0.3), 0 3px 6px rgba(255,100,130,0.5);
}

.custom-btn-mail .custom-btn-pill {
   background: linear-gradient(180deg, #de0044 0%, #90002d 100%);
   border-radius: 45px;
   height: 68px;
   display: flex;
   align-items: center;
   padding: 0 45px 0 65px;
   margin-left: -50px;
   z-index: 1;
   color: white;
   font-size: 1.4rem;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: inset 0 4px 8px rgba(255,100,130,0.4), inset 0 -4px 8px rgba(0,0,0,0.3), 4px 8px 15px rgba(222,0,68,0.3);
   text-shadow: 1px 2px 3px rgba(0,0,0,0.4);
   border: 1px solid #ff4d88;
   border-bottom: 2px solid #8a0025;
}

@media (max-width: 576px) {
  .hero-custom-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .custom-btn-phone .custom-btn-pill,
  .custom-btn-mail .custom-btn-pill {
    font-size: 1.2rem;
    padding-right: 30px;
  }
  .custom-btn-phone::before {
    font-size: 0.95rem;
  }
}

/* =========================================
   Cologne Districts (Veedel) Redesign v2
   ========================================= */

.veedel-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.district-card-v2 {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.district-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.2);
}

.district-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 100% 0%, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.district-header-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.district-icon-v2 {
  width: 45px;
  height: 45px;
  background: rgba(225, 29, 72, 0.1);
  color: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.district-card-v2 h4 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.veedel-list-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.veedel-tag-v2 {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: default;
}

.district-card-v2:hover .veedel-tag-v2 {
  background: rgba(225, 29, 72, 0.05);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .veedel-grid-v2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

