:root {
  --primary-color: #7d8f58; /* Olive Green from logo */
  --primary-dark: #6a7a4a;
  --primary-light: #8fa06a;
  --secondary-color: #2a2a2a; /* Anthracite from logo */
  --secondary-dark: #1a1a1a;
  --secondary-light: #3a3a3a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #cccccc;
  --dark-gray: #666666;
  --black: #000000;
  --font-family: "Poppins", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--white);
  background-color: var(--secondary-color);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

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

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

.btn-light {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-gray);
}

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

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

.btn-sm {
  padding: 0px 0px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(125, 143, 88, 0.9) 0%, rgba(125, 143, 88, 0.7) 100%);
  color: var(--white);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(125, 143, 88, 0.3);
}

/* Section Styles */
section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.section-header p {
  color: var(--gray);
  margin-top: 1rem;
}

/* Header - Minimalist Solid Design */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(125, 143, 88, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo - Clean & Simple */
.logo {
  transition: all 0.3s ease;
}

.logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Navigation - Clean Typography */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: var(--white);
}

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

/* Header Contact - Streamlined */
.header-contact {
  display: none;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--primary-color);
}

.phone-link i {
  font-size: 0.9rem;
}

/* CTA Button - Bold & Clear */
.header .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.header .btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle - Simple Lines */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle:hover span {
  background-color: var(--primary-color);
}

/* Mobile Navigation - Clean Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.mobile-nav.active {
  height: 100vh;
  padding: 100px 20px 20px;
}

.mobile-nav-list {
  padding: 0;
  text-align: center;
  margin-top: 50px;
}

.mobile-nav-list li {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-list li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav.active .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav.active .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav.active .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav.active .mobile-nav-list li:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-nav.active .mobile-nav-list li:nth-child(6) {
  transition-delay: 0.6s;
}

.mobile-nav-list a {
  display: block;
  color: var(--white);
  font-weight: 500;
  padding: 15px 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

/* Responsive Header */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .header-contact {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .header {
    padding: 25px 0;
  }

  .logo img {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 18px 0;
  }

  .logo img {
    height: 45px;
  }
}

/* Header - Minimalist Solid Design 
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(125, 143, 88, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo - Clean & Simple 
.logo {
  transition: all 0.3s ease;
}

.logo img {
  height: 80px;
  width: auto;
}

/* Main Navigation 
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 35px;
}

.nav-list a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--primary-color);
}

/* Header Contact & Mobile Toggle 
.header-contact {
  display: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}

.phone-link i {
  margin-right: 8px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Mobile Navigation 
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-dark);
  transform: translateY(-100%);
  transition: var(--transition);
  z-index: 1500;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav-list {
  padding: 80px 20px;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-list a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
}
*/ 


