/* ==========================================================================
   TAXI 45 OSNABRÜCK - 100% MOBILE RESPONSIVE & OPTIMIZED STYLESHEET
   ========================================================================== */

:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: #fef3c7;
  --primary-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --dark-elevated: #334155;
  
  --light: #f8fafc;
  --light-surface: #ffffff;
  --light-border: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd58;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.08);

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px; /* Space for mobile sticky action bar */
  width: 100%;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* Section scroll margins for sticky header */
section[id], main[id] {
  scroll-margin-top: 85px;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Typography Utilities */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: #92400e;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.section-title {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-subtitle {
    margin-bottom: 48px;
  }
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #000000;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
    background: linear-gradient(135deg, #fcd34d 0%, #eab308 100%);
  }
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (hover: hover) {
  .btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  }
}

.btn-whatsapp:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

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

@media (hover: hover) {
  .btn-outline:hover {
    background: var(--dark);
    color: #ffffff;
    transform: translateY(-2px);
  }
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 1.05rem;
}

/* Pulsing Badge */
.pulse-icon {
  animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

@media (min-width: 1120px) {
  .header-inner {
    height: 78px;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 38px;
  width: auto;
  max-width: 165px;
}

@media (min-width: 768px) {
  .brand-logo img {
    height: 42px;
    max-width: 175px;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 600;
  font-size: clamp(0.825rem, 0.9vw, 0.925rem);
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.lang-switch {
  background: #f1f5f9;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-switch:hover {
  background: #e2e8f0;
}

.header-call-btn {
  display: none;
  white-space: nowrap;
}

.mobile-toggle {
  background: #f8fafc;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  color: var(--dark);
  cursor: pointer;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: #e2e8f0;
}

@media (min-width: 1120px) {
  .nav-menu { display: flex; }
  .header-call-btn { display: inline-flex; }
  .mobile-toggle { display: none; }
}

@media (max-width: 1119px) {
  .nav-menu { display: none !important; }
  .header-call-btn { display: none !important; }
  .mobile-toggle { display: flex !important; }
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 3px solid var(--primary);
  padding: 20px 20px 28px 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  animation: slideDown 0.25s ease forwards;
}

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

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-border);
  color: var(--dark);
}

.mobile-drawer a.mobile-nav-link:hover {
  color: var(--primary-hover);
  padding-left: 6px;
}

.mobile-drawer .btn {
  margin-top: 6px;
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  padding: 36px 0 60px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 50px 0 75px 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  background: linear-gradient(120deg, #b45309, #d97706, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: #475569;
  margin-bottom: 26px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
}

@media (min-width: 540px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-actions .btn {
    width: auto;
  }
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 540px) {
  .hero-actions .btn {
    width: auto;
  }
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 768px) {
  .trust-pills {
    gap: 10px;
  }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
}

@media (min-width: 768px) {
  .trust-pill {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

.hero-media {
  position: relative;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid #ffffff;
  background: #0f172a;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 540px) {
  .hero-float-badge {
    right: auto;
    bottom: 16px;
    left: 16px;
    padding: 12px 18px;
  }
}

.hero-float-badge .badge-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.hero-float-badge h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0;
}

.hero-float-badge p {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin: 0;
}

/* ==========================================================================
   QUICK BOOKING & FARE ESTIMATOR WIDGET
   ========================================================================== */
.booking-widget-section {
  margin-top: -24px;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .booking-widget-section {
    margin-top: -40px;
    margin-bottom: 70px;
  }
}

.booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px 16px;
  border: 1px solid var(--light-border);
}

@media (min-width: 768px) {
  .booking-card {
    padding: 32px 28px;
  }
}

.booking-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light-border);
}

@media (min-width: 768px) {
  .booking-card-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
}

.booking-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-badge {
  display: inline-block;
  align-self: flex-start;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid #a7f3d0;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

@media (min-width: 1100px) {
  .booking-form-grid {
    grid-template-columns: 2fr 2fr 1.2fr 1.5fr 1.4fr;
    align-items: flex-end;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.fare-result-box {
  background: #fffbeb;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin-top: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid #fde68a;
  animation: fadeIn 0.25s ease forwards;
}

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

.fare-result-box.active {
  display: flex;
}

@media (min-width: 768px) {
  .fare-result-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.fare-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fare-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: #b45309;
}

.fare-details {
  font-size: 0.85rem;
  color: #78350f;
  line-height: 1.5;
}

.fare-action-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

@media (min-width: 540px) {
  .fare-action-btns {
    flex-direction: row;
    width: auto;
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 40px 0 70px 0;
}

@media (min-width: 768px) {
  .services-section {
    padding: 60px 0 90px 0;
  }
}

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

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 30px 24px;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: #fde68a;
  }
  .service-card:hover::before {
    background: var(--primary-gradient);
  }
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.service-features li svg {
  color: var(--whatsapp);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   FEATURE BANNER: KRANKENFAHRTEN & AIRPORT
   ========================================================================== */
.feature-banner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 40px 0;
  border: 1px solid var(--light-border);
}

@media (min-width: 768px) {
  .feature-banner {
    margin: 60px 0;
  }
}

.feature-banner-grid {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .feature-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.feature-banner-content {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .feature-banner-content {
    padding: 44px 36px;
  }
}

.feature-banner-content h3 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}

.feature-banner-image {
  position: relative;
  min-height: 220px;
  max-height: 380px;
  overflow: hidden;
}

.feature-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   FLEET SECTION (UNSERE FAHRZEUGE)
   ========================================================================== */
.fleet-section {
  padding: 50px 0 70px 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  .fleet-section {
    padding: 70px 0 90px 0;
  }
}

.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-btn {
  background: #f1f5f9;
  border: 1px solid var(--light-border);
  padding: 9px 18px;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

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

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

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #0f172a;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.04);
  }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 65%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #ffffff;
}

.gallery-overlay h4 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.fleet-specs-card {
  margin-top: 32px;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  border: 1px solid var(--light-border);
}

@media (min-width: 768px) {
  .fleet-specs-card {
    padding: 32px;
  }
}

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

@media (min-width: 768px) {
  .specs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.spec-box {
  background: #ffffff;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--light-border);
}

.spec-icon {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.spec-title {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
}

@media (min-width: 768px) {
  .spec-value {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US & VALUES
   ========================================================================== */
.why-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

@media (min-width: 768px) {
  .why-section {
    padding: 70px 0;
  }
}

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

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

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.value-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  text-align: center;
  transition: var(--transition);
}

@media (hover: hover) {
  .value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px auto;
  border-radius: var(--radius-full);
  background: #fffbeb;
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 2px dashed #fcd34d;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SERVICE AREA (EINSATZGEBIET)
   ========================================================================== */
.area-section {
  padding: 50px 0;
  background: var(--dark);
  color: #ffffff;
}

@media (min-width: 768px) {
  .area-section {
    padding: 70px 0;
  }
}

.area-section .section-title {
  color: #ffffff;
}

.area-section .section-subtitle {
  color: #94a3b8;
}

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

@media (min-width: 768px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.area-card {
  background: var(--dark-surface);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  border: 1px solid var(--dark-elevated);
}

.area-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--primary);
  color: #000000;
  border-color: var(--primary);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 50px 0 70px 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 70px 0 90px 0;
  }
}

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

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-border);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: #fde68a;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 18px 22px;
    font-size: 1.05rem;
  }
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 18px 18px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  display: none;
}

@media (min-width: 768px) {
  .faq-answer {
    padding: 0 22px 20px 22px;
    font-size: 0.95rem;
  }
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   CONTACT & RESERVATION SECTION
   ========================================================================== */
.contact-section {
  padding: 50px 0 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 70px 0 90px 0;
  }
}

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

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #ffffff;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 22px 20px;
    gap: 16px;
  }
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 3px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.contact-form-panel {
  background: #ffffff;
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-border);
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 34px 28px;
  }
}

.contact-form-panel h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.875rem;
}

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

@media (min-width: 640px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 50px 0 24px 0;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
  }
}

.footer-brand p {
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--dark-elevated);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

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

/* ==========================================================================
   MOBILE FLOATING ACTION BAR
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)) 14px;
  display: flex;
  gap: 10px;
  z-index: 950;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ==========================================================================
   MODALS (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.2s ease forwards;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.modal-close {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  background: #e2e8f0;
  color: var(--dark);
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #334155;
}

.modal-body h4 {
  color: var(--dark);
  margin: 14px 0 6px 0;
  font-size: 1rem;
}
