/* ═══════════════════════════════════════════════
   FLUGHAFEN MÜNCHEN TAXI — Professional Design
   ═══════════════════════════════════════════════ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1f2937; background: #fff; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- CSS VARIABLES --- */
:root {
  --brand: #0c2d48;
  --brand-light: #164e78;
  --accent: #1a9ba5;
  --accent-hover: #148a93;
  --accent-light: #e0f7f9;
  --green: #059669;
  --green-light: #ecfdf5;
  --gold: #d97706;
  --surface: #f8fafc;
  --surface-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1140px;
  --transition: 0.25s ease;
}

/* --- CONTAINER --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  height: 72px;
}
.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 50px; }
.logo-text {
  font-size: 18px; font-weight: 700; color: var(--brand);
  letter-spacing: -0.3px; line-height: 1.2;
}
.logo-text small { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.5px; }
nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
nav ul li a {
  display: block; padding: 10px 16px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
nav ul li a:hover { color: var(--brand); background: var(--surface); }
nav ul li a.active {
  background: var(--accent); color: #fff; font-weight: 600;
}
nav ul li:first-child a { background: transparent; }

/* --- Mobile menu --- */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--brand); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: url('images/hero-taxis.PNG') center/cover no-repeat;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,45,72,0.82) 0%, rgba(22,78,120,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 1; color: #fff;
  padding: 48px 24px; max-width: 750px;
}
.hero-content h1 {
  font-size: 48px; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -1px; line-height: 1.15;
}
.hero-content p {
  font-size: 18px; margin-bottom: 32px;
  color: rgba(255,255,255,0.85); line-height: 1.6; font-weight: 400;
}
.hero-badges {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 24px;
  font-size: 13px; font-weight: 500; color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600;
  transition: all var(--transition);
  border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(26,155,165,0.35);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,155,165,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  border: 2px solid var(--border);
  transition: all var(--transition); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition); cursor: pointer;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS (Homepage)
   ═══════════════════════════════════════════════ */