/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  background: url('img/Drivinontime-transfer-people.png') center center/cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.5) 0%, rgba(42, 42, 42, 0.8) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 180px;
  padding-bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.hero-text {
  max-width: 700px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin: 25px 0 35px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hero-buttons .btn {
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.booking-form {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 100%;
}

.booking-form h2 {
  margin-bottom: 25px;
  font-size: 1.75rem;
  text-align: center;
  color: var(--white);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(125, 143, 88, 0.2);
}

.booking-form .form-group:last-of-type {
  margin-bottom: 25px;
}

.booking-form .btn {
  margin-top: 10px;
}

/* Services Section */
.services {
  background-color: var(--secondary-color);
}

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

.service-card {
  background-color: var(--secondary-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 25px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gray);
}

.service-features li i {
  color: var(--primary-color);
  margin-top: 5px;
}

/* About Section */
.about {
  background-color: var(--secondary-dark);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.features {
  margin-top: 30px;
}

.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(125, 143, 88, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.feature-text h3 {
  margin-bottom: 10px;
}

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

.about-image {
  flex: 1;
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.company-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.company-logo {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.company-logo img {
  width: 100%;
  height: auto;
}

.company-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.company-tagline {
  font-size: 0.875rem;
  color: var(--gray);
}

.company-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
}

.stars i {
  color: var(--primary-color);
}

/* Fleet Section */
.fleet {
  background-color: var(--secondary-color);
}

.fleet-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 24px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--dark-gray);
  color: var(--gray);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-pane {
  display: none;
}

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

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

.vehicle-card {
  max-width: 700px;              /* vorher evtl. 100% – jetzt etwas schmaler */
  margin: 0 auto;                 /* zentriert bei 1 Karte pro Reihe */
  background-color: var(--secondary-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vehicle-image {
  height: auto;              /* war: feste px-Höhe */
  aspect-ratio: 16 / 9;       /* sorgt für gleichbleibendes Seitenverhältnis */
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* behält den großen Look */
  object-position: center;    /* zentriert das Auto im Rahmen */
  transform: scale(1);        /* kein unnötiger Zoom */
}

.vehicle-content {
  padding: 25px;
}

.vehicle-type {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.vehicle-features {
  margin-bottom: 20px;
}

.vehicle-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 0.875rem;
}

.vehicle-features li i {
  color: var(--primary-color);
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-weight: 700;
  font-size: 1.125rem;
}

/* Process Section */
.process {
  background-color: var(--secondary-dark);
}

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

.process-step {
  background-color: var(--secondary-light);
  padding: 25px;
  border-radius: var(--border-radius);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(125, 143, 88, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.step-icon i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--secondary-color);
}

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

.testimonial-card {
  background-color: var(--secondary-light);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  margin-bottom: 15px;
}

.testimonial-stars i {
  color: var(--primary-color);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-name {
  font-weight: 600;
}

.author-title {
  font-size: 0.875rem;
  color: var(--gray);
}

/* FAQ Section */
.faq {
  background-color: var(--secondary-dark);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--secondary-light);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.125rem;
}

.accordion-icon i {
  transition: var(--transition);
}

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

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px;
  max-height: 1000px;
}

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

/* Booking Section */
.booking {
  background-color: var(--primary-color);
  color: var(--white);
}

.booking-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.booking-text {
  flex: 1;
}

.booking-text h2 {
  margin-bottom: 15px;
}

.booking-text p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.booking-image {
  flex: 1;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

/* Contact Section */
.contact {
  background-color: var(--secondary-color);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-methods {
  margin: 30px 0;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  color: var(--white);
  font-size: 1.25rem;
}

.method-details h3 {
  margin-bottom: 5px;
}

.method-details a {
  color: var(--white);
}

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

.method-note {
  font-size: 0.875rem;
  color: var(--gray);
}

.social-media h3 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
}

.social-icon i {
  color: var(--white);
}

.contact-form {
  flex: 1;
  background-color: var(--secondary-light);
  padding: 30px;
  border-radius: var(--border-radius);
}

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

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 30px;
  margin-bottom: 15px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--secondary-color);
  border: 1px solid var(--dark-gray);
  border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--secondary-dark);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background-color: var(--secondary-dark);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--gray);
  margin-bottom: 20px;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-links-column h3 {
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.footer-links-column ul li {
  margin-bottom: 10px;
}

.footer-links-column ul li a {
  color: var(--gray);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--secondary-light);
  color: var(--gray);
  font-size: 0.875rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--secondary-color);
  margin: 50px auto;
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 800px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content h3 {
  margin: 30px 0 20px;
}

/* Responsive Styles */
@media (min-width: 576px) {
  .form-row {
    flex-direction: row;
  }

}


/* Tablet/iPad Optimierung (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    padding: 18px 0;
  }
  
  .header-content {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  
  .logo img {
    height: 55px;
  }
  
  .main-nav {
    display: block;
    order: 3;
    width: 100%;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-list {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-list a {
    font-size: 0.8rem;
    padding: 6px 0;
  }
  
  .header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 2;
    margin-left: auto;
  }
  
  .header-contact .phone-link {
    font-size: 0.8rem;
  }
  
  .header-contact .phone-link span {
    display: none;
  }
  
  .header .btn-primary {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text {
    flex: 1;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    color: var(--white);
  }
  
  .booking-form {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Allgemeine Desktop-Regeln (gilt für alle ab 768px, wird von Tablet-Regeln überschrieben) */
@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .about-content {
    flex-direction: row;
  }
  .fleet-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-content {
    flex-direction: row;
    align-items: center;
  }
  .contact-content {
    flex-direction: row;
  }
  .footer-content {
    flex-direction: row;
  }
  .footer-logo {
    flex: 1;
  }
  .footer-links {
    flex: 2;
  }
  .company-logo {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
}

/* Desktop - überschreibt Tablet-Regeln ab 1025px */
@media (min-width: 1025px) {
  .header {
    padding: 25px 0;
  }
  
  .header-content {
    flex-wrap: nowrap;
  }
  
  .logo img {
    height: 80px;
  }
  
  .main-nav {
    display: block;
    order: 2;
    width: auto;
    margin-top: 0;
  }
  
  .nav-list {
    gap: 35px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .nav-list a {
    font-size: 0.95rem;
    padding: 10px 0;
  }
  
  .header-contact {
    display: flex;
    align-items: center;
    order: 3;
  }
  
  .header-contact .phone-link {
    font-size: 0.9rem;
  }
  
  .header .btn-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  
  .hero-text {
    flex: 1;
    text-align: left;
    max-width: none;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    color: var(--white);
  }
  
  .booking-form {
    flex: 0 0 450px;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
}

@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 4.5rem;
    color: var(--white);
  }
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .header {
    padding: 15px 0;
  }
  .logo img {
    height: 45px;
  }
  .hero {
    min-height: 100vh;
  }
  .hero .container {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
    color: var(--white);
  }
  .hero-text p {
    font-size: 1.125rem;
  }
  .booking-form {
    padding: 25px;
    margin-top: 30px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-buttons .btn {
    width: auto;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .service-card {
    margin-bottom: 20px;
  }
  .service-content {
    padding: 20px;
  }
  .feature {
    margin-bottom: 20px;
  }
  .process-step {
    padding: 20px;
    margin-bottom: 20px;
  }
  .testimonial-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  .accordion-header {
    padding: 15px;
  }
  .accordion-item.active .accordion-content {
    padding: 0 15px 15px;
  }
  .contact-method {
    margin-bottom: 20px;
  }
  .contact-form {
    padding: 20px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-content {
    gap: 30px;
  }
}


/* === Booking modal adjustments (added) === */

#booking-modal .form-row {
  gap: 12px;
  margin-bottom: 12px;
}

#booking-modal .form-group {
  margin-bottom: 12px;
}

/* Dropdown-Optionen sichtbar (weißer Hintergrund, dunkle Schrift) */
#booking-modal select option {
  color: #111;
  background: #fff;
}
/* Placeholder-Option dezenter */
#booking-modal select option[disabled] {
  color: #888;
}

/* Browser Autocomplete Dropdown im Modal korrekt anzeigen */
#booking-modal .form-group {
  position: relative;
  overflow: visible;
  z-index: 1;
}

#booking-modal input[list] {
  position: relative;
  z-index: 2;
}

