/**
 * CarConnect Premium Elegant Redesign
 * Komplett neues Design - Luxuriös, Modern, Hochwertig
 */

/* ============================================
   CSS VARIABLES - PREMIUM ELEGANT THEME
   ============================================ */
:root {
  /* Premium Blue Palette */
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #1E88E5;
  --primary-lighter: #42A5F5;

  /* Elegant Neutrals */
  --dark: #0A1628;
  --dark-soft: #1A2A44;
  --gray-900: #1E293B;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748B;
  --gray-500: #94A3B8;
  --gray-400: #CBD5E1;
  --gray-300: #E2E8F0;
  --gray-200: #F1F5F9;
  --gray-100: #F8FAFC;
  --white: #FFFFFF;

  /* Accent Colors */
  --gold: #D4AF37;
  --gold-light: #F4D58D;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  --gradient-dark: linear-gradient(180deg, #0A1628 0%, #1A2A44 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(21, 101, 192, 0.7) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* Shadows - Elegant & Soft */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(21, 101, 192, 0.3);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);

  /* Typography */
  --font-display: 'Ubuntu', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-accent: 'Lato', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-padding: 5%;

  /* Transitions */
  --ease-elegant: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
/* Reset Bootstrap gutter variable that may cause asymmetric padding */
:root {
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Prevent horizontal scroll on all pages */
html, body {
  -webkit-overflow-scrolling: touch;
}

/* Fix Bootstrap row negative margins causing horizontal scroll */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* MOBILE FIX: Prevent horizontal overflow - only on html/body */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--duration-fast) var(--ease-elegant);
}

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

/* ============================================
   HEADER - NAVIGATION (Clean, no Bootstrap)
   ============================================ */
.header {
  color: var(--gray-700);
  background: transparent;
  padding: 20px 20px; /* Symmetric horizontal padding on header itself */
  transition: all 0.4s ease-in-out;
  z-index: 997;
  width: 100%;
  box-sizing: border-box;
}

/* Fixed position styles - explicit to not rely on Bootstrap */
.header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .header-container {
  /* Flexbox layout - no Bootstrap */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

  /* Styling */
  background: rgba(240, 248, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease-in-out;
  box-sizing: border-box;

  /* Full width within padded header */
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

/* Scrolled State - White background, smaller */
.header.scrolled {
  padding: 10px 20px;
}

.header.scrolled .header-container {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 25px;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
  /* Allow logo to shrink on small screens */
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.header .logo img {
  max-height: 55px;
  margin-right: 14px;
  transition: all 0.4s ease-in-out;
  flex-shrink: 0; /* Image keeps its size, text can shrink */
}

.header.scrolled .logo img {
  max-height: 42px;
  margin-right: 10px;
}

.header .logo .sitename-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  transition: all 0.4s ease-in-out;
  min-width: 0;
  overflow: hidden;
}

.header .logo .sitename-main {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-display);
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header.scrolled .logo .sitename-main {
  font-size: 17px;
}

.header .logo .sitename-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  font-family: var(--font-display);
  transition: all 0.4s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header.scrolled .logo .sitename-sub {
  font-size: 11px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--white);
  background: var(--gradient-primary);
  font-size: 15px;
  padding: 12px 28px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
}

.header.scrolled .btn-getstarted {
  font-size: 14px;
  padding: 10px 22px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-left: auto;
    margin-right: 20px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--gray-700);
    padding: 12px 20px;
    font-size: 15px;
    font-family: var(--font-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 8px;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary);
    background: rgba(21, 101, 192, 0.1);
  }

  .navmenu li:hover > a {
    transform: translateY(-2px);
  }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none; /* Hidden on desktop by default */
  color: var(--dark);
  font-size: 28px;
  line-height: 0;
  margin-right: 15px;
  cursor: pointer;
  transition: color 0.3s;
  flex-shrink: 0; /* Prevent hamburger from shrinking */
}

/* Show on mobile only */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }
}

/* Mobile Navigation Menu */
.navmenu-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Mobile Menu Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* Use right: 0 instead of width: 100vw to avoid scrollbar issues */
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