.services-section { padding: 64px 0; background: #fff; }
.section-title {
  text-align: center; margin-bottom: 48px;
}
.section-title h2 { font-size: 32px; font-weight: 700; color: var(--brand); margin-bottom: 8px; letter-spacing: -0.5px; }
.section-title p { font-size: 16px; color: var(--text-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.service-card:hover img { transform: scale(1.08); }
.service-card .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(12,45,72,0.9));
  color: #fff; text-align: center;
  padding: 32px 12px 16px; font-size: 15px; font-weight: 600;
}

/* ═══════════════════════════════════════════════
   ANFRAGE / BOOKING CTA
   ═══════════════════════════════════════════════ */
.anfrage-section { padding: 64px 0; background: var(--surface); }
.anfrage-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.anfrage-card {
  position: relative; min-height: 280px; border-radius: var(--radius);
  overflow: hidden; color: #fff; transition: all var(--transition);
}
.anfrage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.anfrage-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s; }
.anfrage-card:hover img { transform: scale(1.05); }
.anfrage-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,45,72,0.85) 0%, rgba(22,78,120,0.65) 100%);
  z-index: 1;
}
.anfrage-card-content { position: relative; z-index: 2; padding: 36px 28px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.anfrage-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.anfrage-card p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.85); }
.btn-card {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff; padding: 12px 24px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: all var(--transition); width: fit-content;
}
.btn-card:hover { background: var(--accent-hover); }

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */
.features-section { padding: 72px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { text-align: center; padding: 24px 16px; }
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent-light), #d5f5f6);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 30px;
  transition: all var(--transition);
}
.feature-item:hover .feature-icon { transform: scale(1.08); box-shadow: 0 4px 16px rgba(26,155,165,0.2); }
.feature-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--brand); }
.feature-item p { font-size: 13px; line-height: 1.7; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════
   VEHICLE FLIP CARDS
   ═══════════════════════════════════════════════ */
.vehicles-section { padding: 64px 0; background: var(--surface); }
.vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vehicle-card { perspective: 1000px; height: 320px; cursor: pointer; }
.vehicle-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform 0.7s ease;
}
.vehicle-card:hover .vehicle-card-inner { transform: rotateY(180deg); }
.vehicle-front, .vehicle-back {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
}
.vehicle-front img { width: 100%; height: 250px; object-fit: cover; }
.vehicle-front .vehicle-label {
  background: var(--brand); color: #fff; text-align: center;
  padding: 14px; font-weight: 700; font-size: 16px; letter-spacing: 0.3px;
}
.vehicle-back {
  transform: rotateY(180deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px; text-align: center; background: var(--brand);
}
.vehicle-back p { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.vehicle-back a {
  background: var(--accent); color: #fff; padding: 10px 28px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  transition: all var(--transition);
}
.vehicle-back a:hover { background: var(--accent-hover); }

/* ═══════════════════════════════════════════════
   BUSINESS + PREISE SECTION (Homepage)
   ═══════════════════════════════════════════════ */
.business-preise { padding: 72px 0; background: #fff; }
.bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.bp-col { padding: 32px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.bp-col h2 { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--brand); }
.bp-col ul { list-style: none; }
.bp-col ul li {
  padding: 10px 0; font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: flex-start; gap: 8px;
}
.bp-col ul li::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 10px 24px;
  border: 2px solid var(--accent); color: var(--accent);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff; text-align: center;
  padding: 36px 24px; font-size: 18px; font-weight: 600;
  letter-spacing: 0.2px;
}
.cta-banner a { color: var(--accent-light); text-decoration: underline; font-weight: 700; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--brand); color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; max-width: var(--container); margin: 0 auto;
}
.footer-brand h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links ul li { padding: 4px 0; }
.footer-links ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color var(--transition); }
.footer-links ul li a:hover { color: #fff; }
.footer-contact h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact p { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--container); margin: 36px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   PAGE HEADER (Sub pages)
   ═══════════════════════════════════════════════ */
.page-header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff; padding: 48px 24px;
}
.page-header .container { max-width: var(--container); }
.page-header h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.page-header p { font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 400; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-content { padding: 64px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; }
.contact-info h2 { font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 24px; }
.contact-table { width: 100%; border-collapse: collapse; }
.contact-table tr { border-bottom: 1px solid var(--border); }
.contact-table td { padding: 16px 12px; font-size: 14px; vertical-align: top; }
.contact-table td:first-child { font-weight: 600; color: var(--text-secondary); width: 40%; }
.contact-table a { color: var(--accent); font-weight: 600; transition: color var(--transition); }
.contact-table a:hover { color: var(--accent-hover); }
.contact-cta { padding: 32px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.contact-cta h2 { font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.contact-cta p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.area-box { margin-top: 28px; padding: 24px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.area-box h3 { font-size: 15px; font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.area-box ul { list-style: none; }
.area-box ul li { padding: 6px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.area-box ul li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   IMPRESSUM PAGE
   ═══════════════════════════════════════════════ */
.legal-content { padding: 64px 0; }
.legal-content .container { max-width: 740px; }
.legal-content h2 {
  font-size: 18px; font-weight: 700; color: var(--brand);
  margin-top: 36px; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--accent-light);
}
.legal-content p { font-size: 14px; line-height: 1.9; color: var(--text-secondary); }
.legal-content a { color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════
   BUSINESS PAGE
   ═══════════════════════════════════════════════ */
.business-content { padding: 64px 0; }
.business-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.business-main h2 { font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 16px; }
.business-main p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.service-list { list-style: none; margin-bottom: 32px; }
.service-list li {
  padding: 16px 20px; margin-bottom: 8px;
  background: var(--surface); border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: 14px; color: var(--text); line-height: 1.6;
  transition: all var(--transition);
}
.service-list li:hover { background: var(--accent-light); }
.service-list li strong { color: var(--brand); }
.sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.sidebar-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.sidebar-hotline {
  background: var(--brand); color: #fff; border-radius: var(--radius);
  padding: 24px; text-align: center; margin-bottom: 20px;
}
.sidebar-hotline .label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.sidebar-hotline .phone { font-size: 22px; font-weight: 800; letter-spacing: 0.5px; }
.sidebar-hotline .phone a { color: #fff; }

/* ═══════════════════════════════════════════════
   PREISE PAGE
   ═══════════════════════════════════════════════ */
.preise-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.preise-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.preise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.preise-card img { width: 100%; height: 200px; object-fit: cover; }
.preise-card-body { padding: 20px; }
.preise-card h3 { font-size: 18px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.preise-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 2px; }
.preise-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.preise-table th {
  background: var(--brand); color: #fff;
  padding: 14px 20px; font-size: 14px; font-weight: 600; text-align: left;
}
.preise-table td {
  padding: 13px 20px; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.preise-table tr:nth-child(even) { background: var(--surface); }
.preise-table tr:hover { background: var(--accent-light); }
.notes-box {
  margin-top: 28px; background: var(--surface);
  border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border);
}
.notes-box strong { color: var(--brand); }
.notes-box ul { margin: 12px 0 0 20px; font-size: 14px; color: var(--text-secondary); line-height: 2.2; }

/* ═══════════════════════════════════════════════
   FUHRPARK PAGE
   ═══════════════════════════════════════════════ */
.fuhrpark-content { padding: 64px 0; }
.vehicle-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-bottom: 48px; align-items: center;
}
.vehicle-detail:nth-child(even) { direction: rtl; }
.vehicle-detail:nth-child(even) > * { direction: ltr; }
.vehicle-detail img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.vehicle-detail-info h2 { font-size: 26px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.vehicle-detail-info .subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table tr:nth-child(even) { background: var(--surface); }
.spec-table td { padding: 10px 12px; font-size: 14px; }
.spec-table td:first-child { font-weight: 600; color: var(--text-secondary); width: 45%; }
.spec-table .check { color: var(--green); font-weight: 600; }
.vehicle-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 48px; }

/* ═══════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════ */
.form-section { padding: 48px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; transition: border-color var(--transition);
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,155,165,0.12);
}
.form-group textarea { height: 90px; resize: vertical; }

/* ═══════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════ */
.admin-section { padding: 48px 0; }
.info-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; border-radius: var(--radius-sm); overflow: hidden; }
.info-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.info-table td:first-child { font-weight: 600; color: var(--text-secondary); width: 35%; background: var(--surface); }
.price-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.price-box label { font-weight: 700; display: block; margin-bottom: 12px; font-size: 15px; color: var(--brand); }
.price-box input[type=number] {
  padding: 14px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 24px; width: 220px; font-weight: 700;
  transition: border-color var(--transition);
}
.price-box input[type=number]:focus { outline: none; border-color: var(--accent); }
.price-box textarea {
  display: block; width: 100%; margin-top: 16px;
  padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  height: 80px; font-size: 14px; font-family: inherit;
}
.btn-send {
  background: var(--accent); color: #fff; border: none;
  padding: 16px 44px; font-size: 16px; font-weight: 600;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--transition);
}
.btn-send:hover { background: var(--accent-hover); }
.badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-quoted { background: #fef9c3; color: #92400e; }
.badge-confirmed { background: #dcfce7; color: #15803d; }

/* ═══════════════════════════════════════════════
   CONFIRM PAGE
   ═══════════════════════════════════════════════ */
.confirm-section {
  padding: 72px 24px; background: var(--surface);
  min-height: 60vh; text-align: center;
}
.confirm-box {
  max-width: 520px; margin: 0 auto;
  background: #fff; border-radius: var(--radius); padding: 48px;
  box-shadow: var(--shadow-lg);
}
.confirm-box h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; color: var(--brand); }
.price-big { font-size: 60px; font-weight: 800; color: var(--accent); margin: 24px 0; letter-spacing: -2px; }
.trip-info {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 20px; margin: 20px 0; font-size: 14px; line-height: 2; text-align: left;
  border: 1px solid var(--border);
}
.btn-confirm {
  background: var(--green); color: #fff; border: none;
  padding: 18px; font-size: 18px; border-radius: var(--radius-sm);
  cursor: pointer; width: 100%; margin-top: 20px; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(5,150,105,0.3);
}
.btn-confirm:hover { background: #047857; transform: translateY(-1px); }
.success-green {
  background: var(--green-light); border: 2px solid var(--green);
  border-radius: var(--radius); padding: 40px;
}
.success-green h2 { color: var(--green); font-size: 28px; margin-bottom: 12px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  header { padding: 0 16px; height: 64px; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); z-index: 999; }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 8px; gap: 2px; }
  nav ul li a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .hero-content h1 { font-size: 32px; }
  .hero { min-height: 400px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .anfrage-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .preise-cards { grid-template-columns: 1fr; }
  .bp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vehicle-detail { grid-template-columns: 1fr; }
  .vehicle-detail:nth-child(even) { direction: ltr; }
  .page-header { padding: 36px 24px; }
  .page-header h1 { font-size: 28px; }
  .confirm-box { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 26px; }
  .hero-badges { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
