/* Order Page Specific Styles */
.main-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  min-height: calc(100vh - 120px);
}

/* Form Input Styles */
.street-input {
  min-width: 160px;
  max-width: 200px;
  width: 100%;
}

.number-input {
  max-width: 80px !important;
  min-width: 50px !important;
  width: 100%;
}

/* Entfernt: Spezielle Icon-Behandlung - Icons sollen normal positioniert sein */

/* Icon-Anpassungen für Adress-Felder */
.address-col.input-icon-group {
  position: relative !important;
  display: block;
  width: 100%;
}

.address-col.input-icon-group .icon {
  position: absolute !important;
  left: 8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 14px !important;
  z-index: 10 !important;
  pointer-events: none !important;
  opacity: 0.65 !important;
}

.address-col.input-icon-group input {
  padding-left: 30px !important;
  width: 100%;
}

.city-input {
  min-width: 120px;
  max-width: 150px;
  width: 100%;
}

.datetime-input {
  cursor: pointer;
}

/* Personal Info Row - Name und Telefon nebeneinander */
.personal-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

/* DateTime Picker Styles */
.datetime-picker-container {
  width: 100%;
}

.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.date-section,
.time-section {
  display: flex;
  flex-direction: column;
}

/* Konsistente Icon-Positionierung für datetime inputs */
.date-section .input-icon-group,
.time-section .input-icon-group {
  position: relative !important;
}

.date-section .input-icon-group .icon,
.time-section .input-icon-group .icon {
  position: absolute !important;
  left: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  pointer-events: none !important;
  opacity: 0.65 !important;
  font-size: 16px !important;
}

.date-section .input-icon-group input,
.time-section .input-icon-group input {
  padding-left: 42px !important;
}

.date-input,
.time-input {
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.date-input:focus,
.time-input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 167, 142, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .datetime-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.privacy-text {
  font-size: 12px;
  color: #777;
}

/* Autocomplete Styles */
.autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1em;
  border-bottom: 1px solid #e3f2fd;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: #e3f2fd;
  color: #1976d2;
}

.title-section {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: block;
}

.title-section .main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  margin-left: -100px; /* Mehr Verschiebung nach links */
}

.title-section h1 {
  font-size: 48px;
  color: #333;
  margin: 0;
  font-weight: 600;
  display: inline-block;
  height: 120px;
  line-height: 120px;
}

.title-section img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-right: 15px; /* Reduzierter Abstand nach rechts */
  vertical-align: middle;
  margin-left: -20px; /* Negativer Margin um das Logo nach links zu verschieben */
}

.title-section .subtitle {
  font-size: 24px;
  color: #666;
  margin: 0;
  text-align: center;
  display: block;
  line-height: 1.2;
  position: relative;
  margin-left: 100px; /* Angepasst an die neue Logo-Position */
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  min-height: calc(100vh - 200px);
}

.form-section {
  flex: 1;
  max-width: 700px;
  min-width: 500px;
}