/* Mobile Nav - Only show on smaller screens */
@media (max-width: 1199px) {
  .navmenu {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  /* Mobile Menu Logo */
  .navmenu-mobile .mobile-menu-logo {
    padding: 30px 25px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .navmenu-mobile .mobile-menu-logo img {
    max-height: 50px;
    width: auto;
  }

  .navmenu-mobile .mobile-menu-logo .sitename-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .navmenu-mobile .mobile-menu-logo .sitename-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-display);
  }

  .navmenu-mobile .mobile-menu-logo .sitename-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-display);
  }

  /* Mobile CTA Button */
  .navmenu-mobile .mobile-menu-cta {
    padding: 25px 25px 20px 25px;
  }

  .navmenu-mobile .mobile-menu-cta .btn-getstarted {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
  }

  .navmenu-mobile .mobile-menu-cta .btn-getstarted:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
  }

  /* Mobile Navigation Links */
  .navmenu-mobile ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex: 1;
  }

  .navmenu-mobile ul li {
    margin: 0;
  }

  .navmenu-mobile a,
  .navmenu-mobile a:focus {
    color: var(--gray-700);
    padding: 14px 25px;
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    border-left: 3px solid transparent;
  }

  .navmenu-mobile a:hover,
  .navmenu-mobile .active,
  .navmenu-mobile .active:focus {
    color: var(--primary);
    background: rgba(21, 101, 192, 0.05);
    border-left-color: var(--primary);
  }

  /* Mobile Menu Footer */
  .navmenu-mobile .mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
  }

  .navmenu-mobile .mobile-menu-footer .company-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .navmenu-mobile .mobile-menu-footer .opening-hours {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .navmenu-mobile .mobile-menu-footer .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
  }

  .navmenu-mobile .mobile-menu-footer .phone-link:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
  }

  .navmenu-mobile .mobile-menu-footer .phone-link i {
    font-size: 16px;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 1200px) {
  .navmenu-mobile {
    display: none;
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Active State - Menu Open */
.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .navmenu-mobile {
  left: 0;
}

.mobile-nav-active .mobile-nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle {
  color: var(--primary);
}

/* Header Responsive - Padding on header element for symmetric spacing */
@media (max-width: 1200px) {
  .header {
    padding: 10px 12px;
  }

  .header.scrolled {
    padding: 8px 12px;
  }

  .header .header-container {
    padding: 10px 15px;
  }

  .header .btn-getstarted {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  /* Hide CTA button on mobile - it's in the mobile menu */
  .header .btn-getstarted {
    display: none;
  }

  .header .header-container {
    overflow: hidden;
  }

  .header .logo {
    max-width: calc(100% - 50px);
  }

  .header .logo img {
    max-height: 50px;
  }

  .header.scrolled .logo img {
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 10px 10px;
  }

  .header.scrolled {
    padding: 8px 10px;
  }

  .header .header-container {
    padding: 8px 12px;
    overflow: hidden; /* Prevent content overflow on small screens */
  }

  .header .logo {
    /* Ensure logo doesn't overflow - leave room for hamburger */
    max-width: calc(100% - 50px);
  }

  .header .logo img {
    max-height: 45px;
    margin-right: 10px;
  }

  .header.scrolled .logo img {
    max-height: 38px;
    margin-right: 8px;
  }

  .header .logo .sitename-main {
    font-size: 18px;
  }

  .header.scrolled .logo .sitename-main {
    font-size: 16px;
  }

  .header .logo .sitename-sub {
    font-size: 11px;
  }

  .header.scrolled .logo .sitename-sub {
    font-size: 10px;
  }
}

/* Extra small screens (< 400px) */
@media (max-width: 400px) {
  .header {
    padding: 8px 8px;
  }

  .header.scrolled {
    padding: 6px 8px;
  }

  .header .header-container {
    padding: 6px 10px;
    border-radius: 40px;
    overflow: hidden;
  }

  .header .logo {
    max-width: calc(100% - 45px);
  }

  .mobile-nav-toggle {
    font-size: 24px;
    margin-right: 10px;
  }

  .header .logo img {
    max-height: 38px;
    margin-right: 8px;
  }

  .header.scrolled .logo img {
    max-height: 32px;
    margin-right: 6px;
  }

  .header .logo .sitename-main {
    font-size: 15px;
  }

  .header.scrolled .logo .sitename-main {
    font-size: 14px;
  }

  .header .logo .sitename-sub {
    font-size: 10px;
  }

  .header.scrolled .logo .sitename-sub {
    font-size: 9px;
  }
}

/* ============================================
   HERO SECTION - FULLSCREEN IMMERSIVE
   ============================================ */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-premium .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-premium .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-premium .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-premium .hero-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
  box-sizing: border-box;
}

/* Left Side - Text Content */
.hero-premium .hero-text {
  color: var(--white);
}

.hero-premium .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s var(--ease-elegant);
}

.hero-premium .hero-badge i {
  color: var(--gold);
}

.hero-premium .hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-elegant) 0.1s both;
}

.hero-premium .hero-title span {
  color: var(--primary-lighter);
}

.hero-premium .hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
  animation: fadeInUp 0.8s var(--ease-elegant) 0.2s both;
}

.hero-premium .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s var(--ease-elegant) 0.3s both;
}

.hero-premium .hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-premium .hero-feature i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

.hero-premium .hero-feature span {
  font-size: 15px;
  font-weight: 500;
}

.hero-premium .hero-cta-group {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s var(--ease-elegant) 0.4s both;
}

.hero-premium .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary-dark);
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.hero-premium .btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero-premium .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.hero-premium .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Right Side - Booking Card */
.hero-premium .hero-booking {
  animation: fadeInUp 0.8s var(--ease-elegant) 0.5s both;
}

.hero-premium .booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-premium .booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.hero-premium .booking-header {
  text-align: center;
  margin-bottom: 30px;
}

.hero-premium .booking-header i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
}

.hero-premium .booking-header h3,
.hero-premium .booking-header .booking-title {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.hero-premium .booking-header p {
  color: var(--gray-600);
  font-size: 14px;
}

.hero-premium .booking-form .form-group {
  margin-bottom: 20px;
}

.hero-premium .booking-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.hero-premium .booking-form label i {
  color: var(--primary);
  font-size: 14px;
}

.hero-premium .booking-form input,
.hero-premium .booking-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all var(--duration-fast) var(--ease-elegant);
  background: var(--gray-100);
}

.hero-premium .booking-form input:focus,
.hero-premium .booking-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.hero-premium .booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hero-premium .btn-booking {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  transition: all var(--duration-normal) var(--ease-elegant);
  position: relative;
  overflow: hidden;
}

.hero-premium .btn-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left var(--duration-slow) var(--ease-elegant);
}

.hero-premium .btn-booking:hover::before {
  left: 100%;
}

.hero-premium .btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(21, 101, 192, 0.4);
}

.hero-premium .booking-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gray-500);
  font-size: 13px;
}

.hero-premium .booking-trust i {
  color: var(--primary);
}

/* Mobile CTA Card (Only on Mobile) */
.hero-mobile-cta {
  animation: fadeInUp 0.8s var(--ease-elegant) 0.5s both;
  margin-bottom: 50px;
  grid-column: 1 / -1; /* Span full width of grid */
  width: 100%;
}

.hero-mobile-cta .mobile-cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-mobile-cta .mobile-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.hero-mobile-cta .mobile-cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hero-mobile-cta .mobile-cta-icon i {
  font-size: 32px;
  color: var(--primary);
}

.hero-mobile-cta .mobile-cta-card h3,
.hero-mobile-cta .mobile-cta-card .mobile-cta-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
  display: block;
}

.hero-mobile-cta .mobile-cta-card p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 25px;
}

.hero-mobile-cta .mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mobile-cta .btn-mobile-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-glow);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.hero-mobile-cta .btn-mobile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.4);
}

.hero-mobile-cta .btn-mobile-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--duration-normal) var(--ease-elegant);
}

