: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;
  }

}


@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
  .main-nav {
    display: block;
  }
  .header-contact {
    display: flex;
    align-items: center;
  }
  .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;
  }
  .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;
  }
}

@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%;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .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;
}

/* Verfügbarkeitsstatus Styles */
.availability-status {
  padding: 12px 16px;
  margin: 15px 0;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid;
  transition: all 0.3s ease;
}

.availability-status.success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.availability-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.availability-status.warning {
  background-color: #fff3cd;
  color: #856404;
  border-color: #ffeaa7;
}

.availability-status small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.8;
}

/* Verfügbarkeits-Container */
#availability-status-container {
  margin: 15px 0;
  min-height: 20px;
}

/* Submit Button States */
#submit-booking:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

#submit-booking:disabled:hover {
  background-color: #6c757d;
  transform: none;
}

/* Mobile Anpassungen für Verfügbarkeitsstatus */
@media (max-width: 768px) {
  .availability-status {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* ===== KALENDER INTEGRATION STYLES ===== */

/* Kalender Button */
.btn-calendar {
  background: #667eea;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-calendar:hover {
  background: #5a6fd8;
  transform: translateY(-1px);
}

/* Kalender Container */
.calendar-container {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  min-height: 500px;
}

.calendar-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.close-calendar {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-calendar:hover {
  background: rgba(255,255,255,0.2);
}

/* Ausgewählte Datum/Zeit Anzeige */
.selected-datetime {
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 4px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.selected-datetime span {
  color: white;
  font-weight: 600;
}

.selected-datetime input[type="time"] {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: #333;
  font-size: 14px;
  padding: 6px 8px;
  width: 120px;
}

.selected-datetime input[type="time"]:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* Kalender iframe */
.calendar-iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .calendar-iframe {
    height: 400px;
  }
  
  .calendar-header {
    padding: 12px 15px;
  }
  
  .calendar-header h3 {
    font-size: 14px;
  }
  
  .btn-calendar {
    font-size: 11px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .calendar-iframe {
    height: 350px;
  }
  
  .calendar-container {
    margin: 10px 0;
  }
}