/* Spezifische Anpassung für das Booking-Modal - scrollbar mit sichtbarem Autocomplete */
#booking-modal .modal-content {
  max-width: 960px;
  padding: 24px;
  margin: 20px auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: visible;
  position: relative;
}

/* Impressum und Datenschutz Seiten */
.impressum-section,
.datenschutz-section {
  background-color: var(--secondary-color);
  padding: 120px 0 80px;
  min-height: 100vh;
}

.impressum-content,
.datenschutz-content {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-header,
.datenschutz-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.impressum-header h1,
.datenschutz-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.impressum-header p,
.datenschutz-header p {
  color: var(--gray);
  font-size: 1.125rem;
}

.impressum-form,
.datenschutz-form {
  background-color: var(--secondary-light);
  padding: 40px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.impressum-form h2,
.datenschutz-form h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 1.75rem;
}

.impressum-form h3,
.datenschutz-form h3 {
  color: var(--primary-color);
  margin: 30px 0 20px;
  font-size: 1.25rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.impressum-form .form-group,
.datenschutz-form .form-group {
  margin-bottom: 20px;
}

.impressum-form .form-group label,
.datenschutz-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--white);
}

.impressum-form .form-group input,
.impressum-form .form-group textarea,
.datenschutz-form .form-group input,
.datenschutz-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--dark-gray);
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  color: var(--white);
  font-family: var(--font-family);
}

.impressum-form .form-group input:focus,
.impressum-form .form-group textarea:focus,
.datenschutz-form .form-group input:focus,
.datenschutz-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(125, 143, 88, 0.2);
}

.impressum-form .form-group small,
.datenschutz-form .form-group small {
  display: block;
  margin-top: 5px;
  color: var(--gray);
  font-size: 0.875rem;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-group .checkbox-container {
  display: block;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--white);
}

.checkbox-group .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-group .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--secondary-color);
  border: 1px solid var(--dark-gray);
  border-radius: 4px;
}

.checkbox-group .checkbox-container:hover input ~ .checkmark {
  background-color: var(--secondary-dark);
}

.checkbox-group .checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-group .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-group .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-group .checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 1;
  min-width: 150px;
}

.generated-impressum,
.generated-datenschutz {
  background-color: var(--secondary-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.generated-impressum h2,
.generated-datenschutz h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 1.75rem;
}

.impressum-text-content,
.datenschutz-text-content {
  color: var(--white);
  line-height: 1.6;
}

.impressum-text-content h3,
.impressum-text-content h4,
.datenschutz-text-content h3,
.datenschutz-text-content h4 {
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.impressum-text-content p,
.datenschutz-text-content p {
  margin-bottom: 15px;
}

.impressum-text-content ul,
.datenschutz-text-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.impressum-text-content li,
.datenschutz-text-content li {
  margin-bottom: 8px;
}

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

.impressum-text-content a:hover,
.datenschutz-text-content a:hover {
  text-decoration: underline;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.cookie-modal.show {
    opacity: 1;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

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

.cookie-modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: var(--light-gray);
}

.cookie-modal-body {
    padding: 25px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    color: black;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 1;
    font-weight: 400;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: var(--secondary-color);
    cursor: not-allowed;
}

input:disabled + .slider:before {
    background-color: #f0f0f0;
}

.cookie-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-modal-footer .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Responsive Design für Impressum/Datenschutz */
@media (max-width: 768px) {
  .impressum-section,
  .datenschutz-section {
    padding: 100px 0 60px;
  }
  
  .impressum-form,
  .datenschutz-form,
  .generated-impressum,
  .generated-datenschutz {
    padding: 25px;
  }
  
  .impressum-header h1,
  .datenschutz-header h1 {
    font-size: 2rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

/* Screenreader-only helper */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