.hero-mobile-cta .btn-mobile-secondary:hover {
  background: rgba(21, 101, 192, 0.05);
}

/* Desktop/Mobile Utility Classes */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-section {
  background: var(--gray-100);
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-section .trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-section .trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-section .trust-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.trust-section .trust-icon i {
  font-size: 24px;
  color: var(--primary);
}

.trust-section .trust-text h4,
.trust-section .trust-text strong {
  font-size: 18px;
  margin-bottom: 2px;
  display: block;
}

.trust-section .trust-text p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ============================================
   SERVICES SECTION - ELEGANT CARDS
   ============================================ */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.services-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0;
  text-align: left;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--duration-normal) var(--ease-elegant);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-elegant);
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(21, 101, 192, 0.25);
}

.service-card-inner {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
}

.service-card .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1) 0%, rgba(13, 71, 161, 0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-elegant);
}

.service-card .service-icon i {
  font-size: 28px;
  color: var(--primary);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color var(--duration-normal) var(--ease-elegant);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0;
  transition: color var(--duration-normal) var(--ease-elegant);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-elegant);
}

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

.service-card .service-link i {
  transition: transform var(--duration-fast) var(--ease-elegant);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ============================================
   SERVICE CARDS WITH IMAGES (Services Page)
   ============================================ */
.services-grid-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-image {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-elegant);
  position: relative;
}

.service-card-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-image.featured {
  border: 2px solid var(--primary);
}

.service-card-image .service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.service-card-image .service-image {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.service-card-image .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-elegant);
}

.service-card-image:hover .service-image img {
  transform: scale(1.08);
}

/* Overlay effect on hover */
.service-card-image .service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(21, 101, 192, 0.3) 100%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-elegant);
}

.service-card-image:hover .service-image::after {
  opacity: 1;
}

.service-card-image .service-card-content {
  padding: 28px;
}

.service-card-image .service-card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card-image .service-card-content > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.service-features-list li i {
  color: var(--primary);
  font-size: 14px;
}

.service-card-image .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-elegant);
}

.service-card-image .service-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* Additional Services Section */
.additional-services-section {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
}

.additional-services-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.additional-service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: all var(--duration-normal) var(--ease-elegant);
  border: 1px solid var(--gray-200);
}

.additional-service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.additional-service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  font-family: var(--font-display);
}

.additional-service-item .service-icon-small {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.additional-service-item .service-icon-small i {
  font-size: 26px;
  color: var(--white);
}

.additional-service-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.additional-service-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Service Cards with Images - Responsive */
@media (max-width: 1200px) {
  .services-grid-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-images {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card-image .service-image {
    height: 180px;
  }

  .service-card-image .service-card-content {
    padding: 24px;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .additional-service-item {
    padding: 24px;
  }

  .additional-service-item .service-number {
    font-size: 36px;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 576px) {
  .service-card-image .service-image {
    height: 160px;
  }

  .service-card-image .service-card-content {
    padding: 20px;
  }

  .service-card-image .service-card-content h3 {
    font-size: 18px;
  }

  .additional-service-item {
    padding: 20px;
  }

  .additional-service-item .service-icon-small {
    width: 48px;
    height: 48px;
  }

  .additional-service-item .service-icon-small i {
    font-size: 22px;
  }

  .additional-service-item h4 {
    font-size: 16px;
  }
}

/* ============================================
   ABOUT SECTION - SPLIT LAYOUT
   ============================================ */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
}

.about-section .about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-section .about-image {
  position: relative;
}

.about-section .about-image .main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-section .about-image .main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section .about-image .experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 30px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.about-section .experience-badge .years {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-section .experience-badge span {
  font-size: 14px;
  opacity: 0.9;
}

.about-section .about-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-section .about-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
}

.about-section .about-content p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-section .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-section .about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-section .about-feature i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-section .about-feature h4,
.about-section .about-feature strong {
  font-size: 16px;
  margin-bottom: 4px;
  display: block;
}

.about-section .about-feature p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.about-section .btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-glow);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.about-section .btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(21, 101, 192, 0.4);
}

/* ============================================
   CERTIFICATIONS SECTION - MEISTERBRIEF
   ============================================ */
.certifications-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.certifications-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cert-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.cert-image {
  text-align: center;
}

.cert-image img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  transition: transform var(--duration-normal) var(--ease-elegant);
}

.cert-image:hover img {
  transform: scale(1.05);
}

.cert-content .cert-label {
  display: inline-block;
  background: rgba(21, 101, 192, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cert-content h3 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
}

.cert-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 25px;
}

.cert-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
}

.cert-features li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

@media (max-width: 992px) {
  .cert-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
  }

  .cert-image img {
    max-width: 220px;
  }

  .cert-content {
    text-align: left;
  }

  .cert-content .cert-label {
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .cert-showcase {
    padding: 30px 20px;
    gap: 40px;
  }

  .cert-content h3 {
    font-size: 26px;
  }

  .cert-features li {
    font-size: 14px;
  }
}

/* ============================================
   TESTIMONIALS - ELEGANT SLIDER
   ============================================ */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonials-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.testimonials-section .section-header {
  color: var(--white);
}

.testimonials-section .section-header .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
}

.testimonial-card .quote-icon {
  font-size: 48px;
  color: var(--primary-light);
  opacity: 0.5;
  margin-bottom: 20px;
}

.testimonial-card .stars {
  margin-bottom: 25px;
}

.testimonial-card .stars i {
  color: var(--gold);
  font-size: 20px;
  margin: 0 2px;
}

.testimonial-card blockquote {
  font-size: 20px;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-card .author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-card .author-info h4,
.testimonial-card .author-info strong {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 4px;
  display: block;
}

.testimonial-card .author-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ============================================
   CTA SECTION - PREMIUM BANNER
   ============================================ */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-section .cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-section .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary-dark);
  padding: 18px 40px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.cta-section .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.cta-section .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 18px 40px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.cta-section .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ============================================
   FOOTER - ELEGANT DARK
   ============================================ */
