/* ===================================
   Scherag & Lahmik - Verkehrsseminare
   CSS Stylesheet (Tailwind-Style)
   =================================== */

/* Lokale Fonts - Poppins */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/poppins-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-700.woff2') format('woff2');
}

/* Lokale Fonts - Inter */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}

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

:root {
  /* Brand Colors */
  --taxi-yellow: #F0C300;
  --taxi-yellow-dark: #D4AC00;
  --truck-blue: #1B4F72;
  --truck-blue-light: #2874A6;
  --black: #1A1A1A;
  --grey: #F5F5F5;
  --white: #FFFFFF;
  
  /* Grays */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Font Families */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul {
  list-style: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-900 { background-color: var(--gray-900); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.logo-text span {
  color: var(--taxi-yellow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--taxi-yellow);
  transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--black);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--gray-300);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: var(--taxi-yellow);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 4rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--taxi-yellow);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  /* Kompaktes Hero für Unterseiten auf Mobile */
  .hero-compact {
    min-height: 45vh;
  }
  
  .hero-compact .hero-content {
    padding: 2rem 0;
  }
  
  .hero-compact .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-compact .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--taxi-yellow);
  color: var(--black);
  border-color: var(--taxi-yellow);
}

.btn-primary:hover {
  background-color: var(--taxi-yellow-dark);
  border-color: var(--taxi-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 195, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ===================================
   FEATURE CARDS (Homepage)
   =================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.feature-card {
  background-color: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon.yellow {
  background-color: rgba(240, 195, 0, 0.2);
  color: var(--taxi-yellow-dark);
}

.feature-icon.blue {
  background-color: rgba(27, 79, 114, 0.2);
  color: var(--truck-blue);
}

.feature-icon.green {
  background-color: rgba(34, 197, 94, 0.15);
  color: #16A34A;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

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

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background-color: var(--gray-900);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .cta-inner {
    text-align: center;
    flex-direction: column;
  }
}

/* ===================================
   COURSE CARDS
   =================================== */

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.course-card {
  background-color: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card-header {
  padding: 2rem;
  color: var(--white);
}

.course-card-header.taxi {
  background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
  color: var(--black);
}

.course-card-header.truck {
  background: linear-gradient(135deg, var(--truck-blue), var(--truck-blue-light));
}

.course-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.course-card-header.taxi .course-badge {
  background-color: rgba(0, 0, 0, 0.15);
}

.course-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.course-subtitle {
  opacity: 0.9;
  font-size: 0.95rem;
}

.course-card-body {
  padding: 2rem;
}

.course-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.course-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.course-price-suffix {
  color: var(--gray-500);
  margin-left: 0.25rem;
}

.course-features {
  margin-bottom: 2rem;
}

.course-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.course-feature:last-child {
  border-bottom: none;
}

.course-feature svg {
  width: 20px;
  height: 20px;
  color: #22C55E;
  flex-shrink: 0;
  margin-top: 2px;
}

.course-feature span {
  color: var(--gray-700);
}

.course-card .btn {
  width: 100%;
}

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

/* ===================================
   SCHEDULE/DATES SECTION
   =================================== */

.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  border: 2px solid var(--gray-200);
  background-color: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--gray-400);
}

.tab-btn.active.taxi {
  background-color: var(--taxi-yellow);
  border-color: var(--taxi-yellow);
  color: var(--black);
}

.tab-btn.active.truck {
  background-color: var(--truck-blue);
  border-color: var(--truck-blue);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.date-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.date-block {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
}

.date-block-header {
  padding: 1.25rem 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.date-block-header.taxi {
  background: linear-gradient(135deg, var(--taxi-yellow), var(--taxi-yellow-dark));
  color: var(--black);
}

.date-block-header.truck {
  background: linear-gradient(135deg, var(--truck-blue), var(--truck-blue-light));
}

.date-block-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.date-block-time {
  font-size: 0.875rem;
  opacity: 0.8;
}

.date-block-body {
  padding: 1rem 1.5rem;
}

.date-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.date-weekday {
  color: var(--gray-600);
  font-weight: 500;
}

.date-date {
  font-weight: 600;
  color: var(--gray-900);
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-image-wrapper {
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--gray-200);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--truck-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-divider {
  width: 80px;
  height: 4px;
  background-color: var(--taxi-yellow);
  margin-bottom: 1.5rem;
}

.team-desc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-desc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.6;
}

.team-desc-item span {
  color: var(--gray-400);
}

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

/* ===================================
   CURRICULUM SECTION
   =================================== */

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.curriculum-card {
  background-color: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s ease;
}

.curriculum-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.curriculum-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: var(--truck-blue);
}

.curriculum-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-700);
}

.curriculum-item .bullet {
  color: var(--taxi-yellow);
  font-weight: 700;
}

.tip-box {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem;
  background-color: #FFF8E1;
  border-radius: 1rem;
  border: 1px solid #FFE082;
}

.tip-box h4 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #B7791F;
}

.tip-box p {
  color: #713F12;
  line-height: 1.7;
}

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

/* ===================================
   CONTACT FORM
   =================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--truck-blue);
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-info-text span {
  color: var(--gray-600);
}

/* Kompakte Google Map im Kontaktbereich */
.contact-map-wrapper {
  margin-top: 1.5rem;
  background: var(--gray-50);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-map-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--truck-blue), var(--truck-blue-light));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-map-header svg {
  flex-shrink: 0;
}

.contact-map {
  padding: 0;
}

.contact-map iframe {
  display: block;
  border-radius: 0;
}

.contact-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--taxi-yellow);
  color: var(--gray-900);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.contact-map-btn:hover {
  background: var(--taxi-yellow-dark);
}

.contact-form {
  background-color: var(--gray-50);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--truck-blue);
  box-shadow: 0 0 0 3px rgba(27, 79, 114, 0.1);
}

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

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  background-color: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.radio-label:hover {
  border-color: var(--gray-400);
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--truck-blue);
}

.radio-label.selected {
  border-color: var(--truck-blue);
  background-color: rgba(27, 79, 114, 0.05);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--truck-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--truck-blue);
  text-decoration: underline;
}

.form-submit {
  margin-top: 2rem;
}

.form-submit .btn {
  width: 100%;
}

/* Success State */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background-color: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #22C55E;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--gray-600);
  line-height: 1.6;
}

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

/* ===================================
   FOOTER
   =================================== */

.footer {
  background-color: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 350px;
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--taxi-yellow);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-400);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.9rem;
}

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

.footer-legal-links a {
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   EINZELUNTERRICHT SECTION
   =================================== */

.private-section {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2.5rem;
  background-color: var(--gray-50);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
}

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

.private-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(27, 79, 114, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--truck-blue);
}

.private-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.private-section p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.private-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.private-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border-radius: 9999px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

.private-feature svg {
  color: var(--truck-blue);
  width: 18px;
  height: 18px;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location-box {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.location-icon {
  width: 56px;
  height: 56px;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--truck-blue);
  flex-shrink: 0;
}

.location-text h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.location-text p {
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   AGB / IMPRESSUM / DATENSCHUTZ
   =================================== */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

/* ===================================
   ICON PLACEHOLDER (SVG inline)
   =================================== */

.icon {
  display: inline-flex;
}