.map-section {
  flex: 1;
  height: calc(100vh - 260px);
  min-width: 45%;
  background: #f8f8f8;
  overflow: hidden;
  position: sticky;
  top: 80px;
  margin-bottom: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.map-placeholder {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  height:100%;
  padding:24px;
  text-align:center;
  color:#555;
  background:repeating-linear-gradient(45deg,#fafafa,#fafafa 10px,#f2f2f2 10px,#f2f2f2 20px);
  position:relative;
}
.map-placeholder.loading:after {
  content:"";
  position:absolute;
  bottom:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,#ffc107,#ffeb3b,#ffc107);
  background-size:200% 100%;
  animation:mapBar 1.4s linear infinite;
}
@keyframes mapBar { to { background-position: -200% 0; } }
.map-canvas { width:100%; height:100%; }

/* Utility Buttons */
.btn { cursor:pointer; font-weight:600; border:none; border-radius:10px; padding:12px 22px; font-size:0.95em; transition:.25s all; position:relative; overflow:hidden; }
.btn::before { content:""; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent); transition:.6s; }
.btn:hover::before { left:100%; }
.btn:active { transform:translateY(1px); }
.btn-primary { background:linear-gradient(135deg,#ffc107,#ffeb3b); color:#23272f; box-shadow:0 4px 12px rgba(255,193,7,.3); }
.btn-primary:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 6px 20px rgba(255,193,7,.4); }
.btn-secondary { background:#1976d2; color:#fff; box-shadow:0 4px 12px rgba(25,118,210,.3); }
.btn-secondary:hover { background:#125c9f; }
.btn.disabled, .btn:disabled { opacity:.5; cursor:not-allowed; transform:none !important; }
.btn-outline { background: #fff; color:#1976d2; border:1.5px solid #1976d2; box-shadow:0 2px 8px rgba(25,118,210,.12); }
.btn-outline:hover { background:#1976d2; color:#fff; }
.btn-outline:active { background:#125c9f; }

.map-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 16px;
  border: 1px solid #eee;
  position: relative;
  z-index: 1;
  background: #fff;
}

#taxiForm {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px #1976d222, 0 1.5px 8px #1976d211;
  transition: all 0.3s ease;
  padding: 32px 32px 22px 32px;
  margin-bottom: 18px;
  border: 1.5px solid #e3f2fd;
  position: relative;
}

#taxiForm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #ffeb3b);
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

#taxiForm:focus-within::before {
  transform: scaleX(1);
}

#taxiForm:hover {
  box-shadow: 0 12px 48px #1976d244, 0 2px 12px #1976d222;
  transform: translateY(-2px);
}

.address-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.address-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}

.address-col:last-child {
  margin-right: 0;
}

.address-col input {
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(38%) sepia(98%) saturate(2100%) hue-rotate(190deg) brightness(1.1);
  cursor: pointer;
  height: 28px;
  width: 28px;
}

input[type="datetime-local"] {
  min-width: 180px;
  max-width: 260px;
  font-size: 1.08em;
  background: #f7faf9;
  border: 1.5px solid #b2ebf2;
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 18px;
  transition: border 0.2s;
}

input[type="datetime-local"]:focus {
  border: 1.5px solid #1976d2;
  background: #e3f2fd;
  outline: none;
}

#taxiForm input, #taxiForm textarea {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 12px 16px;
}

/* Input group with icon */
.input-icon-group { position: relative; }
.input-icon-group .icon { position:absolute; top:50%; left:14px; transform:translateY(-50%); pointer-events:none; font-size:16px; opacity:.65; }
.input-icon-group input { padding-left:42px !important; }

#taxiForm input:hover, #taxiForm textarea:hover {
  background: #f0f4f8;
}

#taxiForm input:focus, #taxiForm textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
  border: 2px solid #ffc107;
  background: #fff;
  outline: none;
  transform: translateY(-2px);
}

/* Passengers input - narrower width */
.passengers-input {
  max-width: 150px;
}

.passengers-input input {
  text-align: center;
}

.button-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  position: relative;
}

.button-group.unified button { box-shadow:none; }
.button-group.unified { margin-top:24px; }

.button-group::before {
  content: '🚕';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  opacity: 0;
  transition: all 0.3s ease;
}

.button-group:hover::before {
  opacity: 1;
  right: -50px;
}

.button-group button {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
  color: #23272f;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  overflow: hidden;
}

.button-group button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.5s;
}

.button-group button:hover::before {
  left: 100%;
}

.button-group button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  background: linear-gradient(135deg, #ffb300 0%, #ffd740 100%);
}

.button-group button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.field-error {
  color: #d32f2f;
  font-size: 0.9em;
  margin-top: 4px;
  display: none;
}

#orderOverview {
  background: #fff;
  padding: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
  max-width: 600px;
  width: 100%;
  text-align: left;
  position: relative;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#orderOverview:hover {
  border-left-width: 8px;
  transform: translateX(4px);
  background: #fff9c4;
}

#orderOverview h3 {
  color: #23272f;
  font-size: 1.2em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#orderOverview h3::before {
  content: "📝";
  font-size: 1.2em;
}

#orderOverview h3::before {
  content: "\1F4DD ";
  font-size: 1.1em;
  vertical-align: middle;
  margin-right: 2px;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .map-section {
    height: 400px;
    position: static;
  }
  
  .map-section iframe {
    position: static;
  }
  
  .form-section {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 80px 16px 20px;
  }
  
  .title-section {
    margin-bottom: 24px;
  }
  
  .title-section .main-title {
    margin-left: 0;
    flex-direction: column;
    gap: 12px;
  }
  
  .title-section img {
    width: 80px;
    height: 80px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .title-section h1 {
    font-size: 28px;
    height: auto;
    line-height: 1.2;
  }
  
  .title-section .subtitle {
    font-size: 16px;
    margin-left: 0;
  }
  
  #taxiForm {
    padding: 20px;
    border-radius: 12px;
  }
  
  .address-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .address-col {
    margin-right: 0;
    margin-bottom: 0;
  }
  
  .personal-info-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .datetime-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .button-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .button-group button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    min-height: 48px;
  }
  
  /* Bessere Touch-Targets für Mobile */
  input, textarea, select {
    min-height: 48px;
    font-size: 16px; /* Verhindert Zoom bei iOS */
    padding: 14px 16px;
  }
  
  .input-icon-group input {
    padding-left: 44px !important;
  }
  
  .input-icon-group .icon {
    left: 12px !important;
    font-size: 16px !important;
  }
  
  /* Verbesserte Adressfelder */
  .address-col.input-icon-group input {
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}