.footer-premium {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-premium .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-premium .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-premium .footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-premium .footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-premium .footer-social {
  display: flex;
  gap: 12px;
}

.footer-premium .footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all var(--duration-fast) var(--ease-elegant);
}

.footer-premium .footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-premium .footer-links h4,
.footer-premium .footer-links .footer-title {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  display: block;
}

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

.footer-premium .footer-links li {
  margin-bottom: 12px;
}

.footer-premium .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all var(--duration-fast) var(--ease-elegant);
}

.footer-premium .footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-premium .footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 15px;
}

.footer-premium .footer-contact i {
  color: var(--primary-light);
  font-size: 18px;
  width: 20px;
}

.footer-premium .footer-hours {
  margin-top: 25px;
}

.footer-premium .footer-hours h4,
.footer-premium .footer-hours .footer-title,
.footer-premium .footer-contact .footer-title {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.footer-premium .footer-hours .hours-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.footer-premium .footer-hours .hours-item .day {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.footer-premium .footer-hours .hours-item .time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-premium .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}

.footer-premium .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-premium .footer-bottom > div {
  flex-shrink: 0;
  white-space: nowrap;
}

.footer-premium .footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-premium .footer-bottom a:hover {
  color: var(--primary-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-premium .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-premium .hero-booking {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  .nav-premium .nav-links {
    display: none;
  }

  .nav-premium .mobile-toggle {
    display: block;
  }

  .about-section .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-section .about-image .experience-badge {
    right: 20px;
    bottom: -20px;
  }

  .footer-premium .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-premium .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-premium .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-padding: 15px;
  }

  .hero-premium .hero-content {
    padding: 0 15px !important;
    padding-top: 120px !important;
  }

  .hero-premium .hero-title {
    font-size: 32px;
  }

  /* Hero Features - Besser zentriert auf Mobile */
  .hero-premium .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 0 10px;
  }

  .hero-premium .hero-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 110px;
  }

  .hero-premium .hero-feature i {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .hero-premium .hero-feature span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2px;
  }

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

  .hero-premium .btn-hero-primary,
  .hero-premium .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-premium .booking-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .hero-premium .booking-header h3 {
    font-size: 20px;
  }

  /* Service Cards - Text mittig auf Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: center;
  }

  .service-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-card .service-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .service-card .service-link {
    justify-content: center;
  }

  /* About Section - Experience Badge kleiner */
  .about-section .about-image .experience-badge {
    padding: 16px 22px;
    right: 10px;
    bottom: -15px;
  }

  .about-section .experience-badge .years {
    font-size: 32px;
  }

  .about-section .experience-badge span {
    font-size: 11px;
  }

  /* About Features - Besser zentriert auf Mobile */
  .about-section .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-section .about-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .about-section .about-feature i {
    width: 44px;
    height: 44px;
  }

  .about-section .about-feature div {
    text-align: center;
  }

  .about-section .about-feature h4 {
    font-size: 14px;
  }

  .about-section .about-feature p {
    font-size: 12px;
  }

  /* About Button mittig */
  .about-section .about-content {
    text-align: center;
  }

  .about-section .about-content .section-label {
    display: inline-flex;
  }

  .about-section .btn-about {
    margin: 0 auto;
  }

  .trust-section .trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
  }

  .trust-section .trust-item {
    flex-direction: column;
    text-align: center;
    background: transparent;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .trust-section .trust-icon {
    width: 56px;
    height: 56px;
  }

  /* Footer - Sauberes Mobile Layout */
  .footer-premium {
    padding: 50px 0 25px;
  }

  .footer-premium .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
  }

  /* Brand Section - Volle Breite oben */
  .footer-premium .footer-brand {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-premium .footer-brand img {
    height: 50px;
    margin-bottom: 15px;
  }

  .footer-premium .footer-brand p {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto 20px;
    line-height: 1.6;
  }

  .footer-premium .footer-social {
    justify-content: center;
    gap: 10px;
  }

  .footer-premium .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Links Sections - 2 Spalten nebeneinander (Leistungen + Unternehmen) */
  .footer-premium .footer-links {
    grid-row: 2;
    text-align: center;
    padding: 0 5px 20px;
  }

  /* Leistungen ist das 2. div (nach footer-brand) */
  .footer-premium .footer-grid > .footer-links:first-of-type {
    grid-column: 1 / 2;
  }

  /* Unternehmen ist das 3. div */
  .footer-premium .footer-grid > .footer-links:last-of-type {
    grid-column: 2 / 3;
  }

  .footer-premium .footer-links h4 {
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-premium .footer-links ul {
    padding: 0;
    margin: 0;
  }

  .footer-premium .footer-links li {
    margin-bottom: 8px;
  }

  .footer-premium .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
  }

  .footer-premium .footer-links a:hover {
    color: var(--primary-light);
    padding-left: 0;
  }

  /* Contact Section - Volle Breite unten */
  .footer-premium .footer-contact {
    grid-column: 1 / -1;
    grid-row: 3;
    text-align: center;
    padding-top: 28px;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-premium .footer-contact > h4:first-child {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-premium .footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-premium .footer-contact i {
    font-size: 14px;
    width: 16px;
  }

  /* Öffnungszeiten - Horizontal */
  .footer-premium .footer-hours {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
  }

  .footer-premium .footer-hours h4 {
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
  }

  .footer-premium .footer-hours .hours-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin: 0 12px 8px;
  }

  .footer-premium .footer-hours .hours-item .day {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
  }

  .footer-premium .footer-hours .hours-item .time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Footer Bottom - Kompakt */
  .footer-premium .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding-top: 25px;
    margin-top: 25px;
  }

  .footer-premium .footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-premium .footer-bottom a {
    font-size: 12px;
  }

  .services-section .section-container,
  .about-section .about-container,
  .testimonials-section .section-container,
  .cta-section .cta-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {
  .hero-premium .hero-content {
    padding: 0 12px !important;
    padding-top: 100px !important;
  }

  .hero-premium .booking-card {
    padding: 24px 16px;
  }

  .hero-premium .booking-form .form-row {
    grid-template-columns: 1fr;
  }

  .hero-premium .hero-title {
    font-size: 28px;
  }

  .hero-premium .hero-subtitle {
    font-size: 16px;
  }

  /* Hero Features - Kompakter aber lesbar */
  .hero-premium .hero-features {
    gap: 16px;
    padding: 0 5px;
  }

  .hero-premium .hero-feature {
    flex: 0 0 auto;
    min-width: 90px;
    max-width: 100px;
  }

  .hero-premium .hero-feature i {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hero-premium .hero-feature span {
    font-size: 13px;
    font-weight: 600;
  }

  /* About Features - 2x2 Grid auf kleineren Screens */
  .about-section .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-section .about-feature i {
    width: 38px;
    height: 38px;
  }

  .about-section .about-feature h4 {
    font-size: 13px;
  }

  .about-section .about-feature p {
    font-size: 11px;
  }

  /* Experience Badge noch kleiner */
  .about-section .about-image .experience-badge {
    padding: 14px 18px;
    right: 8px;
    bottom: -12px;
  }

  .about-section .experience-badge .years {
    font-size: 28px;
  }

  .about-section .experience-badge span {
    font-size: 10px;
  }

  .cta-section .cta-buttons {
    flex-direction: column;
  }

  .cta-section .btn-cta-primary,
  .cta-section .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 26px;
  }

  /* Footer noch kompakter */
  .footer-premium {
    padding: 40px 0 20px;
  }

  .footer-premium .footer-brand {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .footer-premium .footer-brand img {
    height: 45px;
  }

  .footer-premium .footer-brand p {
    font-size: 13px;
    max-width: 280px;
  }

  .footer-premium .footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-premium .footer-links a {
    font-size: 12px;
  }

  .footer-premium .footer-links li {
    margin-bottom: 6px;
  }

  .footer-premium .footer-contact {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-premium .footer-contact h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-premium .footer-contact p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-premium .footer-hours h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-premium .footer-hours .hours-item .day,
  .footer-premium .footer-hours .hours-item .time {
    font-size: 11px;
  }

  .footer-premium .footer-bottom p,
  .footer-premium .footer-bottom a {
    font-size: 11px;
  }

  .services-section .section-container,
  .about-section .about-container,
  .testimonials-section .section-container,
  .cta-section .cta-container,
  .footer-premium .footer-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 100px;
  z-index: 999;
  background: var(--gradient-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-top i {
  font-size: 22px;
  color: var(--white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* ============================================
   WHATSAPP WIDGET - PREMIUM DESIGN
   ============================================ */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floating.visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-floating button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.whatsapp-floating button::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-floating button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-floating button svg {
  width: 30px;
  height: 30px;
}

/* WhatsApp Chat Overlay - Premium Design */
.whatsapp-chat-overlay {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-width: calc(100vw - 40px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 1001;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
  flex-direction: column;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.whatsapp-header {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.whatsapp-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), transparent);
}

.whatsapp-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

.whatsapp-header h3,
.whatsapp-header .whatsapp-title {
  color: var(--white);
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  flex: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-header .close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.whatsapp-header .close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.whatsapp-body {
  padding: 20px;
  background: var(--gray-100);
}

/* WhatsApp Info Box - Premium */
.whatsapp-info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid var(--primary);
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.1);
}

.whatsapp-info-box i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.whatsapp-info-box p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.whatsapp-info-box p strong {
  color: var(--primary-dark);
}

/* WhatsApp Form - Premium */
#whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#whatsapp-form input,
#whatsapp-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--gray-800);
  box-sizing: border-box;
}

#whatsapp-form input::placeholder,
#whatsapp-form textarea::placeholder {
  color: var(--gray-500);
}

#whatsapp-form input:focus,
#whatsapp-form textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

#whatsapp-form textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
}

/* WhatsApp DSGVO Consent - Premium */
.whatsapp-consent {
  display: flex !important;
  gap: 10px !important;
  align-items: flex-start !important;
  margin-bottom: 0 !important;
  padding: 12px !important;
  background: var(--white) !important;
  border-radius: 10px !important;
  border: 2px solid var(--gray-300) !important;
}

.whatsapp-consent input[type="checkbox"] {
  margin: 2px 0 0 0 !important;
  padding: 0 !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  accent-color: #25d366;
}

.whatsapp-consent label {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--gray-600) !important;
  cursor: pointer !important;
  flex: 1 !important;
}

.whatsapp-consent label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.whatsapp-consent label a:hover {
  text-decoration: underline;
}

/* WhatsApp Footer - Premium */
.whatsapp-footer {
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.whatsapp-error-msg {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
  border-left: 4px solid #c62828;
}

.whatsapp-send-btn {
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-send-btn:active {
  transform: translateY(0);
}

.whatsapp-send-btn svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp Responsive */
@media (max-width: 480px) {
  .whatsapp-chat-overlay {
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
    bottom: 95px;
    max-height: calc(100vh - 120px);
  }

  .whatsapp-floating {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-floating button {
    width: 52px;
    height: 52px;
  }

  .whatsapp-body {
    padding: 16px;
  }

  .whatsapp-info-box {
    padding: 10px 12px;
  }

  .whatsapp-consent {
    padding: 10px !important;
  }

  .whatsapp-consent label {
    font-size: 0.75rem !important;
  }

  .scroll-top {
    right: 20px;
    bottom: 85px;
    width: 40px;
    height: 40px;
  }

  .scroll-top i {
    font-size: 20px;
  }
}

/* ============================================
   SUBPAGES - PAGE HEADER / HERO
   ============================================ */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: 100px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(30%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(21, 101, 192, 0.7) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out;
}

.page-hero-badge i {
  font-size: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px 0;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.page-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero-breadcrumb span {
  color: var(--white);
}

.page-hero-breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

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

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.service-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: stretch;
}

/* Main Content */
.service-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  align-self: start;
}

.service-main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.service-main-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-main-image .image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.service-main h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.service-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 40px;
}

.service-intro p {
  margin-bottom: 16px;
}

/* Capabilities Grid */
.service-capabilities {
  margin-bottom: 50px;
}

.service-capabilities h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.capability-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.capability-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.capability-card .cap-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.capability-card .cap-icon i {
  font-size: 24px;
  color: var(--white);
}

.capability-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.capability-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Process Timeline */
.service-process {
  margin-bottom: 50px;
}

.service-process h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.process-timeline {
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.process-step {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--gray-200);
}

.process-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.process-step .step-number {
  position: absolute;
  left: -40px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-step > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 15px;
}

.process-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-700);
}

.process-step ul li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}

/* Sidebar */
.service-sidebar {
  position: relative;
  width: 380px;
}

.service-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 380px;
}

.service-sidebar-inner.is-sticky {
  position: fixed;
  top: 120px;
}

.service-sidebar-inner.is-stuck-bottom {
  position: absolute;
  bottom: 0;
  top: auto !important;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

/* Service Overview Card */
.service-overview-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.service-overview-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.service-overview-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-overview-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-overview-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  display: block;
}

/* Quick Info Card */
.quick-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.quick-info-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-300);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  font-size: 14px;
  color: var(--gray-600);
}

.info-row .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* Contact Action Card */
.contact-action-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.contact-action-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-action-card .contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.contact-btn i {
  font-size: 18px;
}

.btn-book-now {
  display: block;
  background: var(--white);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-book-now:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Related Services */
.related-services {
  padding: 80px 0;
  background: var(--white);
}

.related-services .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.related-services .section-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.related-services .section-header p {
  font-size: 16px;
  color: var(--gray-600);
}

.related-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.related-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover img {
  transform: scale(1.08);
}

.related-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.related-card-overlay h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.related-card-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.related-card-overlay .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.related-card:hover .card-link {
  gap: 12px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content-section {
  padding: 80px 0;
  background: var(--white);
}

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

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-intro-text p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-intro-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-intro-image .experience-badge .years {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-intro-image .experience-badge span:last-child {
  font-size: 14px;
  opacity: 0.9;
}

/* Values Grid */
.values-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card .value-icon i {
  font-size: 30px;
  color: var(--white);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   STATS SECTION (About Page)
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: var(--gradient-dark);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--duration-normal) var(--ease-elegant);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-box .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box .stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

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

@media (max-width: 576px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-box {
    padding: 24px 16px;
  }

  .stat-box .stat-number {
    font-size: 36px;
  }

  .stat-box .stat-label {
    font-size: 12px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail .icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon i {
  font-size: 22px;
  color: var(--white);
}

.contact-detail .info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-detail .info p,
.contact-detail .info a {
  font-size: 15px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail .info a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--gray-800);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Map Section */
.map-section {
  background: var(--white);
  padding: 80px 0;
}

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

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Google Maps Consent */
.maps-consent-box {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.maps-consent-box i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.maps-consent-box h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.maps-consent-box p {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.maps-consent-box .btn-consent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.maps-consent-box .btn-consent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   QUOTE / BOOKING PAGE
   ============================================ */
.quote-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.quote-form-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}

.quote-form-card > p {
  text-align: center;
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   CONTACT PAGE - COMPLETE STYLES
   ============================================ */
.contact-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-elegant);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.contact-info-card .info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-info-card .info-icon i {
  font-size: 24px;
  color: var(--white);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-info-card .info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-card .info-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* Contact Grid (Form + Map) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-form-wrapper > p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Form Styles */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form .form-group label i {
  color: var(--primary);
  font-size: 16px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--gray-800);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Form Status Messages */
.form-status {
  margin-bottom: 20px;
}

.form-status .loading {
  display: none;
  color: var(--primary);
  font-weight: 500;
  padding: 12px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-status .error-message {
  display: none;
  color: #dc2626;
  font-weight: 500;
  padding: 12px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-sm);
}

.form-status .sent-message {
  display: none;
  color: #16a34a;
  font-weight: 500;
  padding: 12px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: var(--radius-sm);
}

.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-form .form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.contact-form .form-trust i {
  color: var(--primary);
}

/* Contact Map Wrapper */
.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.map-container {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  width: 100%;
  position: relative;
}

.map-consent-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.map-consent-overlay i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.map-consent-overlay h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.map-consent-overlay .map-address {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.map-consent-overlay .map-privacy-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
  padding: 10px 16px;
  background: rgba(21, 101, 192, 0.08);
  border-radius: var(--radius-sm);
}

.map-consent-overlay .map-privacy-notice i {
  font-size: 16px;
  margin-bottom: 0;
}

.map-consent-overlay .btn-load-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.map-consent-overlay .btn-load-map:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-consent-overlay .map-external-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}

.map-consent-overlay .map-external-link:hover {
  text-decoration: underline;
}

#contact-map-iframe-container {
  width: 100%;
  height: 100%;
}

#contact-map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Details Box */
.contact-details-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-details-box h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-details-box .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-details-box .social-links a {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-details-box .social-links a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}

/* ============================================
   QUOTE PAGE - COMPLETE STYLES
   ============================================ */
.quote-section {
  padding: 80px 0;
  background: var(--gray-100);
}

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

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

/* Quote Info Side */
.quote-info {
  position: sticky;
  top: 120px;
}

.quote-info-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.quote-info-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.quote-info-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.quote-info-content > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Quote Features */
.quote-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.quote-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.quote-feature .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-feature .feature-icon i {
  font-size: 20px;
  color: var(--white);
}

.quote-feature .feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.quote-feature .feature-text p {
  font-size: 14px;
  color: var(--gray-600);
}

/* Quote Contact Cards */
.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.quote-contact .contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.quote-contact .contact-card:hover {
  background: rgba(21, 101, 192, 0.08);
}

.quote-contact .contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.quote-contact .contact-icon i {
  font-size: 18px;
  color: var(--primary);
}

.quote-contact .contact-details h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.quote-contact .contact-details a {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quote-contact .contact-details a:hover {
  color: var(--primary);
}

/* Trust Badges in Quote Info */
.quote-info .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.quote-info .trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--gray-50);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}

.quote-info .trust-badge i {
  color: var(--gold);
  font-size: 14px;
}

/* Quote Form Side */
.quote-form-wrapper {
  width: 100%;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.quote-form-card .form-header {
  text-align: center;
  margin-bottom: 30px;
}

.quote-form-card .form-header i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.quote-form-card .form-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.quote-form-card .form-header p {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 400px;
  margin: 0 auto;
}

/* Quote Form Styles */
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.quote-form .form-row-2 {
  grid-template-columns: 1fr 1fr;
}

.quote-form .form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.quote-form .form-group {
  display: flex;
  flex-direction: column;
}

.quote-form .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.quote-form .form-group label i {
  color: var(--primary);
  font-size: 15px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--gray-800);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--gray-400);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.quote-form select:disabled {
  background-color: var(--gray-100);
  cursor: not-allowed;
  opacity: 0.7;
}

/* Form Divider */
.form-divider {
  display: flex;
  align-items: center;
  margin: 28px 0 20px;
}

.form-divider span {
  padding: 6px 16px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.form-divider::before {
  margin-right: 16px;
}

.form-divider::after {
  margin-left: 16px;
}

/* Form Messages */
.form-messages {
  margin-bottom: 20px;
}

.form-messages .loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 500;
  padding: 14px;
  background: rgba(21, 101, 192, 0.1);
  border-radius: var(--radius-sm);
}

.form-messages .error-message {
  color: #dc2626;
  font-weight: 500;
  padding: 14px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-sm);
}

.form-messages .sent-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #16a34a;
  font-weight: 500;
  padding: 14px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: var(--radius-sm);
}

.quote-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.quote-form .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.quote-form .form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.quote-form .form-privacy i {
  color: var(--primary);
}

/* Trust Section Dark (Quote Page) */
.trust-section.trust-section-dark {
  padding: 60px 0;
  background: var(--gradient-dark);
  border-bottom: none;
}

.trust-section-dark .trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.trust-section-dark .trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--duration-normal) var(--ease-elegant);
  min-height: 100px;
  height: 100%;
}