/* Google Places Autocomplete styling */
.pac-container {
  position: absolute;
  z-index: 9999;
  background: #fff;
  border: 1.5px solid #1976d2;
  border-radius: 8px;
  max-height: 220px;
  overflow-y: auto;
  width: 100%;
  box-shadow: 0 4px 16px #1976d233;
  margin-top: 2px;
}

.pac-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 1em;
  border-bottom: 1px solid #e3f2fd;
}

.pac-item:last-child {
  border-bottom: none;
}

.pac-item:hover {
  background: #e3f2fd;
  color: #1976d2;
}

/* Simple clean divider */
.simple-divider {
  width: 100%;
  height: 60px;
  margin: 0;
  position: relative;
}

.simple-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 5px;
  background: #e0e0e0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Performance cleanup: reduce heavy shadows on large elements */
#taxiForm, .map-section, .feature-card, .about-cta { box-shadow:0 4px 18px rgba(0,0,0,0.12); }
.map-section:hover { box-shadow:0 6px 24px rgba(0,0,0,0.18); }

/* Anchor offset for fixed navbar */
#about, #howItWorks { scroll-margin-top: 90px; }

/* How It Works Section */
.how-it-works {
  margin: 40px auto 60px auto;
  max-width: 1200px;
  padding: 40px 40px 20px 40px;
  display: block; /* Sicherstellen dass es ein normales Block-Element ist */
}

.how-it-works .vp-intro {
  text-align: center;
  margin-bottom: 48px;
  width: 100%; /* Volle Breite */
}

.how-it-works .vp-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #1a1a1a; /* schwarz wie andere Überschriften */
  text-align: center;
  position: relative;
}

.how-it-works .vp-intro h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #1976d2);
  border-radius: 2px;
}