.trust-section-dark .trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.trust-section-dark .trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none !important;
}

.trust-section-dark .trust-icon i {
  font-size: 24px;
  color: var(--gold-light) !important;
}

.trust-section-dark .trust-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-section-dark .trust-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Quote Page Responsive */
@media (max-width: 992px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-info {
    position: static;
  }

  .quote-form .form-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .trust-section-dark .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .quote-section {
    padding: 60px 0;
  }
  
  .trust-section-dark .trust-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .trust-section-dark .trust-item {
    padding: 20px;
  }

  .quote-info-content {
    padding: 24px;
  }

  .quote-info-content h2 {
    font-size: 22px;
  }

  .quote-form-card {
    padding: 24px;
  }

  .quote-form-card .form-header i {
    font-size: 36px;
  }

  .quote-form-card .form-header h3 {
    font-size: 20px;
  }

  .quote-form .form-row-2,
  .quote-form .form-row-3 {
    grid-template-columns: 1fr;
  }

  .trust-section-dark {
    padding: 40px 0;
  }

  .trust-section-dark .trust-icon {
    width: 48px;
    height: 48px;
  }

  .trust-section-dark .trust-icon i {
    font-size: 20px;
  }

  .trust-section-dark .trust-text h4 {
    font-size: 16px;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Impressum)
   ============================================ */
.legal-section,
.privacy-section,
.terms-section,
.impressum-section {
  padding: 80px 0;
  background: var(--white);
}

.legal-container,
.privacy-section > .section-container,
.terms-section > .section-container,
.impressum-section > .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-content,
.privacy-section .privacy-content,
.terms-section .terms-content,
.impressum-section .impressum-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 30px 0 12px;
}

.legal-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: var(--dark);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  padding: 40px 20px;
}

.error-content {
  text-align: center;
  max-width: 600px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.error-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SUBPAGES RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .service-detail-container {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    order: 2;
  }

  .service-sidebar {
    width: 100%;
  }

  .service-sidebar-inner {
    position: static !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
  }

  .service-sidebar-inner.is-sticky,
  .service-sidebar-inner.is-stuck-bottom {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
  }

  .service-main {
    order: 1;
  }
}

@media (max-width: 991px) {
  .service-sidebar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    padding-top: 80px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .service-main {
    padding: 24px;
  }

  .service-sidebar-inner {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form-card {
    padding: 30px 20px;
  }

  .legal-content,
  .privacy-section .privacy-content,
  .terms-section .terms-content,
  .impressum-section .impressum-wrapper {
    padding: 30px 24px;
  }

  .legal-section,
  .privacy-section,
  .terms-section,
  .impressum-section {
    padding: 60px 0;
  }

  .legal-container,
  .privacy-section > .section-container,
  .terms-section > .section-container,
  .impressum-section > .section-container {
    padding: 0 20px;
  }

  .legal-content h1,
  .privacy-section h1,
  .terms-section h1,
  .impressum-section h1 {
    font-size: 26px;
  }

  .legal-content h2,
  .privacy-section h2,
  .terms-section h2,
  .impressum-section h2 {
    font-size: 20px;
    margin: 30px 0 14px;
  }

  .legal-content h3,
  .privacy-section h3,
  .terms-section h3,
  .impressum-section h3 {
    font-size: 16px;
  }

  .legal-content p,
  .legal-content li,
  .privacy-section p,
  .privacy-section li,
  .terms-section p,
  .terms-section li,
  .impressum-section p,
  .impressum-section li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  /* Legal Pages - Mehr Padding auf kleinen Screens */
  .legal-section,
  .privacy-section,
  .terms-section,
  .impressum-section {
    padding: 50px 0;
  }

  .legal-container,
  .privacy-section > .section-container,
  .terms-section > .section-container,
  .impressum-section > .section-container {
    padding: 0 16px;
  }

  .legal-content,
  .privacy-section .privacy-content,
  .terms-section .terms-content,
  .impressum-section .impressum-wrapper {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .legal-content h1,
  .privacy-section h1,
  .terms-section h1,
  .impressum-section h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .legal-content h2,
  .privacy-section h2,
  .terms-section h2,
  .impressum-section h2 {
    font-size: 18px;
    margin: 25px 0 12px;
  }

  .legal-content h3,
  .privacy-section h3,
  .terms-section h3,
  .impressum-section h3 {
    font-size: 15px;
    margin: 20px 0 10px;
  }

  .legal-content p,
  .legal-content li,
  .privacy-section p,
  .privacy-section li,
  .terms-section p,
  .terms-section li,
  .impressum-section p,
  .impressum-section li {
    font-size: 14px;
    line-height: 1.7;
  }

  .legal-content ul,
  .legal-content ol,
  .privacy-section ul,
  .privacy-section ol,
  .terms-section ul,
  .terms-section ol,
  .impressum-section ul,
  .impressum-section ol {
    padding-left: 18px;
  }

  .service-detail-section {
    padding: 40px 0;
  }

  .process-timeline {
    padding-left: 30px;
  }

  .process-step .step-number {
    left: -30px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .error-actions {
    flex-direction: column;
  }
}

/* ============================================
   STADTTEIL-SEITEN - SEO OPTIMIERTE KOMPONENTEN
   ============================================ */

/* Answer Box - KI-optimierte Zusammenfassung */
.answer-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  margin: 30px auto 50px;
  max-width: 900px;
  width: calc(100% - 40px);
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.answer-box::before {
  content: '\2713';
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 100px;
  opacity: 0.08;
  font-weight: 700;
}

.answer-box h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.answer-box h2 i {
  color: var(--gold-light);
}

.answer-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  margin: 0;
}

.answer-box .answer-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.answer-box .highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
}

.answer-box .highlight-item i {
  color: var(--gold-light);
}

/* Directions Section - Anfahrt */
.directions-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.directions-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.directions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.directions-info {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.directions-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.directions-info .directions-subtitle {
  color: var(--gray-600);
  margin-bottom: 30px;
}

.directions-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.directions-stat:last-child {
  border-bottom: none;
}

.directions-stat-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.directions-stat-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.directions-stat-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

.directions-stat-content strong {
  color: var(--primary);
}

.directions-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.directions-cta .btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: all 0.3s ease;
}

.directions-cta .btn-directions:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

.directions-cta .btn-directions-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.directions-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

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

/* DSGVO-konformer Map Placeholder (2-Klick) */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-lg);
}