.how-it-works .vp-intro p {
  font-size: 1.1rem;
  color: #555;
  margin: 8px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works .vp-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .how-it-works .vp-grid {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 600px) {
  .how-it-works .vp-grid {
    grid-template-columns: 1fr;
  }
}

/* Value Props Grid */
.value-props { max-width:1300px; margin:40px auto 60px auto; padding:0 40px; text-align:center; }
.value-props .vp-intro { text-align:center; max-width:820px; margin:0 auto 46px auto; }
.value-props .vp-intro h2 { font-size:1.9rem; position:relative; margin-bottom:14px; text-align:center; }
.value-props .vp-intro h2::after { content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:-6px; width:90px; height:3px; background:linear-gradient(90deg,#1976d2,#ffc107); border-radius:2px; }
.value-props .vp-lead { font-size:1.05rem; color:#444; margin-top:4px; line-height:1.55; text-align:center; }
.vp-grid { display:grid; gap:64px; grid-template-columns:repeat(3,1fr); justify-items:center; max-width:1000px; margin:0 auto; }
.vp-grid .feature-card:nth-child(4),
.vp-grid .feature-card:nth-child(5),
.vp-grid .feature-card:nth-child(6) { grid-column:span 1; }
@media (max-width:900px) { .vp-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .vp-grid { grid-template-columns:1fr; } }
.vp-grid .feature-card { position:relative; min-height:190px; max-width:300px; width:100%; padding:26px 22px 24px; border:1px solid #d7e0ea; border-radius:18px; background:#ffffff; box-shadow:0 4px 14px -6px rgba(25,118,210,0.15),0 2px 4px rgba(0,0,0,0.05); transition:.35s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.vp-grid .feature-card::after { content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(135deg,rgba(255,193,7,0.08),transparent 60%); opacity:0; transition:.4s; pointer-events:none; }
.vp-grid .feature-card:hover { transform:translateY(-6px) scale(1.02); box-shadow:0 14px 32px -8px rgba(25,118,210,0.28),0 4px 12px rgba(0,0,0,0.08); border-color:#1976d2; }
.vp-grid .feature-card:hover::after { opacity:1; }
.vp-grid .feature-card .fc-icon { font-size:30px; line-height:1; filter:drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.vp-grid .feature-card .fc-title { font-size:1rem; letter-spacing:.3px; color:#0d3b66; }
.vp-grid .feature-card .fc-text { font-size:.8rem; line-height:1.4; color:#334; margin:0; }

/* Team & CTA Split */
.team-cta { max-width:1200px; margin:10px auto 140px auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(380px,1fr)); gap:54px; align-items:stretch; padding:0 40px; }
.team-block, .cta-block { background:#fff; border:1px solid #e4e9ef; border-radius:24px; padding:50px 48px 54px 48px; box-shadow:0 4px 22px -8px rgba(0,0,0,0.12); position:relative; overflow:hidden; }
.team-block::before { content:""; position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(25,118,210,0.05)0 14px,transparent 14px 28px); opacity:.7; pointer-events:none; }
.team-block h3 { margin-top:0; font-size:1.4rem; }
.team-block p { font-size:.9rem; line-height:1.5; }
.cta-block { background:linear-gradient(135deg,#ffc107,#ffd54f); border:none; box-shadow:0 14px 42px -10px rgba(255,193,7,0.55); display:flex; flex-direction:column; justify-content:center; }
.cta-block h3 { color:#23272f; margin-top:0; font-size:1.4rem; }
.cta-block p { color:#23272f; font-weight:500; font-size:.9rem; }
.cta-block .btn { align-self:flex-start; margin-top:18px; }

@media (max-width:900px){
  .value-props { padding:0 24px; }
  .team-cta { padding:0 24px; gap:32px; margin-bottom:110px; grid-template-columns:1fr; }
  .vp-grid .feature-main { grid-column: span 1; }
  .how-it-works { padding:40px 24px 10px; gap:40px; }
  .how-text h2 { text-align:center; }
  .how-text h2::after { left:50%; transform:translateX(-50%); }
  .how-text p { text-align:center; }
  .steps-bubble { border-radius:40px 18px 40px 18px; }
}

/* Customer Reviews System */
.customer-reviews {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-header h2 {
  font-size: 1.9rem;
  position: relative;
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
}

.reviews-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #1976d2);
  border-radius: 2px;
}

.reviews-subtitle {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.55;
  text-align: center;
  width: 100%;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.average-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffc107;
}

.stars-container {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 18px;
  line-height: 1;
}

.star-full {
  color: #ffc107;
}

.star-half {
  color: #ffc107;
  position: relative;
}

.star-half::after {
  content: "☆";
  position: absolute;
  left: 50%;
  top: 0;
  color: #ddd;
  overflow: hidden;
}

.star-empty {
  color: #ddd;
}

.rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #666;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, #1976d2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.review-card:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107, #1976d2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.reviewer-details h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.reviewer-location {
  margin: 2px 0 0 0;
  font-size: 0.85rem;
  color: #666;
}

.review-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-rating .rating-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffc107;
}

.review-date {
  font-size: 0.8rem;
  color: #888;
}

.verified-badge {
  background: #4caf50;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.review-content {
  position: relative;
}

.review-comment {
  margin: 0;
  line-height: 1.5;
  color: #333;
  font-size: 0.95rem;
}

.read-more-btn {
  background: none;
  border: none;
  color: #1976d2;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #0d47a1;
}

.reviews-actions {
  text-align: center;
}

.reviews-actions .btn {
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
  .customer-reviews {
    padding: 0 20px;
    margin: 40px auto;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .review-meta {
    align-items: flex-start;
    text-align: left;
  }
  
  .average-rating {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .rating-text {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .reviews-header h2 {
    font-size: 1.5rem;
  }
  
  .reviews-subtitle {
    font-size: 0.95rem;
  }
  
  .reviewer-avatar {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  left: 18px;
  bottom: 90px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,#1976d2,#64b5f6);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  border:none;
  box-shadow:0 8px 24px -6px rgba(25,118,210,0.45);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform: translateY(8px);
  transition:all .35s cubic-bezier(.4,0,.2,1);
  z-index:999;
}
#backToTop.show { opacity:1; visibility:visible; transform: translateY(0); }
#backToTop:focus { outline: 3px solid #ffeb3b; outline-offset:2px; }

@media (max-width: 1000px) {
  .how-it-works { padding: 20px; }
  .how-it-works .vp-intro h2 { font-size: 1.8rem; }
}

@media (max-width:600px){
  .how-it-works { padding: 20px 15px; }
  #backToTop { bottom: 110px; left: 12px; }
  
  /* Verbesserte Mobile Navigation */
  .main-content {
    padding: 16px 12px;
    margin-top: 120px; /* Mehr Platz für umgebrochene Navbar */
  }
  
  .title-section {
    padding: 0 8px;
    margin-bottom: 20px;
  }
  
  #taxiForm {
    padding: 16px;
    margin: 0 -4px 16px -4px;
  }
  
  /* Optimierte Formulareingaben für sehr kleine Bildschirme */
  .address-row {
    gap: 8px;
  }
  
  .button-group {
    gap: 8px;
  }
  
  /* Verbesserte Touch-Ziele */
  .feature-card {
    padding: 20px 16px;
    min-height: 160px;
  }
  
  .vp-grid {
    padding: 0 8px;
  }
  
  .how-it-works {
    padding: 20px 12px;
  }
  
  .team-cta {
    padding: 0 12px;
  }
}