.map-placeholder-content {
  padding: 40px 20px;
}

.map-placeholder-content i.bi-geo-alt-fill {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.map-placeholder-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.map-placeholder-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 350px;
  line-height: 1.5;
}

.map-placeholder-content p a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-load-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.btn-load-map:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.map-external-link {
  display: block;
  color: var(--gray-600);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-external-link:hover {
  color: var(--primary);
}

.map-external-link i {
  margin-right: 5px;
}

/* FAQ Section - mit Akkordeon */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.faq-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-question {
  background: var(--primary);
  color: var(--white);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 25px;
}

.faq-answer p {
  color: var(--gray-700);
  line-height: 1.8;
  margin: 0;
}

/* Local Stats Badge - im Hero */
.local-stats-badge {
  display: inline-flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  margin-top: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.local-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
}

.local-stat i {
  color: var(--gold);
  font-size: 1.1rem;
}

.local-stat strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Districts Grid - Einzugsgebiet */
.districts-hero {
  background: var(--gradient-dark);
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.districts-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.districts-hero .section-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.districts-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.districts-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.districts-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.districts-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.district-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.district-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.district-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.district-card:hover::before {
  width: 8px;
}

.district-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--white) 100%);
}

.district-card.featured::before {
  background: var(--gold);
}

.district-card.featured .district-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.district-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.district-card .distance {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.district-card .distance i {
  font-size: 1rem;
}

.district-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.district-card .btn-district {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.district-card .btn-district:hover {
  background: var(--primary-dark);
  gap: 15px;
}

.district-card .btn-district i {
  transition: transform 0.3s ease;
}

.district-card .btn-district:hover i {
  transform: translateX(3px);
}

/* Other Districts List */
.other-districts {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.other-districts h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.other-districts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.other-districts-list span {
  background: var(--gray-100);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  color: var(--gray-700);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.other-districts-list span:hover {
  background: var(--primary);
  color: var(--white);
}

/* Districts Map Section */
.districts-map-section {
  padding: 0 0 80px;
  background: var(--gray-100);
}

.districts-map-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.districts-map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Mobile Responsive für Stadtteil-Komponenten */
@media (max-width: 991px) {
  .answer-box {
    padding: 25px 30px;
    margin: 20px 0 30px;
  }

  .answer-box h2 {
    font-size: 1.15rem;
  }

  .answer-box p {
    font-size: 1rem;
  }

  .answer-box .answer-highlights {
    flex-direction: column;
    gap: 10px;
  }

  .directions-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .directions-info {
    padding: 30px;
  }

  .directions-info h2 {
    font-size: 1.5rem;
  }

  .directions-map {
    min-height: 300px;
  }

  .directions-map iframe {
    min-height: 300px;
  }

  .directions-cta {
    flex-direction: column;
  }

  .directions-cta .btn-directions {
    width: 100%;
    justify-content: center;
  }

  .local-stats-badge {
    flex-direction: column;
    gap: 12px;
    padding: 15px 25px;
  }

  .districts-hero h1 {
    font-size: 2rem;
  }

  .districts-hero p {
    font-size: 1rem;
  }

  .districts-grid {
    grid-template-columns: 1fr;
  }

  .district-card {
    padding: 25px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  .answer-box {
    padding: 20px;
  }

  .answer-box h2 {
    font-size: 1.05rem;
  }

  .directions-section {
    padding: 60px 0;
  }

  .directions-info {
    padding: 20px;
  }

  .directions-stat {
    padding: 15px 0;
  }

  .directions-stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .faq-section {
    padding: 60px 0;
  }

  .districts-hero {
    padding: 120px 0 80px;
  }

  .districts-section {
    padding: 60px 0;
  }
}
