/* =====================================
   🔤 TYPOGRAPHY SYSTEM – Swiss Rent Style
   ===================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  /* Farben */
  --primary-red: #d21f26;
  --text-dark: #111111;
  --text-gray: #444444;
  --background: #ffffff;
  --light-gray: #f4f4f4;

  /* Schriftgrössen */
  --h1-size: 2.5rem;
  --h2-size: 1.8rem;
  --h3-size: 1.4rem;
  --p-size: 1rem;
}

/* === Base === */
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--background);
  color: var(--text-gray);
  line-height: 1.65;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
}

/* === Headings === */
h1, h2, h3, h4 {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 0.8px;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
}

h3 {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--text-dark);
}

/* === Paragraphs === */
p {
  font-size: var(--p-size);
  color: var(--text-gray);
  margin-bottom: 1.2rem;
}

/* === Links === */
a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-red);
}

/* === Button Style === */
button, .btn {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

button:hover, .btn:hover {
  background: #b71c22;
  transform: translateY(-2px);
}

/* === Text Utilities === */
.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.text-light { color: #666; }


/* ===== TOPBAR ===== */
.topbar {
  background: rgba(209, 31, 31, 0.85);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 0.35rem 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animation beim Verstecken */
.topbar.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* Container mit Flex für horizontales Layout */
.topbar-container {
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.topbar-item i {
  color: #fff;
  opacity: 0.9;
  font-size: 1rem;
}

.topbar-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.topbar-item a:hover {
  color: #ffdede;
}



/* ===== NAVBAR POSITION ===== */
header {
  position: fixed;
  top: 36px; /* direkt unter Topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  transition: top 0.4s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .topbar-container {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 750px) {
  .topbar {
    display: none; /* komplett ausblenden auf kleinen Screens */
  }
  header {
    top: 0; /* Navbar rutscht nach oben */
  }
}





/* ===== HEADER BASE ===== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 999;
  height: 90px; /* flacher Header */
  overflow: visible; /* Logo darf leicht überragen */
  transition: height 0.3s ease, box-shadow 0.3s ease;
}



/* ===== NAVBAR ===== */
.navbar {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.nav-logo img {
  height: 160px; /* bleibt gross */
  width: auto;
  display: block;
  position: relative;
  top: 8px; /* leicht nach unten, überlappt Navbar */
  transition: height 0.3s ease;
}

/* ===== NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #d11f1f;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: #d11f1f;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* ===== BOOK BUTTON ===== */
.book-btn {
  background: #d11f1f;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #b51717;

}

.book-btn::after {
  display: none !important;
  content: none !important;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lang-switch img {
  width: 22px;
  height: auto;
  vertical-align: middle;
  margin-right: 4px;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
}

.lang-switch a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

.lang-switch a.active {
  color: #d11f1f;
}

.lang-switch a:hover {
  color: #d11f1f;
}

.lang-switch span {
  color: #aaa;
  font-weight: 400;
}
/* ===== TOGGLE MENU ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 32px;
  height: 26px;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  width: 27px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.35s ease;
  transform-origin: center;
}

/* ===== ANIMATION (PERFEKT SYMMETRISCHES X) ===== */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1568px) {
  header {
    height: 80px;
  }

  .nav-toggle {
    display: flex;
  }




  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
  }

  .book-btn {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .nav-logo img {
    height: 130px;
    top: 6px;
  }

  .lang-switch {
    justify-content: center;
    font-size: 1rem;
  }

  .lang-switch img {
    width: 24px;
  }
}


/* ===========================================================
   🔽 DROPDOWN MENU – SWISS RENT STYLE
   =========================================================== */

.nav-links li.dropdown {
  position: relative;
}

.nav-links li.dropdown a i {
  margin-left: 6px;
  font-size: 0.75rem;
}

/* === Untermenü Grunddesign === */
.nav-links li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
  list-style: none;
  display: none;
  min-width: 240px;
  z-index: 999;
}

.nav-links li .dropdown-menu li {
  width: 100%;
}

.nav-links li .dropdown-menu a {
  display: block;
  padding: 0.75rem 1.2rem;
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-links li .dropdown-menu a:hover {
  background: rgba(210, 31, 38, 0.1);
  color: #d21f26;
}

/* === Hover Effekt (Desktop) === */
.nav-links li.dropdown:hover .dropdown-menu {
  display: block;
}

/* === Responsive (Mobile) === */
@media (max-width: 1495px) {
  .nav-links li .dropdown-menu {
    position: static;
    box-shadow: none;
    background: none;
    padding-left: 1rem;
  }

  .nav-links li .dropdown-menu a {
    padding: 0.6rem 0;
    font-size: 0.95rem;
  }

  .nav-links li.dropdown a i {
    display: none;
  }
}

@media (max-width: 1495px) {
  .dropdown-menu {
    display: none;
  }
  .dropdown-menu.show {
    display: block;
  }
}

.dropdown-menu a::after {
  display: none !important;
}

/* ===============================================
🚗 HERO SECTION – SWISS RENT STYLE (mit Sticky Navbar Offset)
=================================================*/
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  padding: 160px 5% 0; /* 🔹 Desktop: Abstand für Sticky Navbar */
}

/* === Background === */
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* === Overlay === */
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

/* === Content === */
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  transform: translateY(8%);
}

.hero-section .hero-content h1,
.hero-section .hero-content p {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-section .hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #d21f26;
}

.hero-section .hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

/* === Button === */
.hero-section .btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, #d21f26 0%, #b0161c 100%);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(210, 31, 38, 0.4);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero-section .btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.hero-section .btn-hero:hover::before {
  left: 125%;
}

.hero-section .btn-hero:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 18px rgba(210, 31, 38, 0.6);
}

/* ==============================================================
📱 RESPONSIVE DESIGN – PROPORTIONAL SCALING (SRAC Standard)
==============================================================*/
/* 🧱 ab 1100px – MacBook Pro & grosse Laptops */
@media (min-width: 1101px) and (max-width: 1550px) {
  .hero-section {
    padding-top: 180px; /* 🔹 mehr Abstand für Sticky Navbar auf MacBook */
  }
  .hero-section .hero-content {
    transform: translateY(4%);
  }
  .hero-section .hero-content h1 {
    font-size: 2.4rem; /* leicht kleiner, harmonischer auf Laptop */
  }
  .hero-section .hero-content p {
    font-size: 1rem;
  }
}


/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .hero-section {
    min-height: 65vh;
    padding: 140px 6% 0; /* 🔹 etwas weniger Abstand oben */
  }
  .hero-section .hero-content {
    transform: translateY(5%);
    max-width: 680px;
  }
  .hero-section .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-section .hero-content p {
    font-size: 0.95rem;
  }
  .hero-section .btn-hero {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .hero-section {
    min-height: 60vh;
    padding: 150px 7% 0;
  }
  .hero-section .hero-content {
    transform: translateY(3%);
    max-width: 620px;
  }
  .hero-section .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .hero-section .hero-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }
  .hero-section .btn-hero {
    padding: 0.75rem 1.6rem;
    font-size: 0.85rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .hero-section {
    min-height: 58vh;
    padding: 160px 8% 0;
  }
  .hero-section .hero-content {
    transform: translateY(0);
    max-width: 550px;
  }
  .hero-section .hero-content h1 {
    font-size: 1.65rem;
  }
  .hero-section .hero-content p {
    font-size: 0.86rem;
  }
  .hero-section .btn-hero {
    padding: 0.7rem 1.5rem;
    font-size: 0.82rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .hero-section {
    min-height: 55vh;
    padding: 150px 9% 0;
  }
  .hero-section .hero-content {
    max-width: 460px;
  }
  .hero-section .hero-content h1 {
    font-size: 1.45rem;
    margin-bottom: 0.9rem;
  }
  .hero-section .hero-content p {
    font-size: 0.82rem;
    margin-bottom: 1.4rem;
    line-height: 1.5;
  }
  .hero-section .btn-hero {
    padding: 0.65rem 1.3rem;
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .hero-section {
    min-height: 52vh;
    padding: 140px 10% 0;
  }
  .hero-section .hero-content {
    transform: translateY(-2%);
    max-width: 400px;
  }
  .hero-section .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-section .hero-content p {
    font-size: 0.78rem;
    line-height: 1.45;
  }
  .hero-section .btn-hero {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .hero-section {
    min-height: 50vh;
    padding: 130px 11% 0;
  }
  .hero-section .hero-content h1 {
    font-size: 1.15rem;
  }
  .hero-section .hero-content p {
    font-size: 0.74rem;
    margin-bottom: 1rem;
  }
  .hero-section .btn-hero {
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
  }
}


/* === VEHICLE CARDS section (OPTIMAL SHAPE) === */
.vehicle-cards {
  padding: 90px 6%;
  background: #fff;
  text-align: center;
}

.vehicle-cards-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}


.vehicle-cards-header p {
  color: #555;
  max-width: 680px;
  margin: 0 auto 55px;
  line-height: 1.6;
}

/* === GRID === */
.vehicle-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* === CARD === */
.vehicle-card {
  position: relative;
  width: 100%;
  height: 360px; /* ⬆️ leicht höher für harmonisches Rechteck */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* === BACKGROUND IMAGE === */
.vehicle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.vehicle-card:hover .vehicle-bg {
  transform: scale(1.07);
  filter: brightness(1.05);
}

/* === OVERLAY === */
.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.65) 100%);
  transition: background 0.3s ease;
}

.vehicle-card:hover .vehicle-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0.55) 100%);
}

/* === CONTENT === */
.vehicle-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  text-align: left;
  z-index: 2;
  max-width: 85%;
}

.vehicle-content h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}



.vehicle-content p {
  font-size: 1rem;
  color: #f1f1f1;
  margin-bottom: 20px;
  line-height: 1.45;
}

/* === BUTTON === */
.vehicle-content .btn-red {
  display: inline-block;
  background: var(--main-color, #d21f26);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.vehicle-content .btn-red:hover {
  background: #b51a20;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* =============================================
🚘 VEHICLE CARDS – SWISS RENT A CAR STYLE
=================================================*/

/* === VEHICLE CARDS (OPTIMAL SHAPE) === */
.vehicle-cards {
  padding: 90px 6%;
  background: #fff;
  text-align: center;
}

.vehicle-cards-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}


.vehicle-cards-header p {
  color: #555;
  max-width: 680px;
  margin: 0 auto 55px;
  line-height: 1.6;
}

/* === GRID === */
.vehicle-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* === CARD === */
.vehicle-card {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* === BACKGROUND IMAGE === */
.vehicle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.vehicle-card:hover .vehicle-bg {
  transform: scale(1.07);
  filter: brightness(1.05);
}

/* === OVERLAY === */
.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.65) 100%);
  transition: background 0.3s ease;
}

.vehicle-card:hover .vehicle-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0.55) 100%);
}

/* === CONTENT === */
.vehicle-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  text-align: left;
  z-index: 2;
  max-width: 85%;
}

.vehicle-content h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.vehicle-content p {
  font-size: 1rem;
  color: #f1f1f1;
  margin-bottom: 20px;
  line-height: 1.45;
}

/* === BUTTON === */
.vehicle-content .btn-red {
  display: inline-block;
  background: var(--main-color, #d21f26);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.vehicle-content .btn-red:hover {
  background: #b51a20;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}


/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .vehicle-cards {
    padding: 75px 5%;
  }
  .vehicle-cards-header h2 {
    font-size: 2rem;
  }
  .vehicle-cards-header p {
    font-size: 1.02rem;
    margin-bottom: 40px;
  }
  .vehicle-cards-grid {
    gap: 28px;
  }
  .vehicle-card {
    height: 300px;
  }
  .vehicle-content {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  .vehicle-content h3 {
    font-size: 1.3rem;
  }
  .vehicle-content p {
    font-size: 0.93rem;
  }
  .vehicle-content .btn-red {
    padding: 9px 22px;
    font-size: 0.93rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .vehicle-cards {
    padding: 65px 5%;
  }
  .vehicle-cards-header h2 {
    font-size: 1.8rem;
  }
  .vehicle-cards-header p {
    font-size: 0.98rem;
    margin-bottom: 35px;
  }
  .vehicle-cards-grid {
    gap: 22px;
  }
  .vehicle-card {
    height: 270px;
  }
  .vehicle-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .vehicle-content h3 {
    font-size: 1.2rem;
  }
  .vehicle-content p {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
  .vehicle-content .btn-red {
    padding: 8px 20px;
    font-size: 0.86rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .vehicle-cards {
    padding: 60px 4%;
  }
  .vehicle-cards-header h2 {
    font-size: 1.65rem;
  }
  .vehicle-cards-header p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .vehicle-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vehicle-card {
    height: 240px;
  }
  .vehicle-content h3 {
    font-size: 1.1rem;
  }
  .vehicle-content p {
    font-size: 0.85rem;
  }
  .vehicle-content .btn-red {
    padding: 7px 18px;
    font-size: 0.82rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .vehicle-cards {
    padding: 50px 4%;
  }
  .vehicle-cards-header h2 {
    font-size: 1.55rem;
  }
  .vehicle-cards-header p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  .vehicle-cards-grid {
    grid-template-columns: 1fr; /* 👉 einspaltig nur hier */
    gap: 20px;
  }
  .vehicle-card {
    height: 220px;
    border-radius: 15px;
  }
  .vehicle-content {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }
  .vehicle-content h3 {
    font-size: 1rem;
  }
  .vehicle-content p {
    font-size: 0.8rem;
  }
  .vehicle-content .btn-red {
    padding: 7px 16px;
    font-size: 0.78rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .vehicle-cards {
    padding: 45px 3.5%;
  }
  .vehicle-cards-header h2 {
    font-size: 1.4rem;
  }
  .vehicle-cards-header p {
    font-size: 0.8rem;
    margin-bottom: 22px;
  }
  .vehicle-cards-grid {
    gap: 16px;
  }
  .vehicle-card {
    height: 200px;
    border-radius: 14px;
  }
  .vehicle-content {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }
  .vehicle-content h3 {
    font-size: 0.9rem;
  }
  .vehicle-content p {
    font-size: 0.76rem;
  }
  .vehicle-content .btn-red {
    padding: 6px 14px;
    font-size: 0.73rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .vehicle-cards {
    padding: 40px 3%;
  }
  .vehicle-cards-header h2 {
    font-size: 1.25rem;
  }
  .vehicle-cards-header p {
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
  .vehicle-cards-grid {
    gap: 14px;
  }
  .vehicle-card {
    height: 180px;
    border-radius: 12px;
  }
  .vehicle-content {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .vehicle-content h3 {
    font-size: 0.85rem;
  }
  .vehicle-content p {
    font-size: 0.7rem;
  }
  .vehicle-content .btn-red {
    padding: 5px 12px;
    font-size: 0.68rem;
  }
}


/* ===============================================
🚘 PREMIUM VORTEILE SECTION – SWISS RENT A CAR (FIXED 2×2)
=================================================*/
.benefits {
  position: relative;
  padding: 7rem 2rem;
  text-align: center;
  background: #fafafa;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
  position: relative;
}

.benefits h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d21f26;
  border-radius: 2px;
}

/* === GRID – Immer 2×2, nie 1 Spalte === */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* === CARD === */
.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(210, 31, 38, 0.15);
  border-color: rgba(210, 31, 38, 0.3);
}

/* === ICON === */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d21f26, #b0161c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(210, 31, 38, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover .icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(210, 31, 38, 0.45);
}

/* === TEXT === */
.benefit-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 0.7rem;
}

.benefit-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* === CTA BUTTON === */
.btn-wrap {
  text-align: center;
  margin-top: 3rem;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, #d21f26 0%, #b0161c 100%);
  color: #fff !important;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(210, 31, 38, 0.4);
}

.btn-contact i {
  margin-right: 0.6rem;
  font-size: 1.1rem;
}

.btn-contact:hover {
  background: linear-gradient(135deg, #b0161c 0%, #d21f26 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(210, 31, 38, 0.55);
}


/* ===========================================================
   🧩 RESPONSIVE DESIGN – FIXED 2×2 GRID (SRAC STANDARD SCALE)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .benefits {
    padding: 6rem 2rem;
  }
  .benefits h2 {
    font-size: 2rem; /* SRAC Standard */
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1.8rem;
  }
  .benefit-card {
    padding: 2rem 1.5rem;
  }
  .icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }
  .benefit-card h3 {
    font-size: 1.2rem;
  }
  .benefit-card p {
    font-size: 0.93rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .benefits {
    padding: 5.5rem 1.8rem;
  }
  .benefits h2 {
    font-size: 1.8rem;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 1.6rem;
  }
  .benefit-card {
    padding: 1.9rem 1.4rem;
  }
  .icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .benefit-card h3 {
    font-size: 1.1rem;
  }
  .benefit-card p {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .benefits {
    padding: 5rem 1.6rem;
  }
  .benefits h2 {
    font-size: 1.65rem;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1.4rem;
  }
  .benefit-card {
    padding: 1.8rem 1.3rem;
  }
  .icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .benefit-card h3 {
    font-size: 1.05rem;
  }
  .benefit-card p {
    font-size: 0.85rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .benefits {
    padding: 4.2rem 1.3rem;
  }
  .benefits h2 {
    font-size: 1.55rem;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1.2rem;
  }
  .benefit-card {
    padding: 1.6rem 1.1rem;
    border-radius: 15px;
  }
  .icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
  .benefit-card h3 {
    font-size: 0.95rem;
  }
  .benefit-card p {
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .benefits {
    padding: 3.8rem 1rem;
  }
  .benefits h2 {
    font-size: 1.4rem;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
  }
  .benefit-card {
    padding: 1.4rem 1rem;
    border-radius: 14px;
  }
  .icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .benefit-card h3 {
    font-size: 0.9rem;
  }
  .benefit-card p {
    font-size: 0.78rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .benefits h2 {
    font-size: 1.25rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr; /* ⚠️ Nur hier 1 Spalte */
    gap: 0.9rem;
  }
  .benefit-card {
    padding: 1.2rem 0.9rem;
    border-radius: 12px;
  }
  .icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .benefit-card h3 {
    font-size: 0.85rem;
  }
  .benefit-card p {
    font-size: 0.72rem;
  }
}



/* === SERVICES SECTION (Luxury Style) === */
.services {
  background: #f9f9f9;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: rgba(210, 31, 38, 0.06);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
}

.services-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d21f26;
  border-radius: 2px;
}

.services-header p {
  color: #555;
  font-size: 1.1rem;
  margin-top: 1.2rem;
}

/* === SERVICE WRAPPER === */
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === INDIVIDUAL SERVICE === */
.service {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(210,31,38,0.15);
}

/* Image left side */
.service-image {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4), transparent);
}

/* Text right side */
.service-content {
  flex: 1;
  padding: 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.service-content h3 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 0.8rem;
  position: relative;
}

.service-content h3::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #d21f26, #b0161c);
  border-radius: 2px;
}

.service-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Button */
.service-btn {
  align-self: start;
  background: linear-gradient(135deg, #d21f26, #b0161c);
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #b0161c;
  box-shadow: 0 8px 25px rgba(210,31,38,0.4);
  transform: translateY(-3px);
}
.service-btn:hover,
.service-btn:hover a {
  color: #fff !important;
}

/* ===========================================================
   📱 RESPONSIVE DESIGN
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .services {
    padding: 6rem 2rem;
  }
  .services-header h2 {
    font-size: 2.3rem;
  }
  .services-header p {
    font-size: 1.05rem;
  }
  .services-wrapper {
    gap: 3rem;
    max-width: 950px;
  }
  .service-content {
    padding: 2.5rem 1.8rem;
  }
  .service-content h3 {
    font-size: 1.45rem;
  }
  .service-content p {
    font-size: 1rem;
  }
  .service-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .services {
    padding: 5.5rem 1.8rem;
  }
  .services-header h2 {
    font-size: 2.1rem;
  }
  .services-header p {
    font-size: 1rem;
  }
  .service {
    flex-direction: column;
    text-align: center;
  }
  .service-image {
    min-height: 280px;
  }
  .service-content {
    padding: 2.2rem 1.8rem 2.8rem;
    text-align: center;
    align-items: center;
  }
  .service-content h3::before {
    display: none;
  }
  .service-btn {
    align-self: center;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .services {
    padding: 5rem 1.6rem;
  }
  .services-header h2 {
    font-size: 1.9rem;
  }
  .services-header p {
    font-size: 0.95rem;
  }
  .services-wrapper {
    gap: 2.8rem;
  }
  .service {
    border-radius: 16px;
  }
  .service-image {
    min-height: 240px;
  }
  .service-content {
    padding: 2rem 1.5rem;
  }
  .service-content h3 {
    font-size: 1.35rem;
  }
  .service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .service-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.3rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .services {
    padding: 4.5rem 1.4rem;
  }
  .services-header {
    margin-bottom: 3rem;
  }
  .services-header h2 {
    font-size: 1.7rem;
  }
  .services-header p {
    font-size: 0.9rem;
  }
  .service {
    border-radius: 14px;
  }
  .service-image {
    min-height: 220px;
  }
  .service-content {
    padding: 1.8rem 1.3rem;
  }
  .service-content h3 {
    font-size: 1.25rem;
  }
  .service-content p {
    font-size: 0.9rem;
  }
  .service-btn {
    font-size: 0.8rem;
    padding: 0.55rem 1.1rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .services {
    padding: 4rem 1.2rem;
  }
  .services-header h2 {
    font-size: 1.5rem;
  }
  .services-header p {
    font-size: 0.85rem;
  }
  .service-image {
    min-height: 200px;
  }
  .service-content {
    padding: 1.6rem 1rem;
  }
  .service-content h3 {
    font-size: 1.15rem;
  }
  .service-content p {
    font-size: 0.85rem;
  }
  .service-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .services {
    padding: 3.5rem 1rem;
  }
  .services-header h2 {
    font-size: 1.4rem;
  }
  .services-header p {
    font-size: 0.8rem;
  }
  .service-image {
    min-height: 180px;
  }
  .service-content {
    padding: 1.4rem 0.9rem;
  }
  .service-content h3 {
    font-size: 1rem;
  }
  .service-content p {
    font-size: 0.8rem;
  }
  .service-btn {
    font-size: 0.7rem;
    padding: 0.45rem 0.9rem;
  }
}



/* =============================================
   🚘 Transporter werbung section BANNER – Swiss Rent a Car Premium
   ============================================= */

.contact-banner {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  color: #fff;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
  z-index: 1;
}

/* === Inhalt === */
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f3f4f6;
  letter-spacing: 1.2px;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.contact-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

.contact-content p {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === Button – Premium Look === */
.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, #d21f26 0%, #b0161c 100%);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(210,31,38,0.4);
  color:#fff !important;
}

.btn-contact:hover {
  background: linear-gradient(135deg, #b0161c 0%, #d21f26 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(210,31,38,0.55);
}
/* ===========================================================
   📱 RESPONSIVE DESIGN – SRAC STANDARD SCALE (CONTACT BANNER)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .contact-banner {
    height: 75vh;
    padding: 5rem 6%;
    justify-content: center;
    align-items: center;
  }
  .contact-content {
    max-width: 560px;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
  .contact-content h2 {
    font-size: 2rem; /* SRAC h2 Standard */
  }
  .contact-content p {
    font-size: 0.95rem;
  }
  .btn-contact {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .contact-banner {
    height: 70vh;
    padding: 4.5rem 5%;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: center;
  }
  .contact-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  }
  .contact-content {
    max-width: 540px;
  }
  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  .contact-content h2 {
    font-size: 1.8rem;
    line-height: 1.25;
  }
  .contact-content p {
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
  }
  .btn-contact {
    padding: 0.75rem 1.8rem;
    font-size: 0.86rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .contact-banner {
    height: 65vh;
    padding: 4rem 4%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .contact-content {
    max-width: 480px;
  }
  .section-subtitle {
    font-size: 0.8rem;
  }
  .contact-content h2 {
    font-size: 1.65rem;
  }
  .contact-content p {
    font-size: 0.85rem;
    margin-bottom: 1.3rem;
  }
  .btn-contact {
    padding: 0.7rem 1.6rem;
    font-size: 0.82rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .contact-banner {
    height: 60vh;
    padding: 4rem 1.6rem 4.2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .contact-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
  }
  .contact-content {
    max-width: 90%;
  }
  .section-subtitle {
    font-size: 0.75rem;
  }
  .contact-content h2 {
    font-size: 1.55rem;
    margin-bottom: 0.7rem;
  }
  .contact-content p {
    font-size: 0.8rem;
    margin-bottom: 1.1rem;
  }
  .btn-contact {
    padding: 0.65rem 1.4rem;
    font-size: 0.78rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / 375 px Geräte */
@media (max-width: 420px) {
  .contact-banner {
    height: auto; /* 🔹 Kein fixiertes Verhältnis – dynamisch mit Inhalt */
    padding: 4.2rem 1.4rem 4.4rem; /* 🔹 mehr Luft oben/unten */
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .contact-content {
    max-width: 95%;
  }
  .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  .contact-content h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }
  .contact-content p {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .btn-contact {
    padding: 0.6rem 1.3rem;
    font-size: 0.73rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .contact-banner {
    height: auto;
    padding: 3.8rem 1.2rem 4rem; /* 🔹 extra vertikal Abstand */
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .section-subtitle {
    font-size: 0.65rem;
  }
  .contact-content h2 {
    font-size: 1.25rem;
  }
  .contact-content p {
    font-size: 0.72rem;
  }
  .btn-contact {
    padding: 0.55rem 1.1rem;
    font-size: 0.68rem;
  }
}



/* =============================================
   🚘 BELIEBTESTE AUTOS SECTION – Swiss Rent a Car
   ============================================= */

.srac-elegantvehicles {
  background: #fff;
  padding: 120px 7%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Header */
.srac-elegant-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
}
.srac-elegant-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d21f26;
  border-radius: 2px;
}
.srac-elegant-header p {
  color: #555;
  max-width: 650px;
  margin: 12px auto 70px;
  line-height: 1.6;
}

/* === SLIDER === */
.srac-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.srac-elegant-slider {
  display: flex;
  scroll-behavior: smooth;
  gap: 40px;
  padding: 0 5px;
  overflow-x: hidden;
}

/* === CARD === */
.srac-elegant-card {
  flex: 0 0 calc(33.333% - 30px);
  border: 1.4px solid #ccc;
  border-radius: 18px;
  background: #fff;
  padding: 40px 30px 45px;
  transition: transform 0.4s ease;
}
.srac-elegant-card:hover {
  transform: translateY(-5px);
}

.srac-elegant-brand {
  font-size: 0.9rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.srac-elegant-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

.srac-elegant-card h3 {
  font-size: 1.3rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 8px;
}

.srac-elegant-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* Button */
.btn-elegant {
  display: inline-block;
  background: #d21f26;
  color: #fff !important;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.3s ease;
}
.btn-elegant:hover {
  background: #b91920;
}

/* === ARROWS === */
.srac-slide-btn {
  background: none !important;
  border: none !important;
  color: #d21f26 !important;
  font-size: 2.2rem !important;
  cursor: pointer;
  z-index: 5;
  transition: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.srac-slide-btn:hover,
.srac-slide-btn:focus,
.srac-slide-btn:active {
  color: #d21f26 !important;
  background: none !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.srac-slide-btn.prev { margin-right: 15px; }
.srac-slide-btn.next { margin-left: 15px; }

/* ===========================================================
   📱 RESPONSIVE DESIGN (quadratisch & kompakt)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .srac-elegantvehicles {
    padding: 100px 6%;
  }
  .srac-elegant-header h2 { font-size: 2.3rem; }
  .srac-elegant-header p { margin-bottom: 60px; font-size: 1.05rem; }
  .srac-elegant-card {
    flex: 0 0 calc(33.333% - 25px);
    padding: 35px 26px 40px;
  }
  .srac-elegant-card img { height: 200px; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .srac-elegantvehicles {
    padding: 90px 5%;
  }
  .srac-elegant-header h2 { font-size: 2.1rem; }
  .srac-elegant-header p {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  .srac-elegant-slider { gap: 30px; }
  .srac-elegant-card {
    flex: 0 0 calc(50% - 20px);
    padding: 30px 24px 35px;
  }
  .srac-elegant-card img { height: 180px; }
  .srac-elegant-card h3 { font-size: 1.25rem; }
  .srac-elegant-card p { font-size: 0.9rem; }
  .btn-elegant { padding: 12px 30px; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .srac-elegantvehicles { padding: 80px 5%; }
  .srac-elegant-header h2 { font-size: 1.9rem; }
  .srac-elegant-header p { font-size: 0.95rem; margin-bottom: 45px; }
  .srac-elegant-slider { gap: 25px; }
  .srac-elegant-card {
    flex: 0 0 calc(50% - 18px);
    padding: 28px 22px 32px;
  }
  .srac-elegant-card img { height: 170px; }
  .srac-elegant-card h3 { font-size: 1.2rem; }
  .srac-elegant-card p { font-size: 0.9rem; line-height: 1.5; margin-bottom: 18px; }
  .btn-elegant { padding: 11px 28px; font-size: 0.9rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .srac-elegantvehicles { padding: 70px 5%; }
  .srac-elegant-header h2 { font-size: 1.8rem; }
  .srac-elegant-header p { font-size: 0.9rem; margin-bottom: 40px; }
  .srac-elegant-slider { gap: 20px; }
  .srac-elegant-card {
    flex: 0 0 calc(100% - 10px);
    padding: 25px 20px 30px;
  }
  .srac-elegant-card img { height: 160px; }
  .srac-elegant-card h3 { font-size: 1.15rem; }
  .srac-elegant-card p { font-size: 0.85rem; }
  .btn-elegant { padding: 10px 25px; font-size: 0.85rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .srac-elegantvehicles { padding: 60px 4%; }
  .srac-elegant-header h2 { font-size: 1.6rem; }
  .srac-elegant-header p { font-size: 0.85rem; margin-bottom: 35px; }
  .srac-elegant-card {
    padding: 22px 18px 26px;
    border-radius: 16px;
  }
  .srac-elegant-card img { height: 150px; }
  .srac-elegant-card h3 { font-size: 1.05rem; }
  .srac-elegant-card p { font-size: 0.82rem; }
  .btn-elegant { padding: 9px 22px; font-size: 0.8rem; }
  .srac-slide-btn { font-size: 1.9rem !important; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-elegantvehicles { padding: 55px 3%; }
  .srac-elegant-header h2 { font-size: 1.45rem; }
  .srac-elegant-header p { font-size: 0.8rem; margin-bottom: 30px; }
  .srac-elegant-card {
    padding: 20px 16px 24px;
  }
  .srac-elegant-card img { height: 140px; }
  .srac-elegant-card h3 { font-size: 1rem; }
  .srac-elegant-card p { font-size: 0.78rem; }
  .btn-elegant { padding: 8px 20px; font-size: 0.75rem; }
}

/* ================================
   ℹ️ INFO SECTION – SWISS RENT A CAR
   ================================ */
.info {
  padding: 100px 6%;
  background: #fff;
  color: #222;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ====== TEXT SIDE ====== */
.info-text {
  flex: 1.2;
}

.info-text h2 {
  position: relative;
  font-size: 2.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.3;
  padding-left: 18px;
  display: inline-block;
}

.info-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: #d21f26;
  border-radius: 2px;
}

.info-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.info-text strong {
  color: #000;
  font-weight: 600;
}

/* ====== IMAGE SIDE ====== */
.info-img {
  flex: 1;
  text-align: center;
}

.info-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.info-img img:hover {
  transform: scale(1.03);
}

/* 🚗 CTA BUTTON */
.info .btn-rent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d21f26;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.info .btn-rent i {
  font-size: 1.2rem;
}

.info .btn-rent:hover {
  background: #b81a21;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(210, 31, 38, 0.4);
}

/* ===========================================================
   📱 RESPONSIVE DESIGN – SRAC Compact Layout
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .info {
    padding: 90px 5%;
  }
  .info-container {
    gap: 40px;
  }
  .info-text h2 {
    font-size: 2.1rem;
  }
  .info-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .info-img img {
    max-width: 460px;
  }
  .info .btn-rent {
    padding: 13px 26px;
    font-size: 1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .info {
    padding: 80px 5%;
  }
  .info-container {
    gap: 35px;
  }
  .info-text h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  .info-text p {
    font-size: 0.98rem;
  }
  .info-img img {
    max-width: 420px;
  }
  .info .btn-rent {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .info {
    padding: 70px 5%;
  }
  .info-container {
    flex-direction: column;
    gap: 45px;
    text-align: center;
  }
  .info-text {
    flex: none;
    max-width: 600px;
  }
  .info-text h2 {
    font-size: 1.8rem;
    padding-left: 0;
  }
  .info-text h2::before {
    display: none;
  }
  .info-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .info-img img {
    max-width: 380px;
  }
  .info .btn-rent {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 11px 22px;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .info {
    padding: 60px 5%;
  }
  .info-container {
    gap: 35px;
  }
  .info-text h2 {
    font-size: 1.65rem;
  }
  .info-text p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .info-img img {
    max-width: 340px;
  }
  .info .btn-rent {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .info {
    padding: 55px 4%;
  }
  .info-container {
    gap: 30px;
  }
  .info-text h2 {
    font-size: 1.45rem;
  }
  .info-text p {
    font-size: 0.85rem;
  }
  .info-img img {
    max-width: 300px;
    border-radius: 16px;
  }
  .info .btn-rent {
    padding: 9px 18px;
    font-size: 0.8rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .info {
    padding: 50px 3%;
  }
  .info-text h2 {
    font-size: 1.3rem;
  }
  .info-text p {
    font-size: 0.8rem;
  }
  .info-img img {
    max-width: 270px;
  }
  .info .btn-rent {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

/* =============================================
⭐ REVIEWS SECTION – SWISS RENT A CAR FINAL RESPONSIVE EDITION
============================================= */

.reviews {
  background: #f4f6fb;
  padding: 8rem 2rem;
  border-radius: 20px;
  text-align: center;
}

.reviews-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #111;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.reviews-header p {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* === GRID === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === CARD === */
.review-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  padding: 1.4rem 1.3rem 1.1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* === USER TOP === */
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.review-user div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d21f26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.review-user h4 {
  font-size: 0.9rem;
  color: #111;
  font-weight: 600;
}

.review-user span {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0;
}

.google-icon {
  width: 20px;
  height: 20px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.5rem;
  color: #f5b400;
  font-size: 0.88rem;
}

/* === TEXT === */
.review-card p {
  color: #333;
  font-size: 0.88rem;
  line-height: 1.55;
  transition: max-height 0.4s ease;
  max-height: none;
}

/* === "Mehr anzeigen" minimalistischer Textlink === */
.btn-more {
  display: none;
  background: none;
  border: none;
  color: #d21f26;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.4rem;
  padding: 0;
  text-align: right;
  width: auto;
  float: right;
  appearance: none;
  -webkit-appearance: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.btn-more:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}
.btn-more:focus,
.btn-more:active {
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #d21f26 !important;
}

/* === GOOGLE BUTTON === */
.google-link {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.btn-google {
  display: inline-block;
  background: #d21f26;
  color: #fff !important;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-google:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SRAC STANDARD SCALE
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .reviews { padding: 6rem 2rem; }
  .reviews-header h2 { font-size: 2rem; }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1.8rem;
  }
  .btn-more { font-size: 0.78rem; }
  .btn-google {
    padding: 0.85rem 1.6rem;
    font-size: 0.95rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .reviews { padding: 5.5rem 1.8rem; }
  .reviews-header h2 { font-size: 1.8rem; }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 1.6rem;
  }
  .review-card p {
    font-size: 0.82rem;
    line-height: 1.45;
    max-height: 80px;
    overflow: hidden;
  }
  .review-card.expanded p { max-height: 600px; }
  .btn-more {
    display: inline-block;
    font-size: 0.74rem;
    margin-top: 0.3rem;
    text-align: center;
    float: none;
    width: 100%;
  }
  .btn-google {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 40px;
  }
  .google-link { margin-top: 2.6rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .reviews { padding: 5rem 1.6rem; }
  .reviews-header h2 { font-size: 1.65rem; }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1.4rem;
  }
  .review-card { padding: 1.1rem 0.9rem; }
  .review-card p { font-size: 0.8rem; }
  .btn-more { font-size: 0.7rem; margin-top: 0.25rem; }
  .btn-google {
    padding: 0.75rem 1.4rem;
    font-size: 0.86rem;
  }
  .google-link { margin-top: 2.4rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .reviews { padding: 4.2rem 1.3rem; }
  .reviews-header h2 { font-size: 1.55rem; }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1.1rem;
  }
  .review-card {
    padding: 1rem 0.8rem;
    border-radius: 13px;
  }
  .review-card p {
    font-size: 0.78rem;
    line-height: 1.4;
    max-height: 70px;
  }
  .btn-more { font-size: 0.68rem; margin-top: 0.2rem; opacity: 0.9; }
  .btn-google {
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 36px;
  }
  .google-link { margin-top: 2rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .reviews { padding: 3.8rem 1rem; }
  .reviews-header h2 { font-size: 1.4rem; }
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 0.9rem;
  }
  .review-card { padding: 0.9rem 0.75rem; }
  .review-card p {
    font-size: 0.75rem;
    line-height: 1.35;
    max-height: 65px;
  }
  .btn-more { font-size: 0.64rem; margin-top: 0.15rem; text-align: center; }
  .btn-google {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    border-radius: 34px;
  }
  .google-link { margin-top: 1.8rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .reviews-header h2 { font-size: 1.25rem; }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .review-card {
    padding: 0.8rem 0.65rem;
    border-radius: 12px;
  }
  .review-card p {
    font-size: 0.72rem;
    line-height: 1.3;
    max-height: 60px;
  }
  .btn-more { font-size: 0.6rem; margin-top: 0.1rem; opacity: 0.85; }
  .btn-google {
    padding: 0.5rem 0.9rem;
    font-size: 0.7rem;
    border-radius: 32px;
  }
  .google-link { margin-top: 1.5rem; }
}


/* 📍 OUR LOCATIONS SECTION */
.srac-locations {
  padding: 80px 8%;
  background: #fff;
}

.srac-locations-header {
  text-align: center;
  margin-bottom: 50px;
}

.srac-locations-header h2 {
  font-size: 2rem;
  color: #000;
  display: inline-block;
}

.srac-locations-underline {
  width: 60px;
  height: 3px;
  background: #d21f26;
  margin: 10px auto 20px;
  border-radius: 2px;
}

.srac-location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.srac-location-row.reverse {
  flex-direction: row-reverse;
}

.srac-location-info {
  flex: 1;
}

.srac-location-info h3 {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 8px;
}

.srac-location-info p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.srac-location-info i.fa-location-dot {
  color: #d21f26;
  margin-right: 8px;
}

.srac-location-contact p {
  margin: 5px 0;
}

.srac-location-contact i {
  color: #d21f26;
  margin-right: 8px;
}

.srac-location-contact a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.srac-payment {
  margin-top: 20px;
}

.srac-payment p {
  font-weight: 500;
  color: #000;
}

.srac-payment ul {
  margin: 10px 0 15px;
  padding-left: 20px;
  color: #444;
  line-height: 1.6;
}

.srac-note {
  font-size: 0.9rem;
  color: #777;
}

/* 💳 Payment Logos */
.srac-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.srac-icon-pay {
  width: 42px;
  height: auto;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.srac-icon-pay:hover {
  filter: grayscale(0);
}

.twint-icon {
  transform: scale(1.25);
}

.srac-location-map {
  flex: 1;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.srac-location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* =====================================================
   📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .srac-locations {
    padding: 70px 6%;
  }
  .srac-location-row {
    gap: 30px;
  }
  .srac-locations-header h2 {
    font-size: 1.9rem;
  }
  .srac-location-info h3 {
    font-size: 1.3rem;
  }
  .srac-location-info p {
    font-size: 0.98rem;
  }
  .srac-location-map {
    height: 280px;
  }
  .srac-icon-pay {
    width: 38px;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .srac-locations {
    padding: 65px 5%;
  }
  .srac-location-row {
    gap: 24px;
  }
  .srac-locations-header h2 {
    font-size: 1.8rem;
  }
  .srac-location-info h3 {
    font-size: 1.2rem;
  }
  .srac-location-info p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .srac-location-map {
    height: 260px;
  }
  .srac-icon-pay {
    width: 36px;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .srac-locations {
    padding: 60px 5%;
  }
  .srac-location-row {
    gap: 22px;
    margin-bottom: 55px;
  }
  .srac-location-info h3 {
    font-size: 1.15rem;
  }
  .srac-location-info p {
    font-size: 0.9rem;
  }
  .srac-payment p {
    font-size: 0.95rem;
  }
  .srac-payment ul {
    font-size: 0.9rem;
  }
  .srac-icon-pay {
    width: 34px;
  }
  .srac-location-map {
    height: 240px;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .srac-locations {
    padding: 55px 5%;
  }
  .srac-location-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 50px;
  }
  .srac-location-row.reverse {
    flex-direction: column;
  }
  .srac-location-info {
    order: 2;
  }
  .srac-location-map {
    order: 1;
    height: 220px;
    width: 100%;
  }
  .srac-locations-header {
    text-align: left;
  }
  .srac-locations-header h2 {
    font-size: 1.6rem;
  }
  .srac-locations-underline {
    margin-left: 0;
  }
  .srac-location-info h3 {
    font-size: 1.05rem;
  }
  .srac-location-info p,
  .srac-payment p,
  .srac-payment ul {
    font-size: 0.88rem;
  }
  .srac-icon-pay {
    width: 32px;
  }
  .srac-payment-icons {
    justify-content: flex-start;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .srac-locations {
    padding: 50px 4%;
  }
  .srac-locations-header h2 {
    font-size: 1.45rem;
  }
  .srac-location-info h3 {
    font-size: 1rem;
  }
  .srac-location-info p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .srac-location-map {
    height: 200px;
  }
  .srac-icon-pay {
    width: 30px;
  }
  .srac-payment p {
    font-size: 0.85rem;
  }
  .srac-note {
    font-size: 0.8rem;
  }
  .srac-locations-header {
    text-align: left;
  }
  .srac-locations-underline {
    margin-left: 0;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-locations {
    padding: 45px 3%;
  }
  .srac-locations-header h2 {
    font-size: 1.35rem;
  }
  .srac-location-info h3 {
    font-size: 0.95rem;
  }
  .srac-location-info p,
  .srac-payment p,
  .srac-payment ul {
    font-size: 0.8rem;
  }
  .srac-location-map {
    height: 180px;
  }
  .srac-icon-pay {
    width: 28px;
  }
  .srac-locations-header {
    text-align: left;
  }
  .srac-locations-underline {
    margin-left: 0;
  }
}



/* ==============================================
🤝 PARTNERS SECTION – Optimized Spacing & Responsive
=================================================*/

.partners-section {
  width: 100%;
  max-width: 1200px;
  margin: 3.5rem auto 4rem; /* ⬅️ vorher 5rem, jetzt kompakter */
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.partners-header {
  margin-bottom: 2rem;
}

.partners-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #000;
  text-align: center; /* bleibt zentriert */
}

.partners-header p {
  color: #555;
  font-size: 1.05rem;
  text-align: center;
}

/* === SLIDER === */
.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.partners-track {
  display: flex;
  flex-wrap: nowrap;
  width: calc(250px * 8);
  animation: partnersSlideMove 35s linear infinite;
  will-change: transform;
}

.partners-logo {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partners-logo img {
  width: 180px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.partners-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* === KEYFRAMES === */
@keyframes partnersSlideMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 4)); }
}

/* =====================================================
   📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .partners-section {
    margin: 3rem auto 3.5rem;
    padding: 0 1.2rem;
  }
  .partners-header h2 { font-size: 1.9rem; }
  .partners-header p { font-size: 1rem; }
  .partners-logo { flex: 0 0 220px; padding: 0.9rem; }
  .partners-logo img { width: 160px; }
  .partners-track { width: calc(220px * 8); animation-duration: 33s; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .partners-section { margin: 3rem auto 3.2rem; padding: 0 1rem; }
  .partners-header h2 { font-size: 1.8rem; }
  .partners-header p { font-size: 0.98rem; }
  .partners-logo { flex: 0 0 200px; padding: 0.8rem; }
  .partners-logo img { width: 145px; }
  .partners-track { width: calc(200px * 8); animation-duration: 31s; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .partners-section { margin: 2.8rem auto 3rem; padding: 0 0.9rem; }
  .partners-header h2 { font-size: 1.7rem; }
  .partners-header p { font-size: 0.95rem; }
  .partners-logo { flex: 0 0 170px; padding: 0.7rem; }
  .partners-logo img { width: 130px; }
  .partners-track { width: calc(170px * 8); animation-duration: 30s; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .partners-section {
    margin: 2.5rem auto 2.8rem;
    padding: 0 0.8rem;
    text-align: center; /* bleibt zentriert */
  }
  .partners-header { text-align: center; }
  .partners-header h2 { font-size: 1.55rem; }
  .partners-header p { font-size: 0.9rem; }
  .partners-logo { flex: 0 0 150px; padding: 0.6rem; }
  .partners-logo img { width: 115px; }
  .partners-track { width: calc(150px * 8); animation-duration: 28s; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .partners-section { margin: 2.3rem auto 2.6rem; padding: 0 0.7rem; }
  .partners-header h2 { font-size: 1.4rem; }
  .partners-header p { font-size: 0.85rem; }
  .partners-logo { flex: 0 0 130px; padding: 0.5rem; }
  .partners-logo img { width: 100px; }
  .partners-track { width: calc(130px * 8); animation-duration: 26s; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .partners-section { margin: 2rem auto 2.4rem; padding: 0 0.6rem; }
  .partners-header h2 { font-size: 1.3rem; }
  .partners-header p { font-size: 0.8rem; }
  .partners-logo { flex: 0 0 115px; padding: 0.4rem; }
  .partners-logo img { width: 90px; }
  .partners-track { width: calc(115px * 8); animation-duration: 24s; }
}

/* ==============================================
📞 STICKY CONTACT BUTTONS – Swiss Rent a Car
=================================================*/

/* === Grundlayout === */
.contact-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* Sichtbar nach Aktivierung */
.contact-buttons.show {
  opacity: 1;
  transform: translateY(0);
}

/* Gemeinsamer Stil */
.contact-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  opacity: 0.95;
}

/* === WhatsApp === */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(37,211,102,0.5);
}

/* === Call === */
.call-btn {
  background: linear-gradient(135deg, #d21f26, #b0161c);
}

.call-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(210,31,38,0.5);
}

/* === Kalender / Booking === */
.calendar-btn {
  background: linear-gradient(135deg, #d21f26 0%, #a51419 100%);
  color: #fff;
  border: 2px solid #a51419;
  position: relative;
}

.calendar-btn i {
  font-size: 1.4rem;
}

.calendar-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(135deg, #a51419 0%, #d21f26 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border-color: #8c1015;
}

.calendar-btn::after {
  display: none;
}


/* =====================================================
   📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .contact-buttons a {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .contact-buttons {
    bottom: 22px;
    right: 22px;
    gap: 10px;
  }
  .contact-buttons a {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .contact-buttons {
    bottom: 20px;
    right: 20px;
  }
  .contact-buttons a {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .contact-buttons {
    bottom: 18px;
    right: 18px;
    gap: 9px;
  }
  .contact-buttons a {
    width: 45px;
    height: 45px;
    font-size: 1.35rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .contact-buttons {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }
  .contact-buttons a {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .contact-buttons {
    bottom: 14px;
    right: 14px;
    gap: 7px;
  }
  .contact-buttons a {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}


/* ==============================================
⚫ FOOTER SECTION – Swiss Rent a Car Responsive
=================================================*/

.footer {
  background: #111;
  color: #ccc;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: #d21f26;
  border-radius: 2px;
}

/* Text */
.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #d21f26;
}

.footer ul li i {
  color: #d21f26;
  margin-right: 0.5rem;
}

/* Partner Button */
.partner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d21f26 0%, #b0161c 100%);
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(210, 31, 38, 0.4);
}

.partner-btn:hover {
  background: linear-gradient(135deg, #e7353d 0%, #d21f26 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(210, 31, 38, 0.5);
}

/* Socials */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d21f26;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bbb;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d21f26;
}


/* =====================================================
   📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .footer {
    padding: 4.5rem 1.8rem 2rem;
  }
  .footer h3 { font-size: 1.15rem; }
  .footer p, .footer ul li { font-size: 0.93rem; }
  .partner-btn { font-size: 0.88rem; padding: 0.55rem 1.2rem; }
  .social-links a { width: 36px; height: 36px; font-size: 1rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .footer {
    padding: 4rem 1.6rem 2rem;
  }
  .footer-container {
    gap: 2rem;
  }
  .footer h3 { font-size: 1.1rem; }
  .footer p, .footer ul li { font-size: 0.9rem; }
  .partner-btn { font-size: 0.85rem; }
  .social-links a { width: 34px; height: 34px; font-size: 1rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .footer {
    padding: 3.5rem 1.5rem 1.8rem;
  }
  .footer h3 { font-size: 1.05rem; }
  .footer p, .footer ul li { font-size: 0.88rem; line-height: 1.55; }
  .partner-btn { font-size: 0.83rem; padding: 0.5rem 1.1rem; }
  .social-links a { width: 32px; height: 32px; font-size: 0.95rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .footer {
    padding: 3rem 1.3rem 1.8rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
  .footer h3 { font-size: 1rem; }
  .footer p, .footer ul li { font-size: 0.85rem; }
  .partner-btn { font-size: 0.8rem; padding: 0.45rem 1rem; }
  .social-links { justify-content: flex-start; }
  .social-links a { width: 30px; height: 30px; font-size: 0.9rem; }
  .footer-bottom p, .footer-links a { font-size: 0.85rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .footer {
    padding: 2.8rem 1.2rem 1.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.6rem;
  }
  .footer h3 { font-size: 0.98rem; }
  .footer p, .footer ul li { font-size: 0.83rem; }
  .partner-btn { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
  .social-links a { width: 28px; height: 28px; font-size: 0.85rem; }
  .footer-bottom p, .footer-links a { font-size: 0.8rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .footer {
    padding: 2.5rem 1rem 1.3rem;
  }
  .footer h3 { font-size: 0.95rem; }
  .footer p, .footer ul li { font-size: 0.8rem; }
  .partner-btn { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  .social-links a { width: 26px; height: 26px; font-size: 0.8rem; }
  .footer-bottom p, .footer-links a { font-size: 0.78rem; }
}



/*iframe booking*/

.booking-frame-wrap {
  width: 100%;
  margin-top: 120px; /* Abstand, damit der Inhalt nicht unter der Navbar liegt */
}

@media (max-width: 768px) {
  .booking-frame-wrap {
    margin-top: 90px; /* etwas kleinerer Abstand für mobile Navbars */
  }
}

/* =============================================
📜 IMPRESSUM STYLING – Swiss Rent A Car Responsive
============================================= */

.impressum {
  background: #f8f9fb;
  color: #111;
  padding: 5rem 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

.impressum-container {
  max-width: 900px;
  margin: 0 auto;
}

.impressum h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2rem;
  color: #b30000; /* edles Rot */
}

.impressum-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #b30000;
}

.impressum-content p {
  margin-bottom: 1rem;
  color: #333;
}

.impressum a {
  color: #b30000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.impressum a:hover {
  text-decoration: underline;
  color: #800000;
}

.impressum-footer {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}


/* =====================================================
📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .impressum {
    padding: 4.5rem 1.3rem;
  }
  .impressum h2 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
  .impressum-content h3 {
    font-size: 1.25rem;
  }
  .impressum-content p {
    font-size: 1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .impressum {
    padding: 4rem 1.2rem;
  }
  .impressum h2 {
    font-size: 1.9rem;
    margin-bottom: 1.6rem;
  }
  .impressum-content h3 {
    font-size: 1.2rem;
  }
  .impressum-content p {
    font-size: 0.98rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .impressum {
    padding: 3.5rem 1.2rem;
  }
  .impressum-container {
    max-width: 700px;
  }
  .impressum h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .impressum-content h3 {
    font-size: 1.15rem;
  }
  .impressum-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .impressum-footer {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .impressum {
    padding: 3rem 1rem;
  }
  .impressum h2 {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .impressum-content h3 {
    font-size: 1.1rem;
  }
  .impressum-content p {
    font-size: 0.9rem;
  }
  .impressum-footer {
    font-size: 0.85rem;
    margin-top: 2.5rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .impressum {
    padding: 2.8rem 0.9rem;
  }
  .impressum h2 {
    font-size: 1.45rem;
    margin-bottom: 1.3rem;
  }
  .impressum-content h3 {
    font-size: 1.05rem;
  }
  .impressum-content p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .impressum-footer {
    font-size: 0.83rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .impressum {
    padding: 2.5rem 0.8rem;
  }
  .impressum h2 {
    font-size: 1.35rem;
  }
  .impressum-content h3 {
    font-size: 1rem;
  }
  .impressum-content p {
    font-size: 0.85rem;
  }
  .impressum-footer {
    font-size: 0.8rem;
  }
}

/* =============================================
🔒 DATENSCHUTZERKLÄRUNG STYLING – Swiss Rent A Car Responsive
============================================= */

.datenschutz {
  background: #ffffff;
  color: #111;
  padding: 5rem 1.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

.datenschutz-container {
  max-width: 900px;
  margin: 0 auto;
}

.datenschutz h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2rem;
  color: #b30000; /* edles Rot */
}

.datenschutz-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #b30000;
}

.datenschutz-content p {
  margin-bottom: 1rem;
  color: #333;
}

.datenschutz a {
  color: #b30000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.datenschutz a:hover {
  text-decoration: underline;
  color: #800000;
}

.datenschutz-footer {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}


/* =====================================================
📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .datenschutz {
    padding: 4.5rem 1.3rem;
  }
  .datenschutz h2 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
  .datenschutz-content h3 {
    font-size: 1.25rem;
  }
  .datenschutz-content p {
    font-size: 1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .datenschutz {
    padding: 4rem 1.2rem;
  }
  .datenschutz h2 {
    font-size: 1.9rem;
    margin-bottom: 1.6rem;
  }
  .datenschutz-content h3 {
    font-size: 1.2rem;
  }
  .datenschutz-content p {
    font-size: 0.98rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .datenschutz {
    padding: 3.5rem 1.2rem;
  }
  .datenschutz-container {
    max-width: 700px;
  }
  .datenschutz h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .datenschutz-content h3 {
    font-size: 1.15rem;
  }
  .datenschutz-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .datenschutz-footer {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .datenschutz {
    padding: 3rem 1rem;
  }
  .datenschutz h2 {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .datenschutz-content h3 {
    font-size: 1.1rem;
  }
  .datenschutz-content p {
    font-size: 0.9rem;
  }
  .datenschutz-footer {
    font-size: 0.85rem;
    margin-top: 2.5rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .datenschutz {
    padding: 2.8rem 0.9rem;
  }
  .datenschutz h2 {
    font-size: 1.45rem;
    margin-bottom: 1.3rem;
  }
  .datenschutz-content h3 {
    font-size: 1.05rem;
  }
  .datenschutz-content p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .datenschutz-footer {
    font-size: 0.83rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .datenschutz {
    padding: 2.5rem 0.8rem;
  }
  .datenschutz h2 {
    font-size: 1.35rem;
  }
  .datenschutz-content h3 {
    font-size: 1rem;
  }
  .datenschutz-content p {
    font-size: 0.85rem;
  }
  .datenschutz-footer {
    font-size: 0.8rem;
  }
}

/* =============================================
📄 AGB SECTION – Swiss Rent a Car Responsive
============================================= */

.agb-section {
  background: #f8f8f8;
  padding: 6rem 2rem;
}

.agb-container {
  max-width: 950px;
  margin: 0 auto;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.75;
}

.agb-container h1 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #111;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.agb-container h2 {
  color: #d21f26;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.agb-container p,
.agb-container ul {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.agb-container ul {
  padding-left: 1.2rem;
  list-style: disc;
}


/* =====================================================
📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .agb-section {
    padding: 5.5rem 1.8rem;
  }
  .agb-container h1 {
    font-size: 2.3rem;
    margin-bottom: 2.2rem;
  }
  .agb-container h2 {
    font-size: 1.25rem;
  }
  .agb-container p,
  .agb-container ul {
    font-size: 0.98rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .agb-section {
    padding: 5rem 1.6rem;
  }
  .agb-container {
    max-width: 850px;
  }
  .agb-container h1 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }
  .agb-container h2 {
    font-size: 1.2rem;
  }
  .agb-container p,
  .agb-container ul {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .agb-section {
    padding: 4.2rem 1.4rem;
  }
  .agb-container {
    max-width: 700px;
  }
  .agb-container h1 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
  }
  .agb-container h2 {
    font-size: 1.15rem;
  }
  .agb-container p,
  .agb-container ul {
    font-size: 0.93rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .agb-section {
    padding: 3.5rem 1.2rem;
  }
  .agb-container h1 {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .agb-container h2 {
    font-size: 1.1rem;
  }
  .agb-container p,
  .agb-container ul {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .agb-section {
    padding: 3rem 1rem;
  }
  .agb-container {
    max-width: 95%;
  }
  .agb-container h1 {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .agb-container h2 {
    font-size: 1.05rem;
  }
  .agb-container p,
  .agb-container ul {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .agb-section {
    padding: 2.6rem 0.9rem;
  }
  .agb-container h1 {
    font-size: 1.45rem;
  }
  .agb-container h2 {
    font-size: 1rem;
  }
  .agb-container p,
  .agb-container ul {
    font-size: 0.85rem;
  }
}
/* =====================================================
🧱 STICKY NAVBAR OFFSET – für alle Legal Sections
===================================================== */

.impressum,
.datenschutz,
.agb-section {
  margin-top: 120px; /* Desktop Abstand unter Navbar */
}

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .impressum,
  .datenschutz,
  .agb-section {
    margin-top: 100px;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .impressum,
  .datenschutz,
  .agb-section {
    margin-top: 90px;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .impressum,
  .datenschutz,
  .agb-section {
    margin-top: 80px;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .impressum,
  .datenschutz,
  .agb-section {
    margin-top: 70px;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .impressum,
  .datenschutz,
  .agb-section {
    margin-top: 65px;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .impressum,
  .datenschutz,
  .agb-section {
    margin-top: 60px;
  }
}



/*vehicle.html*/

/* =============================================
🚘 VEHICLE SELECTION – Swiss Rent Elegance Edition
============================================= */
.vehicle-select {
  background: linear-gradient(145deg, #f6f7f8, #e9eaec);
  padding: 8rem 2rem 6rem;
  text-align: center;
}

.select-header {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.select-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.select-header p {
  color: #555;
  font-size: 1.05rem;
}

/* === GRID === */
.vehicle-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

/* === CARD === */
.vehicle-item {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
}

.vehicle-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* === IMAGE === */
.image-wrap {
  background-size: cover;
  background-position: center;
  height: 220px;
  width: 100%;
}

/* === INFO === */
.vehicle-info {
  padding: 1.6rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.vehicle-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #111;
}

.vehicle-info p {
  color: #666;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* === BUTTON === */
.vehicle-btn-wrap {
  margin-top: 1.2rem;
}

.btn-view {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-view:hover {
  background: #b9191f;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .vehicle-select {
    padding: 75px 5%;
  }
  .select-header h2 {
    font-size: 2rem;
  }
  .select-header p {
    font-size: 1.02rem;
    margin-bottom: 40px;
  }
  .vehicle-showcase {
    gap: 28px;
  }
  .vehicle-item {
    max-width: 280px;
  }
  .image-wrap {
    height: 200px;
  }
  .vehicle-info {
    padding: 22px 16px 28px;
  }
  .vehicle-info h3 {
    font-size: 1.2rem;
  }
  .vehicle-info p {
    font-size: 0.93rem;
  }
  .btn-view {
    padding: 9px 22px;
    font-size: 0.93rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .vehicle-select {
    padding: 65px 5%;
  }
  .select-header h2 {
    font-size: 1.8rem;
  }
  .select-header p {
    font-size: 0.98rem;
    margin-bottom: 35px;
  }
  .vehicle-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .vehicle-item {
    max-width: 260px;
  }
  .image-wrap {
    height: 180px;
  }
  .vehicle-info {
    padding: 20px 15px 26px;
  }
  .vehicle-info h3 {
    font-size: 1.15rem;
  }
  .vehicle-info p {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }
  .btn-view {
    padding: 8px 20px;
    font-size: 0.86rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .vehicle-select {
    padding: 60px 4%;
  }
  .select-header h2 {
    font-size: 1.65rem;
  }
  .select-header p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .vehicle-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vehicle-item {
    max-width: 250px;
  }
  .image-wrap {
    height: 160px;
  }
  .vehicle-info {
    padding: 18px 14px 22px;
  }
  .vehicle-info h3 {
    font-size: 1.05rem;
  }
  .vehicle-info p {
    font-size: 0.85rem;
  }
  .btn-view {
    padding: 7px 18px;
    font-size: 0.82rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .vehicle-select {
    padding: 50px 4%;
  }
  .select-header h2 {
    font-size: 1.55rem;
  }
  .select-header p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  .vehicle-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vehicle-item {
    max-width: 220px;
  }
  .image-wrap {
    height: 145px;
  }
  .vehicle-info {
    padding: 16px 12px 20px;
  }
  .vehicle-info h3 {
    font-size: 1rem;
  }
  .vehicle-info p {
    font-size: 0.8rem;
  }
  .btn-view {
    padding: 7px 16px;
    font-size: 0.78rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .vehicle-select {
    padding: 45px 3.5%;
  }
  .select-header h2 {
    font-size: 1.4rem;
  }
  .select-header p {
    font-size: 0.8rem;
    margin-bottom: 22px;
  }
  .vehicle-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .vehicle-item {
    max-width: 200px;
    border-radius: 14px;
  }
  .image-wrap {
    height: 130px;
  }
  .vehicle-info {
    padding: 14px 10px 18px;
  }
  .vehicle-info h3 {
    font-size: 0.9rem;
  }
  .vehicle-info p {
    font-size: 0.76rem;
  }
  .btn-view {
    padding: 6px 14px;
    font-size: 0.73rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .vehicle-select {
    padding: 40px 3%;
  }
  .select-header h2 {
    font-size: 1.25rem;
  }
  .select-header p {
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
  .vehicle-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vehicle-item {
    max-width: 100%;
    border-radius: 12px;
  }
  .image-wrap {
    height: 120px;
  }
  .vehicle-info {
    padding: 12px 10px 16px;
  }
  .vehicle-info h3 {
    font-size: 0.85rem;
  }
  .vehicle-info p {
    font-size: 0.7rem;
  }
  .btn-view {
    padding: 5px 12px;
    font-size: 0.68rem;
  }
}

/* =============================================
🚘 RENTAL BENEFITS – Swiss Rent Compact Scaling
============================================= */

.rental-benefits {
  background: #f4f6fb;
  padding: 80px 5%;
  border-radius: 20px;
  text-align: center;
}

.rental-benefits-header {
  margin-bottom: 60px;
}

.rental-benefits-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.rental-benefits-header p {
  font-size: 1rem;
  color: #555;
}

/* === GRID === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* === CARD === */
.benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.benefit-item i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .rental-benefits {
    padding: 75px 5%;
  }
  .rental-benefits-header h2 {
    font-size: 2rem;
  }
  .rental-benefits-header p {
    font-size: 1.02rem;
    margin-bottom: 40px;
  }
  .benefits-grid {
    gap: 28px;
  }
  .benefit-item {
    padding: 1.8rem 1.4rem;
  }
  .benefit-item i {
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
  }
  .benefit-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
  .benefit-item p {
    font-size: 0.93rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .rental-benefits {
    padding: 65px 5%;
  }
  .rental-benefits-header h2 {
    font-size: 1.8rem;
  }
  .rental-benefits-header p {
    font-size: 0.98rem;
    margin-bottom: 35px;
  }
  .benefits-grid {
    gap: 22px;
  }
  .benefit-item {
    padding: 1.6rem 1.3rem;
  }
  .benefit-item i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
  }
  .benefit-item p {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .rental-benefits {
    padding: 60px 4%;
  }
  .rental-benefits-header h2 {
    font-size: 1.65rem;
  }
  .rental-benefits-header p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .benefit-item {
    padding: 1.5rem 1.2rem;
  }
  .benefit-item i {
    font-size: 1.7rem;
  }
  .benefit-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  .benefit-item p {
    font-size: 0.85rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .rental-benefits {
    padding: 50px 4%;
  }
  .rental-benefits-header h2 {
    font-size: 1.55rem;
  }
  .rental-benefits-header p {
    font-size: 0.85rem;
    margin-bottom: 25px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .benefit-item {
    padding: 1.4rem 1rem;
    border-radius: 14px;
  }
  .benefit-item i {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }
  .benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
  .benefit-item p {
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .rental-benefits {
    padding: 45px 3.5%;
  }
  .rental-benefits-header h2 {
    font-size: 1.4rem;
  }
  .rental-benefits-header p {
    font-size: 0.8rem;
    margin-bottom: 22px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .benefit-item {
    padding: 1.2rem 0.9rem;
  }
  .benefit-item i {
    font-size: 1.55rem;
    margin-bottom: 0.6rem;
  }
  .benefit-item h3 {
    font-size: 0.9rem;
  }
  .benefit-item p {
    font-size: 0.76rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .rental-benefits {
    padding: 40px 3%;
  }
  .rental-benefits-header h2 {
    font-size: 1.25rem;
  }
  .rental-benefits-header p {
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .benefit-item {
    padding: 1rem 0.8rem;
    border-radius: 12px;
  }
  .benefit-item i {
    font-size: 1.4rem;
  }
  .benefit-item h3 {
    font-size: 0.85rem;
  }
  .benefit-item p {
    font-size: 0.7rem;
  }
}

/* =============================================
📰 SEO BLOG SECTION – Swiss Rent Compact Scaling
============================================= */

.rental-blog {
  background: linear-gradient(145deg, #fafafa, #f1f1f1);
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  text-align: left;
}

.blog-container {
  max-width: 950px;
  color: #333;
  line-height: 1.75;
  font-size: 1.05rem;
  font-family: 'Open Sans', sans-serif;
}

.blog-container h2 {
  font-size: 2.2rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 1.8rem;
  text-align: center;
}

.blog-container p {
  margin-bottom: 1.3rem;
}

.blog-container strong {
  color: #d21f26;
  font-weight: 600;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .rental-blog {
    padding: 75px 5%;
  }
  .blog-container h2 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
  .blog-container {
    font-size: 1.02rem;
    line-height: 1.7;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .rental-blog {
    padding: 65px 5%;
  }
  .blog-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }
  .blog-container {
    font-size: 0.98rem;
    line-height: 1.68;
  }
  .blog-container p {
    margin-bottom: 1.1rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .rental-blog {
    padding: 60px 4%;
  }
  .blog-container h2 {
    font-size: 1.65rem;
    margin-bottom: 1.3rem;
  }
  .blog-container {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .rental-blog {
    padding: 50px 4%;
  }
  .blog-container h2 {
    font-size: 1.55rem;
    margin-bottom: 1.2rem;
  }
  .blog-container {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .blog-container p {
    margin-bottom: 1rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .rental-blog {
    padding: 45px 3.5%;
  }
  .blog-container h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .blog-container {
    font-size: 0.83rem;
    line-height: 1.55;
  }
  .blog-container p {
    margin-bottom: 0.9rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .rental-blog {
    padding: 40px 3%;
  }
  .blog-container h2 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
  }
  .blog-container {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .blog-container p {
    margin-bottom: 0.8rem;
  }
}

/* =============================================
🚗 HERO – Auto / Lieferwagen / Minibus-Mieten in Zürich
   (mit Top-Offset für fixe Navbar + Responsive Scaling)
============================================= */

.hero-auto {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh; /* 🔹 leicht grösser für optischen Ausgleich */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 5% 90px; /* 🔹 Extra Top-Padding für fixe Navbar */
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

/* === OVERLAY === */
.hero-auto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* === CONTENT === */
.hero-auto-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-auto-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
}

.hero-auto-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  color: #f2f2f2;
}

/* === BUTTONS === */
.hero-auto-btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.hero-auto-btns .btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-auto-btns .btn-primary {
  background: #d21f26;
  color: #fff;
}

.hero-auto-btns .btn-primary:hover {
  background: #b7181e;
}

.hero-auto-btns .btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-auto-btns .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === FEATURES === */
.hero-auto-features {
  list-style: none;
  margin-top: 1.8rem;
  padding: 0;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  font-size: 1rem;
}

.hero-auto-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-auto-features i {
  color: #d21f26;
  font-size: 1.1rem;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .hero-auto {
    padding: 150px 5% 80px;
    min-height: 65vh;
  }
  .hero-auto-content h1 {
    font-size: 2.4rem;
  }
  .hero-auto-content p {
    font-size: 1.02rem;
    margin-bottom: 2rem;
  }
  .hero-auto-btns .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
  }
  .hero-auto-features {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .hero-auto {
    padding: 140px 5% 75px;
    min-height: 60vh;
  }
  .hero-auto-content h1 {
    font-size: 2.1rem;
  }
  .hero-auto-content p {
    font-size: 0.98rem;
  }
  .hero-auto-btns {
    gap: 1rem;
  }
  .hero-auto-btns .btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
  .hero-auto-features {
    font-size: 0.9rem;
    gap: 0.45rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .hero-auto {
    padding: 130px 4% 70px;
    min-height: 55vh;
  }
  .hero-auto-content h1 {
    font-size: 1.9rem;
  }
  .hero-auto-content p {
    font-size: 0.9rem;
  }
  .hero-auto-btns .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  .hero-auto-features {
    font-size: 0.88rem;
    gap: 0.4rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .hero-auto {
    padding: 125px 4% 65px;
    min-height: 52vh;
  }
  .hero-auto-content h1 {
    font-size: 1.7rem;
  }
  .hero-auto-content p {
    font-size: 0.85rem;
    margin-bottom: 1.6rem;
  }
  .hero-auto-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .hero-auto-btns .btn {
    width: 75%;
    padding: 0.7rem 1.3rem;
    font-size: 0.8rem;
  }
  .hero-auto-features {
    font-size: 0.83rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .hero-auto {
    padding: 120px 3.5% 60px;
    min-height: 48vh;
  }
  .hero-auto-content h1 {
    font-size: 1.5rem;
  }
  .hero-auto-content p {
    font-size: 0.8rem;
  }
  .hero-auto-btns .btn {
    width: 80%;
    padding: 0.65rem 1.2rem;
    font-size: 0.75rem;
  }
  .hero-auto-features {
    font-size: 0.78rem;
    gap: 0.35rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .hero-auto {
    padding: 110px 3% 55px;
    min-height: 45vh;
  }
  .hero-auto-content h1 {
    font-size: 1.35rem;
  }
  .hero-auto-content p {
    font-size: 0.75rem;
  }
  .hero-auto-btns .btn {
    width: 85%;
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }
  .hero-auto-features {
    font-size: 0.72rem;
  }
}



/* =============================================
🚘 FLEET SECTION – Swiss Rent Compact Scaling
============================================= */

.fleet {
  background: #f9f9f9;
  padding: 80px 5%;
  text-align: center;
}

.fleet-header h2 {
  font-size: 2.2rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.fleet-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d21f26;
  border-radius: 2px;
}
.fleet-header p {
  color: #555;
  margin-top: 1rem;
  font-size: 1rem;
}

/* === GRID === */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1150px;
  margin: 4rem auto 0;
}

/* === CARD === */
.fleet-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(210,31,38,0.15);
}

/* === BRAND LOGO === */
.brand-logo {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
}

/* === IMAGE === */
.fleet-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  display: block;
}

/* === INFO === */
.fleet-info h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 1rem;
}

/* === SPECS === */
.specs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #555;
}

/* === BUTTON === */
.btn-fleet {
  background: #d21f26;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-fleet:hover {
  background: #b81a21;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(210, 31, 38, 0.4);
}

/* === ICON HOVER EFFECTS === */
.fleet-card:hover .spec svg {
  filter: drop-shadow(0 0 6px rgba(210, 31, 38, 0.5));
  transform: scale(1.08);
  transition: all 0.3s ease;
}
.spec svg {
  transition: all 0.3s ease;
}
.fleet-card:hover .brand-logo svg {
  filter: drop-shadow(0 0 8px rgba(210, 31, 38, 0.6));
  transform: scale(1.1);
  transition: all 0.4s ease;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .fleet {
    padding: 75px 5%;
  }
  .fleet-header h2 {
    font-size: 2rem;
  }
  .fleet-header p {
    font-size: 1.02rem;
    margin-top: 0.8rem;
  }
  .fleet-grid {
    gap: 28px;
  }
  .fleet-img {
    height: 220px;
  }
  .fleet-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .spec {
    font-size: 0.93rem;
  }
  .btn-fleet {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .fleet {
    padding: 65px 5%;
  }
  .fleet-header h2 {
    font-size: 1.8rem;
  }
  .fleet-header p {
    font-size: 0.98rem;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .fleet-img {
    height: 200px;
  }
  .fleet-info h3 {
    font-size: 1.1rem;
  }
  .spec {
    font-size: 0.88rem;
  }
  .btn-fleet {
    padding: 0.7rem 1.4rem;
    font-size: 0.86rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .fleet {
    padding: 60px 4%;
  }
  .fleet-header h2 {
    font-size: 1.65rem;
  }
  .fleet-header p {
    font-size: 0.9rem;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .fleet-img {
    height: 180px;
  }
  .fleet-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }
  .spec {
    font-size: 0.85rem;
  }
  .btn-fleet {
    padding: 0.65rem 1.3rem;
    font-size: 0.82rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .fleet {
    padding: 50px 4%;
  }
  .fleet-header h2 {
    font-size: 1.55rem;
  }
  .fleet-header p {
    font-size: 0.85rem;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fleet-card {
    border-radius: 16px;
    padding: 1.8rem 1.3rem 2rem;
  }
  .fleet-img {
    height: 170px;
  }
  .fleet-info h3 {
    font-size: 1rem;
  }
  .spec {
    font-size: 0.8rem;
  }
  .btn-fleet {
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .fleet {
    padding: 45px 3.5%;
  }
  .fleet-header h2 {
    font-size: 1.4rem;
  }
  .fleet-header p {
    font-size: 0.8rem;
  }
  .fleet-grid {
    gap: 16px;
  }
  .fleet-card {
    border-radius: 14px;
  }
  .fleet-img {
    height: 160px;
  }
  .fleet-info h3 {
    font-size: 0.9rem;
  }
  .spec {
    font-size: 0.76rem;
  }
  .btn-fleet {
    padding: 0.55rem 1.1rem;
    font-size: 0.73rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .fleet {
    padding: 40px 3%;
  }
  .fleet-header h2 {
    font-size: 1.25rem;
  }
  .fleet-header p {
    font-size: 0.75rem;
  }
  .fleet-grid {
    gap: 14px;
  }
  .fleet-card {
    border-radius: 12px;
    padding: 1.5rem 1rem 1.8rem;
  }
  .fleet-img {
    height: 140px;
  }
  .fleet-info h3 {
    font-size: 0.85rem;
  }
  .spec {
    font-size: 0.7rem;
  }
  .btn-fleet {
    padding: 0.5rem 1rem;
    font-size: 0.68rem;
  }
}



/*faq*/

/* =============================================
❓ FAQ SECTION – Swiss Rent Compact Scaling
============================================= */

.faq {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 5%;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.faq-header p {
  color: #555;
  font-size: 1rem;
}

/* === FAQ ITEM === */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.8rem;
}

/* === BUTTON / QUESTION === */
.faq .faq-question {
  all: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333 !important;
  padding: 1rem 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq .faq-question:hover {
  color: #333 !important;
  background-color: transparent !important;
}

/* === ICONS === */
.faq .faq-question i {
  transition: transform 0.3s ease;
  color: #888 !important;
}

/* === ANSWER === */
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq .faq-answer p {
  padding: 0 0 1rem;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq .faq-answer a {
  color: #d21f26;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.faq .faq-answer a:hover {
  color: #a00000;
  text-decoration: none;
}

/* === AKTIVES ELEMENT === */
.faq .faq-item.active .faq-answer {
  max-height: 400px;
}

.faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #d21f26 !important;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .faq {
    margin: 75px auto;
    padding: 0 5%;
  }
  .faq-header h2 {
    font-size: 2rem;
  }
  .faq-header p {
    font-size: 1.02rem;
  }
  .faq .faq-question {
    font-size: 1rem;
    padding: 0.9rem 0;
  }
  .faq .faq-answer p {
    font-size: 0.93rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .faq {
    margin: 65px auto;
    padding: 0 5%;
  }
  .faq-header h2 {
    font-size: 1.8rem;
  }
  .faq-header p {
    font-size: 0.98rem;
  }
  .faq .faq-question {
    font-size: 0.95rem;
    padding: 0.85rem 0;
  }
  .faq .faq-answer p {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .faq {
    margin: 60px auto;
    padding: 0 4%;
  }
  .faq-header h2 {
    font-size: 1.65rem;
  }
  .faq-header p {
    font-size: 0.9rem;
  }
  .faq .faq-question {
    font-size: 0.9rem;
    padding: 0.8rem 0;
  }
  .faq .faq-answer p {
    font-size: 0.85rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .faq {
    margin: 50px auto;
    padding: 0 4%;
  }
  .faq-header h2 {
    font-size: 1.55rem;
  }
  .faq-header p {
    font-size: 0.85rem;
  }
  .faq .faq-question {
    font-size: 0.88rem;
    padding: 0.75rem 0;
  }
  .faq .faq-answer p {
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .faq {
    margin: 45px auto;
    padding: 0 3.5%;
  }
  .faq-header h2 {
    font-size: 1.4rem;
  }
  .faq-header p {
    font-size: 0.8rem;
  }
  .faq .faq-question {
    font-size: 0.83rem;
    padding: 0.7rem 0;
  }
  .faq .faq-answer p {
    font-size: 0.76rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .faq {
    margin: 40px auto;
    padding: 0 3%;
  }
  .faq-header h2 {
    font-size: 1.25rem;
  }
  .faq-header p {
    font-size: 0.75rem;
  }
  .faq .faq-question {
    font-size: 0.8rem;
    padding: 0.65rem 0;
  }
  .faq .faq-answer p {
    font-size: 0.72rem;
  }
}


/*fuehrerausweis.html*/

/* ============================================
🚗 FÜHRERAUSWEIS SEITE – Swiss Rent Compact Scaling
============================================ */

.license-section {
  background: #f9f9f9;
  padding: 12rem 5% 8rem; /* 🔹 oben Platz für Topbar+Navbar */
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.license-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* === HEADER === */
.license-header {
  text-align: center;
}

.license-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.2rem;
}

.license-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* === ARTICLE BOX === */
.license-article {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.license-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.license-article h2 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.license-article i {
  color: var(--primary-red, #d21f26);
  font-size: 1.4rem;
}

.license-article p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.license-article ul {
  margin: 0 0 1.5rem 1.3rem;
  color: #444;
  line-height: 1.7;
}

/* === INFO BOX === */
.license-info {
  background: #fff5f5;
  border-left: 5px solid var(--primary-red, #d21f26);
  padding: 1.8rem 2rem;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.license-info a {
  color: var(--primary-red, #d21f26);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.license-info a:hover {
  color: #900;
  text-decoration: none;
}

/* === LINK BOX === */
.license-link {
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.license-link a {
  color: var(--primary-red, #d21f26);
  font-weight: 600;
  text-decoration: underline;
}

.license-link a:hover {
  text-decoration: none;
  color: #900;
}

/* === HERO & IMAGES === */
.license-hero img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.license-image {
  margin: 2rem 0;
  text-align: center;
}

.license-image img {
  max-width: 90%;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .license-section {
    padding: 10rem 5% 7rem;
  }
  .license-header h1 {
    font-size: 2.3rem;
  }
  .license-header p {
    font-size: 1.02rem;
  }
  .license-article {
    padding: 2.2rem;
  }
  .license-article h2 {
    font-size: 1.4rem;
  }
  .license-article p,
  .license-info {
    font-size: 1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .license-section {
    padding: 9rem 5% 6.5rem;
  }
  .license-header h1 {
    font-size: 2rem;
  }
  .license-header p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .license-article {
    padding: 2rem;
    border-radius: 14px;
  }
  .license-article h2 {
    font-size: 1.3rem;
  }
  .license-article p,
  .license-info {
    font-size: 0.95rem;
  }
  .license-image img {
    max-width: 92%;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .license-section {
    padding: 8.5rem 4% 6rem;
  }
  .license-header h1 {
    font-size: 1.8rem;
  }
  .license-header p {
    font-size: 0.9rem;
  }
  .license-article {
    padding: 1.8rem;
  }
  .license-article h2 {
    font-size: 1.2rem;
  }
  .license-article p,
  .license-info {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .license-section {
    padding: 8rem 4% 5.5rem;
  }
  .license-header h1 {
    font-size: 1.65rem;
  }
  .license-header p {
    font-size: 0.85rem;
  }
  .license-article {
    padding: 1.6rem;
    border-radius: 12px;
  }
  .license-article h2 {
    font-size: 1.1rem;
  }
  .license-article p,
  .license-info {
    font-size: 0.83rem;
  }
  .license-info {
    padding: 1.5rem 1.6rem;
  }
  .license-image img {
    max-width: 95%;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .license-section {
    padding: 7.5rem 3.5% 5rem;
  }
  .license-header h1 {
    font-size: 1.45rem;
  }
  .license-header p {
    font-size: 0.8rem;
  }
  .license-article {
    padding: 1.4rem;
  }
  .license-article h2 {
    font-size: 1rem;
  }
  .license-article p,
  .license-info {
    font-size: 0.78rem;
  }
  .license-info {
    padding: 1.3rem 1.4rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .license-section {
    padding: 7rem 3% 4.5rem;
  }
  .license-header h1 {
    font-size: 1.3rem;
  }
  .license-header p {
    font-size: 0.75rem;
  }
  .license-article {
    padding: 1.2rem;
  }
  .license-article h2 {
    font-size: 0.95rem;
  }
  .license-article p,
  .license-info {
    font-size: 0.72rem;
  }
  .license-info {
    padding: 1.2rem;
  }
}


/*auto.html, lieferwagen,mini van/bus*/ 

/* =============================================
✨ SEO BLOG SECTION – Swiss Rent Compact Scaling
============================================= */

.seo-blog {
  background: linear-gradient(145deg, #f9fafb, #ffffff);
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  text-align: left;
}

.blog-container {
  max-width: 900px;
}

.seo-blog h2 {
  font-size: 2.4rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.seo-blog h3 {
  font-size: 1.6rem;
  color: #d21f26;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.seo-blog p {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

/* === KEYWORDS GRID === */
.seo-keywords {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.seo-keywords li {
  background: #f4f5f7;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-keywords li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* === CTA BUTTON === */
.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-btn {
  background: #d21f26;
  color: #fff !important;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #b8181e;
  transform: scale(1.05);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (COMPACT VERSION)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .seo-blog {
    padding: 75px 5%;
  }
  .seo-blog h2 {
    font-size: 2.2rem;
  }
  .seo-blog h3 {
    font-size: 1.45rem;
  }
  .seo-blog p {
    font-size: 1.02rem;
  }
  .seo-keywords {
    gap: 0.9rem;
  }
  .seo-keywords li {
    padding: 0.9rem 1.1rem;
    font-size: 0.98rem;
  }
  .cta-btn {
    padding: 0.85rem 1.9rem;
    font-size: 0.95rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .seo-blog {
    padding: 65px 5%;
  }
  .seo-blog h2 {
    font-size: 1.9rem;
  }
  .seo-blog h3 {
    font-size: 1.35rem;
  }
  .seo-blog p {
    font-size: 0.98rem;
  }
  .seo-keywords {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
  .seo-keywords li {
    font-size: 0.93rem;
    padding: 0.85rem 1rem;
  }
  .cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .seo-blog {
    padding: 60px 4%;
  }
  .seo-blog h2 {
    font-size: 1.7rem;
  }
  .seo-blog h3 {
    font-size: 1.25rem;
  }
  .seo-blog p {
    font-size: 0.9rem;
  }
  .seo-keywords {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .seo-keywords li {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
  .cta-btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.85rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .seo-blog {
    padding: 50px 4%;
  }
  .seo-blog h2 {
    font-size: 1.55rem;
  }
  .seo-blog h3 {
    font-size: 1.15rem;
  }
  .seo-blog p {
    font-size: 0.85rem;
  }
  .seo-keywords {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .seo-keywords li {
    font-size: 0.83rem;
    padding: 0.75rem 0.9rem;
  }
  .cta-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .seo-blog {
    padding: 45px 3.5%;
  }
  .seo-blog h2 {
    font-size: 1.4rem;
  }
  .seo-blog h3 {
    font-size: 1.05rem;
  }
  .seo-blog p {
    font-size: 0.8rem;
  }
  .seo-keywords li {
    font-size: 0.78rem;
    padding: 0.7rem 0.85rem;
  }
  .cta-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.75rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .seo-blog {
    padding: 40px 3%;
  }
  .seo-blog h2 {
    font-size: 1.25rem;
  }
  .seo-blog h3 {
    font-size: 0.95rem;
  }
  .seo-blog p {
    font-size: 0.75rem;
  }
  .seo-keywords li {
    font-size: 0.7rem;
    padding: 0.6rem 0.8rem;
  }
  .cta-btn {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }
}


/*transfer.html*/

/* ==============================================
🚘 SWISS RENT A CAR – LIMOUSINE BENEFITS SECTION (2x2 Responsive, Fixed Header <p>)
=================================================*/

.srac-benefits {
  background: #ffffff;
  padding: 80px 10%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
}

/* === HEADER === */
.srac-benefits-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.srac-benefits-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.8rem;
}

.srac-underline {
  width: 70px;
  height: 3px;
  background: #d21f26;
  margin: 0.8rem auto 1.8rem;
  border-radius: 3px;
}

.srac-benefits-header p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* === GRID === */
.srac-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* === BOXES === */
.srac-benefit-box {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.srac-benefit-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: border-color 0.4s ease;
}

.srac-benefit-box:hover::before {
  border-color: rgba(210, 31, 38, 0.35);
}

.srac-benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* === ICONS === */
.srac-benefit-box i {
  font-size: 2.4rem;
  color: #d21f26;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.srac-benefit-box:hover i {
  color: #b81b21;
}

/* === TEXT === */
.srac-benefit-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.8rem;
}

.srac-benefit-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR (2×2 Compact Version)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .srac-benefits {
    padding: 75px 8%;
  }
  .srac-benefits-header h2 {
    font-size: 2.3rem;
  }
  .srac-benefits-header p {
    font-size: 1rem;
  }
  .srac-benefits-grid {
    gap: 1.8rem;
  }
  .srac-benefit-box {
    padding: 2.2rem 1.6rem;
  }
  .srac-benefit-box i {
    font-size: 2.2rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .srac-benefits {
    padding: 65px 7%;
  }
  .srac-benefits-header h2 {
    font-size: 2rem;
  }
  .srac-benefits-header p {
    font-size: 0.95rem;
  }
  .srac-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .srac-benefit-box {
    padding: 2rem 1.4rem;
  }
  .srac-benefit-box i {
    font-size: 2rem;
  }
  .srac-benefit-box h4 {
    font-size: 1.1rem;
  }
  .srac-benefit-box p {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .srac-benefits {
    padding: 60px 5%;
  }
  .srac-benefits-header h2 {
    font-size: 1.8rem;
  }
  .srac-benefits-header p {
    font-size: 0.9rem;
  }
  .srac-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  .srac-benefit-box {
    padding: 1.8rem 1.3rem;
  }
  .srac-benefit-box i {
    font-size: 1.8rem;
  }
  .srac-benefit-box h4 {
    font-size: 1.05rem;
  }
  .srac-benefit-box p {
    font-size: 0.85rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .srac-benefits {
    padding: 50px 4%;
  }
  .srac-benefits-header h2 {
    font-size: 1.6rem;
  }
  .srac-benefits-header p {
    font-size: 0.85rem;
  }
  .srac-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .srac-benefit-box {
    padding: 1.6rem 1.1rem;
    border-radius: 16px;
  }
  .srac-benefit-box i {
    font-size: 1.6rem;
  }
  .srac-benefit-box h4 {
    font-size: 0.95rem;
  }
  .srac-benefit-box p {
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .srac-benefits {
    padding: 45px 3.5%;
  }
  .srac-benefits-header h2 {
    font-size: 1.45rem;
  }
  .srac-benefits-header p {
    font-size: 0.8rem;
  }
  .srac-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .srac-benefit-box {
    padding: 1.4rem 1rem;
    border-radius: 14px;
  }
  .srac-benefit-box i {
    font-size: 1.55rem;
  }
  .srac-benefit-box h4 {
    font-size: 0.9rem;
  }
  .srac-benefit-box p {
    font-size: 0.76rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-benefits {
    padding: 40px 3%;
  }
  .srac-benefits-header h2 {
    font-size: 1.25rem;
  }
  .srac-benefits-header p {
    font-size: 0.75rem;
  }
  .srac-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .srac-benefit-box {
    padding: 1.2rem 0.9rem;
    border-radius: 12px;
  }
  .srac-benefit-box i {
    font-size: 1.4rem;
  }
  .srac-benefit-box h4 {
    font-size: 0.85rem;
  }
  .srac-benefit-box p {
    font-size: 0.7rem;
  }
}


/* ==============================================
🚘 SWISS RENT A CAR – PREMIUM TRANSFERS SECTION (1x1 Mobile, Compact Header)
=================================================*/

.premium-transfers {
  background: #fff;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === HEADER === */
.premium-transfers .services-header2 {
  max-width: 800px;
  margin-bottom: 4rem;
  position: relative;
}

/* 🩸 fix doppelte Linie */
.premium-transfers .services-header2 h2::before,
.premium-transfers .services-header2 h2::after {
  content: none !important;
}

/* ✅ saubere SRAC-Linie */
.premium-transfers .services-header2 h2 {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.premium-transfers .services-header2 h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d21f26;
  border-radius: 3px;
}

.premium-transfers .services-header2 p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 2.2rem;
}

/* === GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1150px;
  width: 100%;
}

/* === CARD === */
.service-card {
  background: #f9fafb;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* === IMAGE === */
.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* === CONTENT === */
.service-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  height: 100%;
}

.service-content h4 {
  color: #b61b00;
  font-weight: 700;
  font-size: 1.2rem;
  border-left: 3px solid #b61b00;
  padding-left: 0.6rem;
  margin-bottom: 0.8rem;
}

.service-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR STYLE (1×1 Mobile)
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .premium-transfers {
    padding: 75px 8%;
  }
  .premium-transfers .services-header2 h2 {
    font-size: 2.3rem;
  }
  .premium-transfers .services-header2 h2::after {
    bottom: -10px; /* 🔹 weniger Abstand */
  }
  .premium-transfers .services-header2 p {
    margin-top: 1.8rem;
  }
  .services-grid {
    gap: 1.8rem;
  }
  .service-image {
    height: 190px;
  }
  .service-content h4 {
    font-size: 1.15rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .premium-transfers {
    padding: 65px 7%;
  }
  .premium-transfers .services-header2 h2 {
    font-size: 2rem;
  }
  .premium-transfers .services-header2 h2::after {
    bottom: -9px; /* 🔹 etwas kompakter */
    width: 70px;
  }
  .premium-transfers .services-header2 p {
    font-size: 0.98rem;
    margin-top: 1.6rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
  .service-image {
    height: 180px;
  }
  .service-content h4 {
    font-size: 1.1rem;
  }
  .service-content p {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .premium-transfers {
    padding: 60px 5%;
  }
  .premium-transfers .services-header2 h2 {
    font-size: 1.8rem;
  }
  .premium-transfers .services-header2 h2::after {
    bottom: -8px; /* 🔹 kompakt */
    width: 65px;
  }
  .premium-transfers .services-header2 p {
    font-size: 0.9rem;
    margin-top: 1.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
  .service-image {
    height: 165px;
  }
  .service-content {
    padding: 1.5rem;
  }
  .service-content h4 {
    font-size: 1.05rem;
  }
  .service-content p {
    font-size: 0.85rem;
  }
}

/* 🧩 bis 600px – kleine Handys (1×1 Layout) */
@media (max-width: 600px) {
  .premium-transfers {
    padding: 50px 4%;
  }
  .premium-transfers .services-header2 h2 {
    font-size: 1.6rem;
  }
  .premium-transfers .services-header2 h2::after {
    bottom: -7px; /* 🔹 näher am Text */
    width: 60px;
  }
  .premium-transfers .services-header2 p {
    font-size: 0.85rem;
    margin-top: 1.3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-image {
    height: 150px;
  }
  .service-content {
    padding: 1.3rem;
  }
  .service-content h4 {
    font-size: 0.95rem;
  }
  .service-content p {
    font-size: 0.8rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .premium-transfers {
    padding: 45px 3.5%;
  }
  .premium-transfers .services-header2 h2 {
    font-size: 1.45rem;
  }
  .premium-transfers .services-header2 h2::after {
    bottom: -6px; /* 🔹 minimaler Abstand */
    width: 55px;
  }
  .premium-transfers .services-header2 p {
    font-size: 0.8rem;
    margin-top: 1.1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-image {
    height: 135px;
  }
  .service-content {
    padding: 1.1rem;
  }
  .service-content h4 {
    font-size: 0.9rem;
  }
  .service-content p {
    font-size: 0.76rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .premium-transfers {
    padding: 40px 3%;
  }
  .premium-transfers .services-header2 h2 {
    font-size: 1.25rem;
  }
  .premium-transfers .services-header2 h2::after {
    bottom: -5px; /* 🔹 kompakter Strich */
    width: 50px;
  }
  .premium-transfers .services-header2 p {
    font-size: 0.75rem;
    margin-top: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .service-image {
    height: 125px;
  }
  .service-content {
    padding: 1rem;
  }
  .service-content h4 {
    font-size: 0.85rem;
  }
  .service-content p {
    font-size: 0.7rem;
  }
}

/* ==============================================
🚘 SWISS RENT A CAR – eco und premium flotte SECTION
=================================================*/

.limousine-cars {
  background: linear-gradient(145deg, #f8f9fb, #eceff3);
  padding: 6rem 2rem;
  text-align: center;
}

.limousinecars-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.limousinecars-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
}

.limousinecars-header .underline {
  width: 70px;
  height: 3px;
  background: #b30000;
  margin: 0.7rem auto 1.2rem;
  border-radius: 4px;
}

.limousinecars-header p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === GRID === */
.limousinecars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1150px;
  margin: 0 auto;
}

/* === CARD === */
.limousinecars-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  flex: 0 0 calc(33.333% - 1.5rem);
  scroll-snap-align: start;
}

.limousinecars-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* === IMAGE === */
.limousinecars-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.95);
}

/* === CONTENT === */
.limousinecars-content {
  padding: 1.8rem;
}

.limousinecars-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}

.limousinecars-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* === SLIDER WRAPPER === */
.limousinecars-slider-wrapper {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}

.limousinecars-slider {
  display: flex;
  gap: 2rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.limousinecars-slider::-webkit-scrollbar {
  display: none;
}

/* === MINIMALISTISCHE PFEILE === */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b30000;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0.9;
  line-height: 1;
}

.slider-btn.prev { left: 0.5rem; }
.slider-btn.next { right: 0.5rem; }

/* Force remove all hover/focus styles */
.slider-btn,
.slider-btn:hover,
.slider-btn:focus,
.slider-btn:active {
  background: none !important;
  color: #b30000 !important;
  border: none !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important;
  opacity: 0.9 !important;
  outline: none !important;
}

/* === BUTTON WRAP === */
.limousinecars-btn-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* === ANFRAGE-BUTTON === */
.limousinecars-btn {
  display: inline-block;
  background: #b30000;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179, 0, 0, 0.2);
}

.limousinecars-btn:hover {
  background: #cc1f1f;
  box-shadow: 0 6px 18px rgba(179, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* =====================================================
📱 RESPONSIVE DESIGN – SWISS RENT A CAR STANDARD SCALE
===================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .limousine-cars {
    padding: 5.5rem 6%;
  }
  .limousinecars-header h2 {
    font-size: 2.4rem;
  }
  .limousinecars-header p {
    font-size: 1rem;
  }
  .limousinecars-grid {
    gap: 2rem;
  }
  .limousinecars-image {
    height: 210px;
  }
  .limousinecars-content {
    padding: 1.6rem;
  }
  .limousinecars-content h4 {
    font-size: 1.2rem;
  }
  .limousinecars-content p {
    font-size: 0.97rem;
  }
  .limousinecars-btn {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .limousine-cars {
    padding: 5rem 6%;
  }
  .limousinecars-header h2 {
    font-size: 2.2rem;
  }
  .limousinecars-header p {
    font-size: 0.98rem;
  }
  .limousinecars-slider {
    gap: 1.6rem;
  }
  .limousinecars-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .limousinecars-image {
    height: 190px;
  }
  .limousinecars-content h4 {
    font-size: 1.1rem;
  }
  .limousinecars-content p {
    font-size: 0.94rem;
  }
  .slider-btn {
    font-size: 1.6rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .limousine-cars {
    padding: 4.5rem 5%;
  }
  .limousinecars-header {
    margin-bottom: 3rem;
  }
  .limousinecars-header h2 {
    font-size: 2rem;
  }
  .limousinecars-header p {
    font-size: 0.95rem;
  }
  .limousinecars-slider {
    gap: 1.5rem;
  }
  .limousinecars-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .limousinecars-image {
    height: 180px;
  }
  .limousinecars-content {
    padding: 1.4rem;
  }
  .limousinecars-content h4 {
    font-size: 1.05rem;
  }
  .limousinecars-content p {
    font-size: 0.9rem;
  }
  .limousinecars-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .limousine-cars {
    padding: 4rem 5%;
  }
  .limousinecars-header h2 {
    font-size: 1.8rem;
  }
  .limousinecars-header p {
    font-size: 0.9rem;
  }
  .limousinecars-slider {
    gap: 1.4rem;
  }
  .limousinecars-card {
    flex: 0 0 100%;
  }
  .limousinecars-image {
    height: 160px;
  }
  .limousinecars-content {
    padding: 1.2rem;
  }
  .limousinecars-content h4 {
    font-size: 1rem;
  }
  .limousinecars-content p {
    font-size: 0.88rem;
  }
  .limousinecars-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .limousine-cars {
    padding: 3.8rem 5%;
  }
  .limousinecars-header h2 {
    font-size: 1.6rem;
  }
  .limousinecars-header p {
    font-size: 0.85rem;
  }
  .limousinecars-slider {
    gap: 1.2rem;
  }
  .limousinecars-image {
    height: 150px;
  }
  .limousinecars-content {
    padding: 1.1rem;
  }
  .limousinecars-content h4 {
    font-size: 0.95rem;
  }
  .limousinecars-content p {
    font-size: 0.83rem;
  }
  .limousinecars-btn {
    font-size: 0.85rem;
    padding: 0.65rem 1.3rem;
  }
  .slider-btn {
    font-size: 1.4rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .limousine-cars {
    padding: 3.5rem 4%;
  }
  .limousinecars-header h2 {
    font-size: 1.45rem;
  }
  .limousinecars-header p {
    font-size: 0.8rem;
  }
  .limousinecars-image {
    height: 140px;
  }
  .limousinecars-content {
    padding: 1rem;
  }
  .limousinecars-content h4 {
    font-size: 0.9rem;
  }
  .limousinecars-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .limousinecars-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.1rem;
  }
}






/*alle services*/

/* ===========================================================
   BUSINESS & VIP TRANSFERS – SWISS RENT STYLE (Responsive Ready)
   =========================================================== */

/*hero bild*/

.hero-section .hero-bg img.transferhero {
  object-position: center 55%; /* 🔹 zeigt mehr vom oberen Teil */
}




.business-vip {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO SECTION === */
.business-vip .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
    background-position: center 70%; /* 🔹 Fokus leicht nach unten */

}

.business-vip .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.business-vip .hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.business-vip .hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: "Roboto", sans-serif;
}

.business-vip .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO SECTION === */
.business-vip .intro {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fff;
}

.business-vip .intro h2 {
  font-size: 1.9rem;
  color: #111;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.2rem;
}

.business-vip .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.business-vip .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.business-vip .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.business-vip .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.business-vip .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.business-vip .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #111;
}

.business-vip .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION === */
.business-vip .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.business-vip .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.business-vip .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-vip .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 1rem;
}

.business-vip .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.business-vip .split-text ul {
  list-style: none;
  padding: 0;
}

.business-vip .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.business-vip .split-text li i {
  color: #d21f26;
}

/* === CTA SECTION === */
.business-vip .cta {
  background: #f9f9f9;
  color: #111;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.business-vip .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.business-vip .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.business-vip .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.business-vip .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}


/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT SCALE SYSTEM
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .business-vip .hero { height: 60vh; }
  .business-vip .hero-content h1 { font-size: 2.4rem; }
  .business-vip .hero-content p { font-size: 1.05rem; }

  .business-vip .intro { padding: 4.5rem 2rem; }
  .business-vip .intro h2 { font-size: 1.8rem; }

  .business-vip .features { gap: 2rem; padding: 4.5rem 2rem; }
  .business-vip .feature { padding: 2.2rem 1.8rem; }

  .business-vip .split-text { padding: 3.5rem 2.5rem; }
  .business-vip .cta { padding: 4rem 2rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .business-vip .hero { height: 55vh; }
  .business-vip .hero-content h1 { font-size: 2.2rem; }
  .business-vip .hero-content p { font-size: 1rem; }

  .business-vip .intro { padding: 4rem 2rem; }
  .business-vip .intro h2 { font-size: 1.7rem; }

  .business-vip .feature i { font-size: 1.8rem; }
  .business-vip .feature h3 { font-size: 1.2rem; }
  .business-vip .feature p { font-size: 0.9rem; }

  .business-vip .split-text { padding: 3rem 2rem; }
  .business-vip .split-text h2 { font-size: 1.6rem; }

  .business-vip .cta h2 { font-size: 1.6rem; }
  .business-vip .cta p { font-size: 0.95rem; }
  .business-vip .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .business-vip .hero { height: 55vh; padding: 0 1rem; }
  .business-vip .hero-content h1 { font-size: 2rem; }
  .business-vip .hero-content p { font-size: 0.95rem; }

  .business-vip .intro h2 { font-size: 1.6rem; }
  .business-vip .intro p { font-size: 0.95rem; }

  .business-vip .features { padding: 3.5rem 1.5rem; gap: 1.8rem; }
  .business-vip .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }

  .business-vip .split-section { flex-direction: column; }
  .business-vip .split-image,
  .business-vip .split-text { flex: 1 1 100%; width: 100%; }
  .business-vip .split-image { min-height: 320px; }
  .business-vip .split-text { padding: 3rem 1.8rem; text-align: center; }

  .business-vip .cta { padding: 3.5rem 1.5rem; }
  .business-vip .cta h2 { font-size: 1.5rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .business-vip .hero { height: 50vh; }
  .business-vip .hero-content h1 { font-size: 1.8rem; }
  .business-vip .hero-content p { font-size: 0.9rem; }

  .business-vip .intro { padding: 3.5rem 1.2rem; }
  .business-vip .intro h2 { font-size: 1.5rem; }

  .business-vip .feature { padding: 1.8rem 1.4rem; border-radius: 16px; }
  .business-vip .feature i { font-size: 1.6rem; }
  .business-vip .feature h3 { font-size: 1.1rem; }
  .business-vip .feature p { font-size: 0.88rem; }

  .business-vip .split-text { padding: 2.5rem 1.4rem; }
  .business-vip .split-text h2 { font-size: 1.4rem; }

  .business-vip .cta { padding: 3rem 1.2rem; }
  .business-vip .cta-btn { padding: 0.75rem 1.8rem; font-size: 0.9rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .business-vip .hero { height: 45vh; }
  .business-vip .hero-content h1 { font-size: 1.6rem; }
  .business-vip .hero-content p { font-size: 0.85rem; }

  .business-vip .intro h2 { font-size: 1.35rem; }
  .business-vip .intro p { font-size: 0.85rem; line-height: 1.6; }

  .business-vip .features { gap: 1.5rem; padding: 3rem 1rem; }
  .business-vip .feature { padding: 1.6rem 1.2rem; }
  .business-vip .feature i { font-size: 1.5rem; }
  .business-vip .feature h3 { font-size: 1rem; }
  .business-vip .feature p { font-size: 0.82rem; }

  .business-vip .split-text { padding: 2.2rem 1.2rem; }
  .business-vip .split-text h2 { font-size: 1.3rem; }

  .business-vip .cta h2 { font-size: 1.3rem; }
  .business-vip .cta p { font-size: 0.85rem; }
  .business-vip .cta-btn { padding: 0.7rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .business-vip .hero { height: 42vh; }
  .business-vip .hero-content h1 { font-size: 1.45rem; }
  .business-vip .hero-content p { font-size: 0.8rem; }

  .business-vip .intro h2 { font-size: 1.2rem; }
  .business-vip .intro p { font-size: 0.8rem; }

  .business-vip .feature { padding: 1.4rem 1rem; border-radius: 14px; }
  .business-vip .feature i { font-size: 1.4rem; }
  .business-vip .feature h3 { font-size: 0.95rem; }
  .business-vip .feature p { font-size: 0.8rem; }

  .business-vip .split-text h2 { font-size: 1.15rem; }
  .business-vip .cta h2 { font-size: 1.2rem; }
  .business-vip .cta-btn { padding: 0.65rem 1.4rem; font-size: 0.8rem; }
}


/* ===========================================================
   AIRPORT TRANSFER ZURICH – SWISS RENT STYLE (EN)
   =========================================================== */

.airport-transfer {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO SECTION === */
.airport-transfer .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.airport-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.airport-transfer .hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.airport-transfer .hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: "Roboto", sans-serif;
}

.airport-transfer .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO SECTION === */
.airport-transfer .intro {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fff;
}

.airport-transfer .intro h2 {
  font-size: 1.9rem;
  color: #111;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.2rem;
}

.airport-transfer .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.airport-transfer .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.airport-transfer .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.airport-transfer .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.airport-transfer .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.airport-transfer .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #111;
}

.airport-transfer .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION === */
.airport-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.airport-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.airport-transfer .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.airport-transfer .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 1rem;
}

.airport-transfer .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.airport-transfer .split-text ul {
  list-style: none;
  padding: 0;
}

.airport-transfer .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.airport-transfer .split-text li i {
  color: #d21f26;
}

/* === CTA SECTION === */
.airport-transfer .cta {
  background: #f9f9f9;
  color: #111;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.airport-transfer .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.airport-transfer .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.airport-transfer .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.airport-transfer .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT SCALE SYSTEM
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .airport-transfer .hero { height: 60vh; }
  .airport-transfer .hero-content h1 { font-size: 2.4rem; }
  .airport-transfer .hero-content p { font-size: 1.05rem; }

  .airport-transfer .intro { padding: 4.5rem 2rem; }
  .airport-transfer .intro h2 { font-size: 1.8rem; }

  .airport-transfer .features { gap: 2rem; padding: 4.5rem 2rem; }
  .airport-transfer .feature { padding: 2.2rem 1.8rem; }

  .airport-transfer .split-text { padding: 3.5rem 2.5rem; }
  .airport-transfer .cta { padding: 4rem 2rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .airport-transfer .hero { height: 55vh; }
  .airport-transfer .hero-content h1 { font-size: 2.2rem; }
  .airport-transfer .hero-content p { font-size: 1rem; }

  .airport-transfer .intro { padding: 4rem 2rem; }
  .airport-transfer .intro h2 { font-size: 1.7rem; }

  .airport-transfer .feature i { font-size: 1.8rem; }
  .airport-transfer .feature h3 { font-size: 1.2rem; }
  .airport-transfer .feature p { font-size: 0.9rem; }

  .airport-transfer .split-text { padding: 3rem 2rem; }
  .airport-transfer .split-text h2 { font-size: 1.6rem; }

  .airport-transfer .cta h2 { font-size: 1.6rem; }
  .airport-transfer .cta p { font-size: 0.95rem; }
  .airport-transfer .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .airport-transfer .hero { height: 55vh; padding: 0 1rem; }
  .airport-transfer .hero-content h1 { font-size: 2rem; }
  .airport-transfer .hero-content p { font-size: 0.95rem; }

  .airport-transfer .intro h2 { font-size: 1.6rem; }
  .airport-transfer .intro p { font-size: 0.95rem; }

  .airport-transfer .features { padding: 3.5rem 1.5rem; gap: 1.8rem; }
  .airport-transfer .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }

  .airport-transfer .split-section { flex-direction: column; }
  .airport-transfer .split-image,
  .airport-transfer .split-text { flex: 1 1 100%; width: 100%; }
  .airport-transfer .split-image { min-height: 320px; }
  .airport-transfer .split-text { padding: 3rem 1.8rem; text-align: center; }

  .airport-transfer .cta { padding: 3.5rem 1.5rem; }
  .airport-transfer .cta h2 { font-size: 1.5rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .airport-transfer .hero { height: 50vh; }
  .airport-transfer .hero-content h1 { font-size: 1.8rem; }
  .airport-transfer .hero-content p { font-size: 0.9rem; }

  .airport-transfer .intro { padding: 3.5rem 1.2rem; }
  .airport-transfer .intro h2 { font-size: 1.5rem; }

  .airport-transfer .feature { padding: 1.8rem 1.4rem; border-radius: 16px; }
  .airport-transfer .feature i { font-size: 1.6rem; }
  .airport-transfer .feature h3 { font-size: 1.1rem; }
  .airport-transfer .feature p { font-size: 0.88rem; }

  .airport-transfer .split-text { padding: 2.5rem 1.4rem; }
  .airport-transfer .split-text h2 { font-size: 1.4rem; }

  .airport-transfer .cta { padding: 3rem 1.2rem; }
  .airport-transfer .cta-btn { padding: 0.75rem 1.8rem; font-size: 0.9rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .airport-transfer .hero { height: 45vh; }
  .airport-transfer .hero-content h1 { font-size: 1.6rem; }
  .airport-transfer .hero-content p { font-size: 0.85rem; }

  .airport-transfer .intro h2 { font-size: 1.35rem; }
  .airport-transfer .intro p { font-size: 0.85rem; line-height: 1.6; }

  .airport-transfer .features { gap: 1.5rem; padding: 3rem 1rem; }
  .airport-transfer .feature { padding: 1.6rem 1.2rem; }
  .airport-transfer .feature i { font-size: 1.5rem; }
  .airport-transfer .feature h3 { font-size: 1rem; }
  .airport-transfer .feature p { font-size: 0.82rem; }

  .airport-transfer .split-text { padding: 2.2rem 1.2rem; }
  .airport-transfer .split-text h2 { font-size: 1.3rem; }

  .airport-transfer .cta h2 { font-size: 1.3rem; }
  .airport-transfer .cta p { font-size: 0.85rem; }
  .airport-transfer .cta-btn { padding: 0.7rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .airport-transfer .hero { height: 42vh; }
  .airport-transfer .hero-content h1 { font-size: 1.45rem; }
  .airport-transfer .hero-content p { font-size: 0.8rem; }

  .airport-transfer .intro h2 { font-size: 1.2rem; }
  .airport-transfer .intro p { font-size: 0.8rem; }

  .airport-transfer .feature { padding: 1.4rem 1rem; border-radius: 14px; }
  .airport-transfer .feature i { font-size: 1.4rem; }
  .airport-transfer .feature h3 { font-size: 0.95rem; }
  .airport-transfer .feature p { font-size: 0.8rem; }

  .airport-transfer .split-text h2 { font-size: 1.15rem; }
  .airport-transfer .cta h2 { font-size: 1.2rem; }
  .airport-transfer .cta-btn { padding: 0.65rem 1.4rem; font-size: 0.8rem; }
}


/*disposalservice*/

:root {
  --primary-red: #d90000;
  --dark: #111;
  --light: #f9f9f9;
}

.disposal-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.disposal-page .hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 850px;
  padding: 2rem;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: #e5e5e5;
  line-height: 1.7;
}

/* ======================
   DISPOSAL OVERVIEW – RED ACCENTS
   ====================== */

.disposal-overview {
  background: linear-gradient(to bottom right, #fff 0%, #f8f8f8 85%);
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dekoratives rotes Overlay (dezent) */
.disposal-overview::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(217,0,0,0.08), transparent 70%);
  z-index: 0;
}

.overview-header,
.overview-bottom {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.disposal-overview h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.red-line {
  width: 70px;
  height: 3px;
  background: var(--primary-red, #d90000);
  margin: 1rem auto 2rem;
  border-radius: 3px;
}

.disposal-overview p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* === Grid mit 3 Vorteilen === */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem;
  max-width: 1000px;
  margin-top: 2rem;
  z-index: 1;
}

.overview-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 2.3rem 1.8rem;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-top: 4px solid var(--primary-red, #d90000);
}

.overview-card i {
  font-size: 2.2rem;
  color: var(--primary-red, #d90000);
  margin-bottom: 1rem;
}

.overview-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 0.6rem;
}

.overview-card p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT SCALE SYSTEM (1x Grid)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .hero { height: 60vh; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-content p { font-size: 1.05rem; }

  .disposal-overview { padding: 5.5rem 2rem; gap: 2.5rem; }
  .disposal-overview h2 { font-size: 2.2rem; }
  .disposal-overview p { font-size: 1rem; }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .overview-card {
    padding: 2rem 1.6rem;
  }

  .overview-card i { font-size: 2rem; }
  .overview-card h3 { font-size: 1.15rem; }
  .overview-card p { font-size: 0.93rem; }
}

/* 🧩 bis 900px – Tablet quer → 1x Grid */
@media (max-width: 900px) {
  .hero { height: 55vh; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-content p { font-size: 1rem; }

  .disposal-overview { padding: 5rem 2rem; }
  .disposal-overview h2 { font-size: 2rem; }

  /* 👉 1x1x1 Grid */
  .overview-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 2rem;
  }

  .overview-card {
    padding: 1.9rem 1.5rem;
    border-radius: 16px;
  }

  .overview-card i { font-size: 1.9rem; }
  .overview-card h3 { font-size: 1.1rem; }
  .overview-card p { font-size: 0.9rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .hero { height: 55vh; }
  .hero-content { padding: 1.8rem; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content p { font-size: 0.95rem; }

  .disposal-overview { padding: 4.5rem 1.5rem; gap: 2rem; }
  .disposal-overview h2 { font-size: 1.8rem; }
  .disposal-overview p { font-size: 0.95rem; }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .overview-card {
    padding: 1.8rem 1.4rem;
  }

  .overview-card i { font-size: 1.8rem; }
  .overview-card h3 { font-size: 1.05rem; }
  .overview-card p { font-size: 0.88rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .hero { height: 52vh; }
  .hero-content { padding: 1.6rem; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-content p { font-size: 0.9rem; }

  .disposal-overview { padding: 4rem 1.2rem; gap: 1.8rem; }
  .disposal-overview h2 { font-size: 1.6rem; }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .overview-card {
    padding: 1.6rem 1.3rem;
    border-radius: 14px;
  }

  .overview-card i { font-size: 1.6rem; }
  .overview-card h3 { font-size: 1rem; }
  .overview-card p { font-size: 0.86rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .hero { height: 47vh; }
  .hero-content { padding: 1.4rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.85rem; }

  .disposal-overview { padding: 3.5rem 1rem; gap: 1.5rem; }
  .disposal-overview h2 { font-size: 1.45rem; }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .overview-card {
    padding: 1.4rem 1.1rem;
  }

  .overview-card i { font-size: 1.5rem; }
  .overview-card h3 { font-size: 0.95rem; }
  .overview-card p { font-size: 0.82rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .hero { height: 44vh; }
  .hero-content { padding: 1.2rem; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-content p { font-size: 0.8rem; }

  .disposal-overview { padding: 3rem 0.9rem; gap: 1.4rem; }
  .disposal-overview h2 { font-size: 1.25rem; }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .overview-card {
    padding: 1.2rem 1rem;
  }

  .overview-card i { font-size: 1.4rem; }
  .overview-card h3 { font-size: 0.9rem; }
  .overview-card p { font-size: 0.8rem; }
}


/* === Unterer Infoblock === */
.overview-bottom h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.8rem;
}

.bottom-line {
  width: 50px;
  height: 3px;
  background: var(--primary-red, #d90000);
  margin: 0.8rem auto 1.5rem;
  border-radius: 3px;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – OVERVIEW BOTTOM (SRAC SCALE)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .overview-bottom h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .bottom-line {
    width: 45px;
    height: 3px;
    margin: 0.8rem auto 1.4rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .overview-bottom h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
  }

  .bottom-line {
    width: 42px;
    height: 3px;
    margin: 0.8rem auto 1.3rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .overview-bottom h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }

  .bottom-line {
    width: 40px;
    height: 3px;
    margin: 0.7rem auto 1.2rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .overview-bottom h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .bottom-line {
    width: 38px;
    height: 3px;
    margin: 0.7rem auto 1.1rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .overview-bottom h3 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
  }

  .bottom-line {
    width: 35px;
    height: 3px;
    margin: 0.6rem auto 1rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .overview-bottom h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .bottom-line {
    width: 32px;
    height: 3px;
    margin: 0.5rem auto 0.9rem;
  }
}


/* ======================
   TAGESABLAUF INFOBOX
   ====================== */

.dayflow {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.dayflow h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  position: relative;
}

.dayflow h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--primary-red, #d90000);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* === Timeline Layout === */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-red, #d90000);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  width: 14px;
  height: 14px;
  background-color: var(--primary-red, #d90000);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff;
}

.time {
  font-weight: 600;
  color: #d90000;
  min-width: 70px;
  text-align: right;
}

.timeline-content {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 2rem;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #444;
  line-height: 1.5;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – TAGESABLAUF INFOBOX (SRAC SCALE)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .dayflow { padding: 4.5rem 2rem; gap: 2.5rem; }
  .dayflow h2 { font-size: 2rem; }

  .timeline { max-width: 850px; gap: 2.2rem; }
  .timeline-content { padding: 1.4rem 1.8rem; }

  .timeline-content h3 { font-size: 1.15rem; }
  .timeline-content p { font-size: 0.95rem; }
  .time { min-width: 65px; font-size: 0.95rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .dayflow { padding: 4rem 2rem; gap: 2.2rem; }
  .dayflow h2 { font-size: 1.9rem; }

  .timeline { max-width: 750px; gap: 2rem; border-left: 2.8px solid var(--primary-red, #d90000); }
  .timeline-item::before { width: 12px; height: 12px; left: -9px; }
  .timeline-content { padding: 1.4rem 1.7rem; }

  .timeline-content h3 { font-size: 1.1rem; }
  .timeline-content p { font-size: 0.92rem; }
  .time { min-width: 60px; font-size: 0.9rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .dayflow { padding: 3.8rem 1.6rem; gap: 2rem; }
  .dayflow h2 { font-size: 1.8rem; }

  .timeline {
    max-width: 650px;
    gap: 1.8rem;
    border-left: 2.6px solid var(--primary-red, #d90000);
  }

  .timeline-item { gap: 1.2rem; }
  .timeline-item::before { width: 11px; height: 11px; left: -8px; top: 7px; }

  .time { min-width: 58px; font-size: 0.88rem; }
  .timeline-content { padding: 1.3rem 1.6rem; }
  .timeline-content h3 { font-size: 1.05rem; }
  .timeline-content p { font-size: 0.9rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .dayflow { padding: 3.5rem 1.4rem; gap: 1.8rem; }
  .dayflow h2 { font-size: 1.6rem; }

  .timeline {
    padding-left: 0.8rem;
    border-left: 2.4px solid var(--primary-red, #d90000);
    gap: 1.6rem;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .timeline-item::before {
    left: -7px;
    top: 5px;
    width: 10px;
    height: 10px;
  }

  .time {
    text-align: left;
    color: var(--primary-red, #d90000);
    font-size: 0.86rem;
  }

  .timeline-content {
    width: 100%;
    padding: 1.2rem 1.4rem;
  }

  .timeline-content h3 { font-size: 1rem; }
  .timeline-content p { font-size: 0.86rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .dayflow { padding: 3.2rem 1.2rem; gap: 1.5rem; }
  .dayflow h2 { font-size: 1.45rem; }

  .timeline { gap: 1.4rem; border-left: 2.2px solid var(--primary-red, #d90000); }
  .timeline-item::before { width: 9px; height: 9px; left: -6px; top: 4px; }

  .time { font-size: 0.8rem; min-width: auto; }
  .timeline-content { padding: 1.1rem 1.3rem; }

  .timeline-content h3 { font-size: 0.95rem; }
  .timeline-content p { font-size: 0.82rem; line-height: 1.55; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .dayflow { padding: 3rem 1rem; gap: 1.4rem; }
  .dayflow h2 { font-size: 1.3rem; }

  .timeline { gap: 1.2rem; border-left: 2px solid var(--primary-red, #d90000); }
  .timeline-item::before { width: 8px; height: 8px; left: -6px; top: 3px; }

  .time { font-size: 0.78rem; }
  .timeline-content { padding: 1rem 1.1rem; }

  .timeline-content h3 { font-size: 0.9rem; }
  .timeline-content p { font-size: 0.8rem; }
}


/* ======================
   CALL TO ACTION (in disposal-page)
   ====================== */

.disposal-page .cta-section {
  background: linear-gradient(to right, #111, #2b2b2b);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 3rem;
}

.disposal-page .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/limousinetransfersimg/disposal.webp') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.disposal-page .cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.disposal-page .cta-container h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.disposal-page .cta-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.disposal-page .cta-btn {
  display: inline-block;
  background-color: var(--primary-red, #d90000);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.disposal-page .cta-btn:hover {
  background-color: #b80000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 0, 0, 0.35);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – CTA SECTION (DISPOSAL PAGE)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .disposal-page .cta-section {
    padding: 4.5rem 2rem;
    margin-top: 2.8rem;
    border-radius: 10px;
  }

  .disposal-page .cta-container h2 {
    font-size: 2.1rem;
  }

  .disposal-page .cta-container p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .disposal-page .cta-btn {
    padding: 0.85rem 1.9rem;
    font-size: 0.95rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .disposal-page .cta-section {
    padding: 4rem 2rem;
    margin-top: 2.6rem;
  }

  .disposal-page .cta-container h2 {
    font-size: 1.9rem;
  }

  .disposal-page .cta-container p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .disposal-page .cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.92rem;
    letter-spacing: 0.8px;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .disposal-page .cta-section {
    padding: 3.8rem 1.8rem;
    margin-top: 2.5rem;
  }

  .disposal-page .cta-container h2 {
    font-size: 1.7rem;
  }

  .disposal-page .cta-container p {
    font-size: 0.93rem;
    margin-bottom: 1.6rem;
  }

  .disposal-page .cta-btn {
    padding: 0.78rem 1.7rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .disposal-page .cta-section {
    padding: 3.5rem 1.5rem;
    margin-top: 2.3rem;
    border-radius: 8px;
  }

  .disposal-page .cta-container h2 {
    font-size: 1.55rem;
    margin-bottom: 0.9rem;
  }

  .disposal-page .cta-container p {
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
  }

  .disposal-page .cta-btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.88rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .disposal-page .cta-section {
    padding: 3rem 1.2rem;
    margin-top: 2rem;
  }

  .disposal-page .cta-container h2 {
    font-size: 1.4rem;
  }

  .disposal-page .cta-container p {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1.3rem;
  }

  .disposal-page .cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 45px;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .disposal-page .cta-section {
    padding: 2.8rem 1rem;
    margin-top: 1.8rem;
  }

  .disposal-page .cta-container h2 {
    font-size: 1.25rem;
  }

  .disposal-page .cta-container p {
    font-size: 0.8rem;
    margin-bottom: 1.1rem;
  }

  .disposal-page .cta-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.8rem;
  }
}

/* ======================
   SEO TEXT SECTION – SWISS RENT A CAR STYLE
   ====================== */

.seo-text {
  background-color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.seo-text .seo-container {
  max-width: 900px;
  margin: 0 auto;
}

.seo-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
  position: relative;
}

.seo-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--primary-red, #d90000);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.seo-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: justify;
  text-align-last: center; /* optisch sauber bei blockjustified Text */
}

/* =========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR PROPORTIONAL SCALE
   ========================================================= */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .seo-text {
    padding: 4.5rem 2rem;
  }

  .seo-text h2 {
    font-size: 2rem;
  }

  .seo-text p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto 1.1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .seo-text {
    padding: 4rem 1.8rem;
  }

  .seo-text .seo-container {
    max-width: 800px;
  }

  .seo-text h2 {
    font-size: 1.9rem;
  }

  .seo-text p {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .seo-text h2::after {
    width: 65px;
    height: 3px;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .seo-text {
    padding: 3.8rem 1.6rem;
  }

  .seo-text .seo-container {
    max-width: 700px;
  }

  .seo-text h2 {
    font-size: 1.8rem;
  }

  .seo-text p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .seo-text {
    padding: 3.5rem 1.4rem;
  }

  .seo-text .seo-container {
    max-width: 560px;
  }

  .seo-text h2 {
    font-size: 1.65rem;
    margin-bottom: 1.3rem;
  }

  .seo-text h2::after {
    width: 55px;
  }

  .seo-text p {
    font-size: 0.93rem;
    line-height: 1.6;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .seo-text {
    padding: 3rem 1.2rem;
  }

  .seo-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }

  .seo-text h2::after {
    width: 50px;
    margin-top: 0.9rem;
  }

  .seo-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .seo-text {
    padding: 2.8rem 1rem;
  }

  .seo-text h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .seo-text h2::after {
    width: 45px;
  }

  .seo-text p {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}



/* ======================
   FAMILY & TOURS SECTION – SWISS RENT A CAR STYLE
   ====================== */

.family-tours {
  background: #fff;
  padding: 5rem 2rem;
}

.family-tours-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.family-text {
  flex: 1 1 480px;
}

.family-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  color: #111;
  text-align: left; /* 🔥 Desktop links */
}

.family-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--primary-red);
  margin: 1rem 0; /* 🔥 linksbündig standard */
  border-radius: 2px;
}

.family-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.family-btn {
  display: inline-block;
  background: var(--primary-red);
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.family-btn:hover {
  background: #b80000;
}

.family-image {
  flex: 1 1 420px;
  text-align: center;
}

.family-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  object-fit: cover;
}

.family-image img:hover {
  transform: scale(1.03);
}

/* =========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR PROPORTIONAL SCALE
   ========================================================= */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .family-tours {
    padding: 4.5rem 2rem;
  }

  .family-tours-content {
    gap: 2.5rem;
    max-width: 950px;
  }

  .family-text h2 {
    font-size: 1.9rem;
  }

  .family-text p {
    font-size: 1rem;
  }

  .family-image img {
    max-width: 480px;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .family-tours {
    padding: 4rem 2rem;
  }

  .family-tours-content {
    gap: 2rem;
    justify-content: center;
  }

  .family-text {
    flex: 1 1 100%;
    text-align: center;
  }

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

  .family-text h2::after {
    margin: 1rem auto; /* 🔥 mittig ab Tablet quer */
  }

  .family-text p {
    max-width: 600px;
    margin: 0 auto 1.4rem;
  }

  .family-btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }

  .family-image img {
    max-width: 440px;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .family-tours {
    padding: 3.8rem 1.8rem;
  }

  .family-tours-content {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .family-text h2 {
    font-size: 1.8rem;
  }

  .family-text p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .family-btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
  }

  .family-image img {
    max-width: 400px;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .family-tours {
    padding: 3.5rem 1.5rem;
  }

  .family-text h2 {
    font-size: 1.6rem;
  }

  .family-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .family-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.88rem;
  }

  .family-image img {
    max-width: 360px;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .family-tours {
    padding: 3rem 1.2rem;
  }

  .family-tours-content {
    gap: 1.8rem;
  }

  .family-text h2 {
    font-size: 1.45rem;
  }

  .family-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .family-btn {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
  }

  .family-image img {
    max-width: 310px;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .family-tours {
    padding: 2.8rem 1rem;
  }

  .family-tours-content {
    gap: 1.5rem;
  }

  .family-text h2 {
    font-size: 1.35rem;
  }

  .family-text p {
    font-size: 0.85rem;
  }

  .family-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
  }

  .family-image img {
    max-width: 270px;
  }
}

/* ===========================================================
   HOTEL TRANSFER – SWISS RENT STYLE
   =========================================================== */

.hotel-transfer {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO SECTION === */
.hotel-transfer .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center 40%;
}

.hotel-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hotel-transfer .hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hotel-transfer .hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: "Roboto", sans-serif;
}

.hotel-transfer .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO SECTION === */
.hotel-transfer .intro {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fff;
}

.hotel-transfer .intro h2 {
  font-size: 1.9rem;
  color: #111;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.2rem;
}

.hotel-transfer .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.hotel-transfer .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.hotel-transfer .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.hotel-transfer .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hotel-transfer .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.hotel-transfer .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #111;
}

.hotel-transfer .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION === */
.hotel-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.hotel-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.hotel-transfer .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-transfer .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 1rem;
}

.hotel-transfer .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.hotel-transfer .split-text ul {
  list-style: none;
  padding: 0;
}

.hotel-transfer .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.hotel-transfer .split-text li i {
  color: #d21f26;
}

/* === CTA SECTION === */
.hotel-transfer .cta {
  background: #f9f9f9;
  color: #111;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.hotel-transfer .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hotel-transfer .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.hotel-transfer .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hotel-transfer .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* =========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR PROPORTIONAL SCALE
   ========================================================= */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .hotel-transfer .hero { height: 60vh; }
  .hotel-transfer .intro { padding: 4.5rem 1.5rem; }
  .hotel-transfer .intro h2 { font-size: 1.8rem; }
  .hotel-transfer .features { gap: 2rem; padding: 4.5rem 1.5rem; }
  .hotel-transfer .feature { padding: 2.2rem 1.8rem; }
  .hotel-transfer .split-text { padding: 3.8rem 2.8rem; }
  .hotel-transfer .cta { padding: 4rem 1.5rem; }
  .hotel-transfer .cta h2 { font-size: 1.7rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .hotel-transfer .hero { height: 55vh; }
  .hotel-transfer .hero-content h1 { font-size: 2.3rem; }
  .hotel-transfer .hero-content p { font-size: 1rem; }
  .hotel-transfer .intro h2 { font-size: 1.7rem; }
  .hotel-transfer .intro p { font-size: 0.98rem; max-width: 700px; }
  .hotel-transfer .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }
  .hotel-transfer .feature h3 { font-size: 1.2rem; }
  .hotel-transfer .split-text { padding: 3.5rem 2.5rem; }
  .hotel-transfer .split-text h2 { font-size: 1.65rem; }
  .hotel-transfer .split-text p { font-size: 0.95rem; }
  .hotel-transfer .cta h2 { font-size: 1.65rem; }
  .hotel-transfer .cta p { font-size: 0.95rem; }
  .hotel-transfer .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .hotel-transfer .hero { height: 55vh; }
  .hotel-transfer .hero-content h1 { font-size: 2rem; }
  .hotel-transfer .intro { padding: 4rem 1.4rem; }
  .hotel-transfer .features { gap: 1.8rem; padding: 4rem 1.4rem; }
  .hotel-transfer .feature { flex: 1 1 280px; padding: 1.8rem 1.4rem; }
  .hotel-transfer .split-section { flex-direction: column; }
  .hotel-transfer .split-text, 
  .hotel-transfer .split-image { flex: 1 1 100%; }
  .hotel-transfer .split-text { padding: 3.2rem 2rem; text-align: center; }
  .hotel-transfer .split-text ul { align-items: center; }
  .hotel-transfer .cta { padding: 3.8rem 1.4rem; }
  .hotel-transfer .cta h2 { font-size: 1.55rem; }
  .hotel-transfer .cta-btn { padding: 0.75rem 1.9rem; font-size: 0.9rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .hotel-transfer .hero { height: 55vh; }
  .hotel-transfer .hero-content h1 { font-size: 1.8rem; }
  .hotel-transfer .hero-content p { font-size: 0.95rem; }
  .hotel-transfer .intro h2 { font-size: 1.55rem; }
  .hotel-transfer .intro p { font-size: 0.9rem; }
  .hotel-transfer .feature { flex: 1 1 100%; max-width: 380px; }
  .hotel-transfer .feature i { font-size: 1.8rem; }
  .hotel-transfer .feature h3 { font-size: 1.15rem; }
  .hotel-transfer .feature p { font-size: 0.9rem; }
  .hotel-transfer .split-text { padding: 2.8rem 1.6rem; }
  .hotel-transfer .split-text h2 { font-size: 1.45rem; }
  .hotel-transfer .split-text p { font-size: 0.9rem; }
  .hotel-transfer .cta h2 { font-size: 1.45rem; }
  .hotel-transfer .cta p { font-size: 0.9rem; }
  .hotel-transfer .cta-btn { padding: 0.7rem 1.8rem; font-size: 0.88rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .hotel-transfer .hero { height: 50vh; }
  .hotel-transfer .hero-content h1 { font-size: 1.55rem; }
  .hotel-transfer .intro { padding: 3.2rem 1.2rem; }
  .hotel-transfer .intro h2 { font-size: 1.4rem; }
  .hotel-transfer .intro p { font-size: 0.88rem; line-height: 1.6; }
  .hotel-transfer .features { padding: 3.5rem 1.2rem; gap: 1.5rem; }
  .hotel-transfer .feature { padding: 1.6rem 1.2rem; }
  .hotel-transfer .split-text { padding: 2.5rem 1.2rem; }
  .hotel-transfer .split-text h2 { font-size: 1.35rem; }
  .hotel-transfer .split-text p { font-size: 0.88rem; }
  .hotel-transfer .cta { padding: 3.2rem 1.2rem; }
  .hotel-transfer .cta h2 { font-size: 1.35rem; }
  .hotel-transfer .cta p { font-size: 0.88rem; }
  .hotel-transfer .cta-btn { padding: 0.65rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .hotel-transfer .hero { height: 45vh; }
  .hotel-transfer .hero-content h1 { font-size: 1.4rem; }
  .hotel-transfer .hero-content p { font-size: 0.85rem; }
  .hotel-transfer .intro h2 { font-size: 1.25rem; }
  .hotel-transfer .intro p { font-size: 0.85rem; }
  .hotel-transfer .feature h3 { font-size: 1.05rem; }
  .hotel-transfer .feature p { font-size: 0.85rem; }
  .hotel-transfer .split-text h2 { font-size: 1.25rem; }
  .hotel-transfer .split-text p { font-size: 0.85rem; }
  .hotel-transfer .cta h2 { font-size: 1.25rem; }
  .hotel-transfer .cta p { font-size: 0.85rem; }
  .hotel-transfer .cta-btn { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
}


/* ===========================================================
   KOFFERTRANSPORT – SWISS RENT STYLE
   =========================================================== */

.luggage-transfer {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO === */
.luggage-transfer .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center 30%;
}

.luggage-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.luggage-transfer .hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.luggage-transfer .hero-content h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.luggage-transfer .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO === */
.luggage-transfer .intro {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fff;
}

.luggage-transfer .intro h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  color: #111;
}

.luggage-transfer .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.luggage-transfer .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.luggage-transfer .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.luggage-transfer .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.luggage-transfer .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.luggage-transfer .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #111;
}

.luggage-transfer .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR PROPORTIONAL SCALE
   ========================================================= */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .luggage-transfer .hero { height: 60vh; }
  .luggage-transfer .hero-content h1 { font-size: 2.5rem; }
  .luggage-transfer .hero-content p { font-size: 1rem; }

  .luggage-transfer .intro { padding: 4.5rem 1.5rem; }
  .luggage-transfer .intro h2 { font-size: 1.8rem; }

  .luggage-transfer .features { gap: 2rem; padding: 4.5rem 1.5rem; }
  .luggage-transfer .feature { padding: 2.2rem 1.8rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .luggage-transfer .hero { height: 55vh; }
  .luggage-transfer .hero-content h1 { font-size: 2.3rem; }
  .luggage-transfer .hero-content p { font-size: 1rem; }

  .luggage-transfer .intro h2 { font-size: 1.7rem; }
  .luggage-transfer .intro p { font-size: 0.98rem; max-width: 700px; }

  .luggage-transfer .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }
  .luggage-transfer .feature i { font-size: 1.9rem; }
  .luggage-transfer .feature h3 { font-size: 1.2rem; }
  .luggage-transfer .feature p { font-size: 0.9rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .luggage-transfer .hero { height: 55vh; }
  .luggage-transfer .hero-content h1 { font-size: 2rem; }
  .luggage-transfer .hero-content p { font-size: 0.95rem; }

  .luggage-transfer .intro { padding: 4rem 1.4rem; }
  .luggage-transfer .intro h2 { font-size: 1.6rem; }
  .luggage-transfer .intro p { font-size: 0.93rem; }

  .luggage-transfer .features { gap: 1.8rem; padding: 4rem 1.4rem; }
  .luggage-transfer .feature { flex: 1 1 280px; padding: 1.8rem 1.4rem; }
  .luggage-transfer .feature h3 { font-size: 1.1rem; }
  .luggage-transfer .feature p { font-size: 0.88rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .luggage-transfer .hero { height: 55vh; }
  .luggage-transfer .hero-content h1 { font-size: 1.8rem; }
  .luggage-transfer .hero-content p { font-size: 0.95rem; }

  .luggage-transfer .intro h2 { font-size: 1.55rem; }
  .luggage-transfer .intro p { font-size: 0.9rem; }

  .luggage-transfer .features { gap: 1.5rem; padding: 3.5rem 1.2rem; }
  .luggage-transfer .feature { flex: 1 1 100%; max-width: 380px; padding: 1.8rem 1.3rem; }
  .luggage-transfer .feature i { font-size: 1.7rem; }
  .luggage-transfer .feature h3 { font-size: 1.05rem; }
  .luggage-transfer .feature p { font-size: 0.88rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .luggage-transfer .hero { height: 50vh; }
  .luggage-transfer .hero-content h1 { font-size: 1.55rem; }
  .luggage-transfer .hero-content p { font-size: 0.88rem; }

  .luggage-transfer .intro { padding: 3.2rem 1.2rem; }
  .luggage-transfer .intro h2 { font-size: 1.4rem; }
  .luggage-transfer .intro p { font-size: 0.88rem; line-height: 1.6; }

  .luggage-transfer .features { padding: 3.2rem 1.2rem; gap: 1.4rem; }
  .luggage-transfer .feature { padding: 1.6rem 1.2rem; border-radius: 14px; }
  .luggage-transfer .feature i { font-size: 1.5rem; }
  .luggage-transfer .feature h3 { font-size: 0.95rem; }
  .luggage-transfer .feature p { font-size: 0.82rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .luggage-transfer .hero { height: 45vh; }
  .luggage-transfer .hero-content h1 { font-size: 1.4rem; }
  .luggage-transfer .hero-content p { font-size: 0.85rem; }

  .luggage-transfer .intro h2 { font-size: 1.25rem; }
  .luggage-transfer .intro p { font-size: 0.85rem; }

  .luggage-transfer .feature h3 { font-size: 0.9rem; }
  .luggage-transfer .feature p { font-size: 0.8rem; }
}


/* ===========================================================
   🚐 LUGGAGE VAN SECTION – SWISS RENT A CAR STYLE
   =========================================================== */

.luggage-van {
  background: #fff;
  color: #111;
  font-family: "Roboto", sans-serif;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.luggage-van-content {
  max-width: 1050px;
  width: 100%;
}

.luggage-van-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  color: #111;
}

.luggage-van-content h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: #d21f26; /* SRAC Red */
  margin-top: 1rem;
}

.luggage-van-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 1.8rem;
}

.luggage-van-content strong {
  color: #000;
}

.luggage-van-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.luggage-van-list li {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.luggage-van-list i {
  color: #d21f26;
  font-size: 1rem;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT SCALE SYSTEM
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .luggage-van {
    padding: 5rem 2rem;
  }

  .luggage-van-content h2 {
    font-size: 2.4rem;
  }

  .luggage-van-content p,
  .luggage-van-list li {
    font-size: 1rem;
  }

  .luggage-van-content h2::after {
    width: 80px;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .luggage-van {
    padding: 4.5rem 1.8rem;
  }

  .luggage-van-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.3rem;
  }

  .luggage-van-content p {
    font-size: 0.98rem;
    margin-bottom: 1.6rem;
  }

  .luggage-van-list li {
    font-size: 0.98rem;
    gap: 0.5rem;
  }

  .luggage-van-list i {
    font-size: 0.95rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .luggage-van {
    padding: 4rem 1.6rem;
  }

  .luggage-van-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .luggage-van-content h2::after {
    margin: 1rem auto 0;
  }

  .luggage-van-content p {
    font-size: 0.95rem;
    text-align: center;
  }

  .luggage-van-list {
    margin: 1.8rem auto;
    max-width: 90%;
  }

  .luggage-van-list li {
    font-size: 0.95rem;
    justify-content: center;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .luggage-van {
    padding: 3.5rem 1.4rem;
  }

  .luggage-van-content h2 {
    font-size: 1.8rem;
  }

  .luggage-van-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .luggage-van-list li {
    font-size: 0.9rem;
    gap: 0.45rem;
  }

  .luggage-van-list i {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .luggage-van {
    padding: 3rem 1.2rem;
  }

  .luggage-van-content h2 {
    font-size: 1.65rem;
  }

  .luggage-van-content p {
    font-size: 0.88rem;
    margin-bottom: 1.4rem;
  }

  .luggage-van-content h2::after {
    width: 70px;
    height: 2.5px;
  }

  .luggage-van-list {
    margin: 1.5rem 0;
  }

  .luggage-van-list li {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .luggage-van {
    padding: 2.8rem 1rem;
  }

  .luggage-van-content h2 {
    font-size: 1.5rem;
  }

  .luggage-van-content p {
    font-size: 0.85rem;
  }

  .luggage-van-list li {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .luggage-van-list i {
    font-size: 0.85rem;
  }

  .luggage-van-content h2::after {
    width: 60px;
  }
}


/* ===========================================================
   🚐 VAN FLEET SECTION – SWISS RENT A CAR STYLE (KOMPAKTE VERSION)
   =========================================================== */

.luggagetransportvehicle {
  background: #f6f7f8;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.van-fleet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1100px;
  width: 100%;
}

.van-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.2rem;
}

.van-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.09);
}

.van-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.van-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  margin: 1rem 0 0.5rem;
}

.van-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
  padding: 0 0.8rem;
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SRAC PROPORTIONAL SCALE
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .luggagetransportvehicle {
    padding: 5rem 2rem;
  }

  .van-fleet {
    gap: 1.4rem;
    max-width: 1000px;
  }

  .van-card img {
    height: 150px;
  }

  .van-card h3 {
    font-size: 1.05rem;
  }

  .van-card p {
    font-size: 0.92rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .luggagetransportvehicle {
    padding: 4.5rem 1.8rem;
  }

  .van-fleet {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .van-card img {
    height: 140px;
  }

  .van-card h3 {
    font-size: 1rem;
  }

  .van-card p {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 768px – Tablet hoch (2x2 Layout) */
@media (max-width: 768px) {
  .luggagetransportvehicle {
    padding: 4rem 1.6rem;
  }

  .van-fleet {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    justify-items: center;
  }

  .van-card {
    max-width: 300px;
    padding-bottom: 1rem;
  }

  .van-card img {
    height: 130px;
  }

  .van-card h3 {
    font-size: 0.95rem;
  }

  .van-card p {
    font-size: 0.86rem;
    padding: 0 0.7rem;
  }
}

/* 🧩 bis 600px – kleine Handys (kompaktes 2x2) */
@media (max-width: 600px) {
  .luggagetransportvehicle {
    padding: 3.5rem 1.4rem;
  }

  .van-fleet {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .van-card {
    max-width: 270px;
  }

  .van-card img {
    height: 120px;
  }

  .van-card h3 {
    font-size: 0.92rem;
  }

  .van-card p {
    font-size: 0.84rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones (1x1 Stack) */
@media (max-width: 420px) {
  .luggagetransportvehicle {
    padding: 3rem 1.2rem;
  }

  .van-fleet {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    justify-items: center;
  }

  .van-card {
    max-width: 320px;
  }

  .van-card img {
    height: 150px;
  }

  .van-card h3 {
    font-size: 0.9rem;
  }

  .van-card p {
    font-size: 0.82rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .luggagetransportvehicle {
    padding: 2.8rem 1rem;
  }

  .van-fleet {
    gap: 1rem;
  }

  .van-card {
    max-width: 290px;
  }

  .van-card img {
    height: 140px;
  }

  .van-card h3 {
    font-size: 0.88rem;
  }

  .van-card p {
    font-size: 0.8rem;
  }
}


/* ===========================================================
   🚐 LUGGAGE TRANSFER – SPLIT & CTA SECTION (SRAC RESPONSIVE)
   =========================================================== */

.luggage-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.luggage-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.luggage-transfer .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.luggage-transfer .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 1rem;
}

.luggage-transfer .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.luggage-transfer .split-text ul {
  list-style: none;
  padding: 0;
}

.luggage-transfer .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.luggage-transfer .split-text li i {
  color: #d21f26;
}

/* === CTA === */
.luggage-transfer .cta {
  background: #f9f9f9;
  color: #111;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.luggage-transfer .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.luggage-transfer .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.luggage-transfer .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.luggage-transfer .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SRAC SCALE SYSTEM
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .luggage-transfer .split-text {
    padding: 3.5rem 2.5rem;
  }

  .luggage-transfer .split-text h2,
  .luggage-transfer .cta h2 {
    font-size: 1.7rem;
  }

  .luggage-transfer .cta {
    padding: 4rem 1.5rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .luggage-transfer .split-text {
    padding: 3rem 2rem;
  }

  .luggage-transfer .split-text h2,
  .luggage-transfer .cta h2 {
    font-size: 1.6rem;
  }

  .luggage-transfer .split-text p,
  .luggage-transfer .cta p {
    font-size: 0.95rem;
  }

  .luggage-transfer .split-text li {
    font-size: 0.95rem;
  }

  .luggage-transfer .split-image {
    min-height: 380px;
  }
}

/* 🧩 bis 768px – Tablet hoch (Split übereinander) */
@media (max-width: 768px) {
  .luggage-transfer .split-section {
    flex-direction: column;
  }

  .luggage-transfer .split-image,
  .luggage-transfer .split-text {
    flex: 1 1 100%;
    width: 100%;
  }

  .luggage-transfer .split-image {
    min-height: 320px;
  }

  .luggage-transfer .split-text {
    padding: 3rem 1.8rem;
    text-align: center;
  }

  .luggage-transfer .split-text ul {
    margin-top: 1.2rem;
  }

  .luggage-transfer .split-text li {
    justify-content: center;
    font-size: 0.93rem;
  }

  .luggage-transfer .split-text h2 {
    font-size: 1.55rem;
  }

  .luggage-transfer .cta {
    padding: 3.5rem 1.3rem;
  }

  .luggage-transfer .cta h2 {
    font-size: 1.55rem;
  }

  .luggage-transfer .cta p {
    font-size: 0.92rem;
  }

  .luggage-transfer .cta-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .luggage-transfer .split-text {
    padding: 2.8rem 1.4rem;
  }

  .luggage-transfer .split-text h2,
  .luggage-transfer .cta h2 {
    font-size: 1.45rem;
  }

  .luggage-transfer .split-text p,
  .luggage-transfer .cta p {
    font-size: 0.9rem;
  }

  .luggage-transfer .split-text li {
    font-size: 0.9rem;
    gap: 0.45rem;
  }

  .luggage-transfer .cta {
    padding: 3rem 1.2rem;
  }

  .luggage-transfer .cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .luggage-transfer .split-image {
    min-height: 280px;
  }

  .luggage-transfer .split-text {
    padding: 2.6rem 1.2rem;
  }

  .luggage-transfer .split-text h2,
  .luggage-transfer .cta h2 {
    font-size: 1.35rem;
  }

  .luggage-transfer .split-text p,
  .luggage-transfer .cta p {
    font-size: 0.88rem;
  }

  .luggage-transfer .cta-btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.88rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .luggage-transfer .split-image {
    min-height: 240px;
  }

  .luggage-transfer .split-text {
    padding: 2.4rem 1rem;
  }

  .luggage-transfer .split-text h2,
  .luggage-transfer .cta h2 {
    font-size: 1.25rem;
  }

  .luggage-transfer .split-text p,
  .luggage-transfer .cta p {
    font-size: 0.85rem;
  }

  .luggage-transfer .cta-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }
}




/* ===========================================================
   🎿 SKIRESORT TRANSFER – SWISS RENT STYLE (RESPONSIVE)
   =========================================================== */

.skiresort-transfer {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO === */
.skiresort-transfer .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center ;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.skiresort-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.skiresort-transfer .hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.skiresort-transfer .hero-content h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.skiresort-transfer .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO === */
.skiresort-transfer .intro {
  text-align: center;
  padding: 5rem 1.5rem;
}

.skiresort-transfer .intro h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.skiresort-transfer .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.skiresort-transfer .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 1.5rem;
}

.skiresort-transfer .feature {
  background: #fff;
  flex: 1 1 300px;
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
  max-width: 340px;
}

.skiresort-transfer .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.skiresort-transfer .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.skiresort-transfer .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.skiresort-transfer .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION === */
.skiresort-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.skiresort-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.skiresort-transfer .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skiresort-transfer .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.skiresort-transfer .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.skiresort-transfer .split-text ul {
  list-style: none;
  padding: 0;
}

.skiresort-transfer .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.skiresort-transfer .split-text li i {
  color: #d21f26;
}

/* === CTA === */
.skiresort-transfer .cta {
  background: #f9f9f9;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.skiresort-transfer .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.skiresort-transfer .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.skiresort-transfer .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.skiresort-transfer .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR PROPORTIONAL SCALE
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .skiresort-transfer .hero { height: 60vh; }
  .skiresort-transfer .intro { padding: 4.5rem 1.5rem; }
  .skiresort-transfer .intro h2 { font-size: 1.8rem; }
  .skiresort-transfer .features { gap: 2rem; padding: 4.5rem 1.5rem; }
  .skiresort-transfer .feature { padding: 2.2rem 1.8rem; }
  .skiresort-transfer .split-text { padding: 3.8rem 2.8rem; }
  .skiresort-transfer .cta { padding: 4rem 1.5rem; }
  .skiresort-transfer .cta h2 { font-size: 1.7rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .skiresort-transfer .hero { height: 55vh; }
  .skiresort-transfer .hero-content h1 { font-size: 2.3rem; }
  .skiresort-transfer .hero-content p { font-size: 1rem; }
  .skiresort-transfer .intro h2 { font-size: 1.7rem; }
  .skiresort-transfer .intro p { font-size: 0.98rem; max-width: 700px; }
  .skiresort-transfer .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }
  .skiresort-transfer .feature h3 { font-size: 1.2rem; }
  .skiresort-transfer .split-text { padding: 3.5rem 2.5rem; }
  .skiresort-transfer .split-text h2 { font-size: 1.65rem; }
  .skiresort-transfer .split-text p { font-size: 0.95rem; }
  .skiresort-transfer .cta h2 { font-size: 1.65rem; }
  .skiresort-transfer .cta p { font-size: 0.95rem; }
  .skiresort-transfer .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .skiresort-transfer .hero { height: 55vh; }
  .skiresort-transfer .hero-content h1 { font-size: 2rem; }
  .skiresort-transfer .intro { padding: 4rem 1.4rem; }
  .skiresort-transfer .features { gap: 1.8rem; padding: 4rem 1.4rem; }
  .skiresort-transfer .feature { flex: 1 1 280px; padding: 1.8rem 1.4rem; }
  .skiresort-transfer .split-section { flex-direction: column; }
  .skiresort-transfer .split-text, 
  .skiresort-transfer .split-image { flex: 1 1 100%; }
  .skiresort-transfer .split-text { padding: 3.2rem 2rem; text-align: center; }
  .skiresort-transfer .split-text ul { align-items: center; }
  .skiresort-transfer .cta { padding: 3.8rem 1.4rem; }
  .skiresort-transfer .cta h2 { font-size: 1.55rem; }
  .skiresort-transfer .cta-btn { padding: 0.75rem 1.9rem; font-size: 0.9rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .skiresort-transfer .hero { height: 55vh; }
  .skiresort-transfer .hero-content h1 { font-size: 1.8rem; }
  .skiresort-transfer .hero-content p { font-size: 0.95rem; }
  .skiresort-transfer .intro h2 { font-size: 1.55rem; }
  .skiresort-transfer .intro p { font-size: 0.9rem; }
  .skiresort-transfer .feature { flex: 1 1 100%; max-width: 380px; }
  .skiresort-transfer .feature i { font-size: 1.8rem; }
  .skiresort-transfer .feature h3 { font-size: 1.15rem; }
  .skiresort-transfer .feature p { font-size: 0.9rem; }
  .skiresort-transfer .split-text { padding: 2.8rem 1.6rem; }
  .skiresort-transfer .split-text h2 { font-size: 1.45rem; }
  .skiresort-transfer .split-text p { font-size: 0.9rem; }
  .skiresort-transfer .cta h2 { font-size: 1.45rem; }
  .skiresort-transfer .cta p { font-size: 0.9rem; }
  .skiresort-transfer .cta-btn { padding: 0.7rem 1.8rem; font-size: 0.88rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .skiresort-transfer .hero { height: 50vh; }
  .skiresort-transfer .hero-content h1 { font-size: 1.55rem; }
  .skiresort-transfer .intro { padding: 3.2rem 1.2rem; }
  .skiresort-transfer .intro h2 { font-size: 1.4rem; }
  .skiresort-transfer .intro p { font-size: 0.88rem; line-height: 1.6; }
  .skiresort-transfer .features { padding: 3.5rem 1.2rem; gap: 1.5rem; }
  .skiresort-transfer .feature { padding: 1.6rem 1.2rem; }
  .skiresort-transfer .split-text { padding: 2.5rem 1.2rem; }
  .skiresort-transfer .split-text h2 { font-size: 1.35rem; }
  .skiresort-transfer .split-text p { font-size: 0.88rem; }
  .skiresort-transfer .cta { padding: 3.2rem 1.2rem; }
  .skiresort-transfer .cta h2 { font-size: 1.35rem; }
  .skiresort-transfer .cta p { font-size: 0.88rem; }
  .skiresort-transfer .cta-btn { padding: 0.65rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .skiresort-transfer .hero { height: 45vh; }
  .skiresort-transfer .hero-content h1 { font-size: 1.4rem; }
  .skiresort-transfer .hero-content p { font-size: 0.85rem; }
  .skiresort-transfer .intro h2 { font-size: 1.25rem; }
  .skiresort-transfer .intro p { font-size: 0.85rem; }
  .skiresort-transfer .feature h3 { font-size: 1.05rem; }
  .skiresort-transfer .feature p { font-size: 0.85rem; }
  .skiresort-transfer .split-text h2 { font-size: 1.25rem; }
  .skiresort-transfer .split-text p { font-size: 0.85rem; }
  .skiresort-transfer .cta h2 { font-size: 1.25rem; }
  .skiresort-transfer .cta p { font-size: 0.85rem; }
  .skiresort-transfer .cta-btn { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
}


/* ===========================================================
   SIGHTSEEING TRANSFERS – SWISS RENT STYLE
   =========================================================== */

.sightseeing-transfer {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO === */
.sightseeing-transfer .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sightseeing-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.sightseeing-transfer .hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.sightseeing-transfer .hero-content h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.sightseeing-transfer .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO === */
.sightseeing-transfer .intro {
  text-align: center;
  padding: 5rem 1.5rem;
}

.sightseeing-transfer .intro h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.sightseeing-transfer .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.sightseeing-transfer .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.sightseeing-transfer .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.sightseeing-transfer .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sightseeing-transfer .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.sightseeing-transfer .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.sightseeing-transfer .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION === */
.sightseeing-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.sightseeing-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.sightseeing-transfer .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sightseeing-transfer .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.sightseeing-transfer .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.sightseeing-transfer .split-text ul {
  list-style: none;
  padding: 0;
}

.sightseeing-transfer .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.sightseeing-transfer .split-text li i {
  color: #d21f26;
}

/* === CTA === */
.sightseeing-transfer .cta {
  background: #f9f9f9;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.sightseeing-transfer .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.sightseeing-transfer .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.sightseeing-transfer .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sightseeing-transfer .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT A CAR PROPORTIONAL SCALE
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .sightseeing-transfer .hero { height: 60vh; }
  .sightseeing-transfer .intro { padding: 4.5rem 1.5rem; }
  .sightseeing-transfer .intro h2 { font-size: 1.8rem; }
  .sightseeing-transfer .features { gap: 2rem; padding: 4.5rem 1.5rem; }
  .sightseeing-transfer .feature { padding: 2.2rem 1.8rem; }
  .sightseeing-transfer .split-text { padding: 3.8rem 2.8rem; }
  .sightseeing-transfer .cta { padding: 4rem 1.5rem; }
  .sightseeing-transfer .cta h2 { font-size: 1.7rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .sightseeing-transfer .hero { height: 55vh; }
  .sightseeing-transfer .hero-content h1 { font-size: 2.3rem; }
  .sightseeing-transfer .hero-content p { font-size: 1rem; }
  .sightseeing-transfer .intro h2 { font-size: 1.7rem; }
  .sightseeing-transfer .intro p { font-size: 0.98rem; max-width: 700px; }
  .sightseeing-transfer .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }
  .sightseeing-transfer .feature h3 { font-size: 1.2rem; }
  .sightseeing-transfer .split-text { padding: 3.5rem 2.5rem; }
  .sightseeing-transfer .split-text h2 { font-size: 1.65rem; }
  .sightseeing-transfer .split-text p { font-size: 0.95rem; }
  .sightseeing-transfer .cta h2 { font-size: 1.65rem; }
  .sightseeing-transfer .cta p { font-size: 0.95rem; }
  .sightseeing-transfer .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .sightseeing-transfer .hero { height: 55vh; }
  .sightseeing-transfer .hero-content h1 { font-size: 2rem; }
  .sightseeing-transfer .intro { padding: 4rem 1.4rem; }
  .sightseeing-transfer .features { gap: 1.8rem; padding: 4rem 1.4rem; }
  .sightseeing-transfer .feature { flex: 1 1 280px; padding: 1.8rem 1.4rem; }
  .sightseeing-transfer .split-section { flex-direction: column; }
  .sightseeing-transfer .split-text,
  .sightseeing-transfer .split-image { flex: 1 1 100%; }
  .sightseeing-transfer .split-text { padding: 3.2rem 2rem; text-align: center; }
  .sightseeing-transfer .split-text ul { align-items: center; }
  .sightseeing-transfer .cta { padding: 3.8rem 1.4rem; }
  .sightseeing-transfer .cta h2 { font-size: 1.55rem; }
  .sightseeing-transfer .cta-btn { padding: 0.75rem 1.9rem; font-size: 0.9rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .sightseeing-transfer .hero { height: 55vh; }
  .sightseeing-transfer .hero-content h1 { font-size: 1.8rem; }
  .sightseeing-transfer .hero-content p { font-size: 0.95rem; }
  .sightseeing-transfer .intro h2 { font-size: 1.55rem; }
  .sightseeing-transfer .intro p { font-size: 0.9rem; }
  .sightseeing-transfer .feature { flex: 1 1 100%; max-width: 380px; }
  .sightseeing-transfer .feature i { font-size: 1.8rem; }
  .sightseeing-transfer .feature h3 { font-size: 1.15rem; }
  .sightseeing-transfer .feature p { font-size: 0.9rem; }
  .sightseeing-transfer .split-text { padding: 2.8rem 1.6rem; }
  .sightseeing-transfer .split-text h2 { font-size: 1.45rem; }
  .sightseeing-transfer .split-text p { font-size: 0.9rem; }
  .sightseeing-transfer .cta h2 { font-size: 1.45rem; }
  .sightseeing-transfer .cta p { font-size: 0.9rem; }
  .sightseeing-transfer .cta-btn { padding: 0.7rem 1.8rem; font-size: 0.88rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .sightseeing-transfer .hero { height: 50vh; }
  .sightseeing-transfer .hero-content h1 { font-size: 1.55rem; }
  .sightseeing-transfer .intro { padding: 3.2rem 1.2rem; }
  .sightseeing-transfer .intro h2 { font-size: 1.4rem; }
  .sightseeing-transfer .intro p { font-size: 0.88rem; line-height: 1.6; }
  .sightseeing-transfer .features { padding: 3.5rem 1.2rem; gap: 1.5rem; }
  .sightseeing-transfer .feature { padding: 1.6rem 1.2rem; }
  .sightseeing-transfer .split-text { padding: 2.5rem 1.2rem; }
  .sightseeing-transfer .split-text h2 { font-size: 1.35rem; }
  .sightseeing-transfer .split-text p { font-size: 0.88rem; }
  .sightseeing-transfer .cta { padding: 3.2rem 1.2rem; }
  .sightseeing-transfer .cta h2 { font-size: 1.35rem; }
  .sightseeing-transfer .cta p { font-size: 0.88rem; }
  .sightseeing-transfer .cta-btn { padding: 0.65rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .sightseeing-transfer .hero { height: 45vh; }
  .sightseeing-transfer .hero-content h1 { font-size: 1.4rem; }
  .sightseeing-transfer .hero-content p { font-size: 0.85rem; }
  .sightseeing-transfer .intro h2 { font-size: 1.25rem; }
  .sightseeing-transfer .intro p { font-size: 0.85rem; }
  .sightseeing-transfer .feature h3 { font-size: 1.05rem; }
  .sightseeing-transfer .feature p { font-size: 0.85rem; }
  .sightseeing-transfer .split-text h2 { font-size: 1.25rem; }
  .sightseeing-transfer .split-text p { font-size: 0.85rem; }
  .sightseeing-transfer .cta h2 { font-size: 1.25rem; }
  .sightseeing-transfer .cta p { font-size: 0.85rem; }
  .sightseeing-transfer .cta-btn { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
}


/*tours.html*/
/* ======================
   TOURS SECTION (RESPONSIVE OPTIMIZED – CENTERED MOBILE)
   ====================== */

.tours-section {
  background: #f9f9f9;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

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

.tours-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #111;
  position: relative;
}

.tours-head h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d90000;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* === Tour Rows === */
.tours-row {
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: min(100%, 1050px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tours-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* === Text === */
.tours-copy {
  flex: 1;
  padding: 3rem;
  z-index: 2;
}

.tours-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.tours-copy p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.3rem;
}

/* === Image === */
.tours-media {
  flex: 1.1;
  overflow: hidden;
  min-height: 250px;
}

.tours-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tours-row:hover .tours-media img {
  transform: scale(1.05);
}

/* === Outline Button === */
.tours-row .btn-outline {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border: 2px solid #d90000;
  border-radius: 50px;
  color: #d90000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tours-row .btn-outline:hover {
  background: #d90000;
  color: #fff;
}

/* ======================================================
   RESPONSIVE – SRAC CENTERED MOBILE VERSION
   ====================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .tours-section {
    padding: 5rem 2rem;
    gap: 3.5rem;
  }

  .tours-copy {
    padding: 2.5rem;
  }

  .tours-media {
    min-height: 230px;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .tours-section {
    padding: 4.5rem 1.8rem;
    gap: 3rem;
  }

  .tours-copy {
    padding: 2rem;
  }

  .tours-copy h3 {
    font-size: 1.45rem;
  }

  .tours-copy p {
    font-size: 0.93rem;
  }

  .tours-row .btn-outline {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .tours-media {
    min-height: 220px;
  }
}

/* 🧩 bis 768px – Tablet hoch (zentriert) */
@media (max-width: 768px) {
  .tours-section {
    gap: 2.8rem;
  }

  .tours-head h2 {
    font-size: 1.9rem;
  }

  /* zentrierte Darstellung */
  .tours-row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .tours-copy {
    order: 2;
    padding: 1.8rem 1.2rem 2rem;
  }

  .tours-copy h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }

  .tours-copy p {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
  }

  .tours-row .btn-outline {
    font-size: 0.82rem;
    padding: 0.55rem 1.3rem;
  }

  .tours-media {
    order: 1;
    width: 100%;
    height: 260px;
  }

  
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .tours-section {
    padding: 3.8rem 1.3rem;
    gap: 2.4rem;
  }

  .tours-head h2 {
    font-size: 1.75rem;
  }

  .tours-row {
    text-align: center;
    align-items: center;
  }

  .tours-copy {
    padding: 1.4rem 1rem 1.8rem;
  }

  .tours-copy h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .tours-copy p {
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
  }

  .tours-row .btn-outline {
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
  }

  .tours-media {
    height: 230px;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .tours-section {
    padding: 3.5rem 1rem;
    gap: 2rem;
  }

  .tours-head h2 {
    font-size: 1.55rem;
  }

  .tours-head h2::after {
    width: 60px;
  }

  .tours-row {
    text-align: center;
    align-items: center;
  }

  .tours-copy {
    padding: 1.2rem 0.8rem 1.6rem;
  }

  .tours-copy h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .tours-copy p {
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
  }

  .tours-row .btn-outline {
    font-size: 0.76rem;
    padding: 0.45rem 1rem;
  }

  .tours-media {
    height: 210px;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .tours-section {
    padding: 3rem 0.8rem;
  }

  .tours-head h2 {
    font-size: 1.45rem;
  }

  .tours-copy {
    padding: 1rem 0.6rem 1.4rem;
  }

  .tours-copy h3 {
    font-size: 1rem;
  }

  .tours-copy p {
    font-size: 0.8rem;
  }

  .tours-row .btn-outline {
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
  }

  .tours-media {
    height: 190px;
  }
}

/* ==========================================================
   WHY US SECTION – SWISS RENT A CAR (2×2 GRID + CTA)
   ========================================================== */

.why-us {
  background: #f9f9f9;
  padding: 6rem 2rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

/* === HEADER === */
.why-head h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  position: relative;
}

.why-head h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d10b0b;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.why-head p {
  color: #555;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* === GRID (2×2) === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.why-box {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box i {
  font-size: 2.4rem;
  color: #d10b0b;
  margin-bottom: 1rem;
}

.why-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #111;
  font-weight: 600;
}

.why-box p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* === CTA BUTTON === */
.why-cta {
  margin-top: 2rem;
  text-align: center;
}

.why-cta .tours-btn-primary {
  background-color: #d10b0b;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.why-cta .tours-btn-primary:hover {
  background-color: #b30a0a;
  transform: translateY(-2px);
}

/* ==========================================================
   SEO CONTENT SECTION – SRAC STANDARD
   ========================================================== */

.seo-content {
  background: #fff;
  padding: 5rem 2rem;
  color: #333;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.seo-container {
  max-width: 1050px;
  margin: 0 auto;
}

.seo-container h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 1.5rem;
  position: relative;
}

.seo-container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d10b0b;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.seo-container p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  color: #555;
}

.seo-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.seo-icon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: #444;
}

.seo-icon i {
  color: #d10b0b;
  font-size: 1.4rem;
}

/* ======================================================
   RESPONSIVE – SWISS RENT A CAR STANDARD LAYOUT
   ====================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .why-us {
    padding: 5rem 2rem;
  }
  .why-grid {
    max-width: 820px;
    gap: 1.8rem;
  }
  .why-box {
    padding: 1.8rem;
  }
  .seo-content {
    padding: 4.5rem 2rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .why-us {
    padding: 4.5rem 1.8rem;
  }
  .why-head h2 {
    font-size: 2rem;
  }
  .why-head p {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    max-width: 750px;
  }
  .why-box {
    padding: 1.6rem;
  }
  .why-box i {
    font-size: 2.1rem;
  }
  .why-box h4 {
    font-size: 1.15rem;
  }
  .why-box p {
    font-size: 0.92rem;
  }
  .why-cta .tours-btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
  .seo-content {
    padding: 4rem 1.8rem;
  }
  .seo-container h2 {
    font-size: 2rem;
  }
  .seo-container p {
    font-size: 0.95rem;
  }
  .seo-icons {
    gap: 1.5rem;
  }
  .seo-icon i {
    font-size: 1.3rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .why-us {
    padding: 4rem 1.5rem;
  }
  .why-head h2 {
    font-size: 1.85rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    max-width: 680px;
  }
  .why-box {
    padding: 1.4rem;
  }
  .why-box i {
    font-size: 1.9rem;
  }
  .why-box h4 {
    font-size: 1.1rem;
  }
  .why-box p {
    font-size: 0.9rem;
  }
  .why-cta .tours-btn-primary {
    padding: 0.7rem 1.6rem;
    font-size: 0.85rem;
  }
  .seo-content {
    padding: 3.8rem 1.5rem;
  }
  .seo-container h2 {
    font-size: 1.8rem;
  }
  .seo-container p {
    font-size: 0.92rem;
  }
  .seo-icons {
    gap: 1.3rem;
  }
  .seo-icon {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .why-us {
    padding: 3.8rem 1.2rem;
  }
  .why-head h2 {
    font-size: 1.7rem;
  }
  .why-head p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 1.2rem;
  }
  .why-box {
    padding: 1.3rem;
  }
  .why-box i {
    font-size: 1.8rem;
  }
  .why-box h4 {
    font-size: 1.05rem;
  }
  .why-box p {
    font-size: 0.88rem;
  }
  .seo-content {
    padding: 3.5rem 1.2rem;
  }
  .seo-container h2 {
    font-size: 1.65rem;
  }
  .seo-container p {
    font-size: 0.9rem;
  }
  .seo-icons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .why-us {
    padding: 3.5rem 1rem;
  }
  .why-head h2 {
    font-size: 1.55rem;
  }
  .why-head h2::after {
    width: 60px;
  }
  .why-grid {
    gap: 1.1rem;
  }
  .why-box {
    padding: 1.2rem;
    border-radius: 12px;
  }
  .why-box i {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
  }
  .why-box h4 {
    font-size: 1rem;
  }
  .why-box p {
    font-size: 0.83rem;
  }
  .seo-content {
    padding: 3.2rem 1rem;
  }
  .seo-container h2 {
    font-size: 1.55rem;
  }
  .seo-container p {
    font-size: 0.85rem;
  }
  .seo-icon {
    font-size: 0.85rem;
  }
  .seo-icon i {
    font-size: 1.15rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .why-us {
    padding: 3rem 0.8rem;
  }
  .why-head h2 {
    font-size: 1.45rem;
  }
  .why-head p {
    font-size: 0.8rem;
  }
  .why-grid {
    gap: 1rem;
  }
  .why-box {
    padding: 1rem;
  }
  .why-box i {
    font-size: 1.6rem;
  }
  .why-box h4 {
    font-size: 0.95rem;
  }
  .why-box p {
    font-size: 0.8rem;
  }
  .seo-content {
    padding: 2.8rem 0.8rem;
  }
  .seo-container h2 {
    font-size: 1.45rem;
  }
  .seo-container p {
    font-size: 0.8rem;
  }
  .seo-icon {
    font-size: 0.8rem;
  }
  .seo-icon i {
    font-size: 1.1rem;
  }
}



/* ===========================================================
   WEF TRANSFER DAVOS – SWISS RENT STYLE
   =========================================================== */
/*knopf für pdf fleet öffne*/

     .limousine-cars .wef-fleet-link {
    display: block;
    margin-top: 0.6rem;
    text-align: center;
    font-size: 0.95rem;
    color: #d21f26;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .limousine-cars .wef-fleet-link:hover {
    color: #b91a20;
    text-decoration: underline;
  }

.wef-transfer {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO === */
.wef-transfer .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center 20% ;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wef-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.wef-transfer .hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.wef-transfer .hero-content h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.wef-transfer .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* === INTRO === */
.wef-transfer .intro {
  text-align: center;
  padding: 5rem 1.5rem;
}

.wef-transfer .intro h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.wef-transfer .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.wef-transfer .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.wef-transfer .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.wef-transfer .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.wef-transfer .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.wef-transfer .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.wef-transfer .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION === */
.wef-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff;
}

.wef-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 430px;
}

.wef-transfer .split-text {
  flex: 1 1 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wef-transfer .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.wef-transfer .split-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.wef-transfer .split-text ul {
  list-style: none;
  padding: 0;
}

.wef-transfer .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: #555;
}

.wef-transfer .split-text li i {
  color: #d21f26;
}

/* === CTA === */
.wef-transfer .cta {
  background: #f9f9f9;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.wef-transfer .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.wef-transfer .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.wef-transfer .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wef-transfer .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT SCALE SYSTEM (WEF TRANSFER)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .wef-transfer .hero { height: 60vh; }
  .wef-transfer .hero-content h1 { font-size: 2.4rem; }
  .wef-transfer .hero-content p { font-size: 1.05rem; }

  .wef-transfer .intro { padding: 4.5rem 2rem; }
  .wef-transfer .intro h2 { font-size: 1.8rem; }

  .wef-transfer .features { gap: 2rem; padding: 4.5rem 2rem; }
  .wef-transfer .feature { padding: 2.2rem 1.8rem; }

  .wef-transfer .split-text { padding: 3.5rem 2.5rem; }
  .wef-transfer .cta { padding: 4rem 2rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .wef-transfer .hero { height: 55vh; }
  .wef-transfer .hero-content h1 { font-size: 2.2rem; }
  .wef-transfer .hero-content p { font-size: 1rem; }

  .wef-transfer .intro { padding: 4rem 2rem; }
  .wef-transfer .intro h2 { font-size: 1.7rem; }

  .wef-transfer .feature i { font-size: 1.8rem; }
  .wef-transfer .feature h3 { font-size: 1.2rem; }
  .wef-transfer .feature p { font-size: 0.9rem; }

  .wef-transfer .split-text { padding: 3rem 2rem; }
  .wef-transfer .split-text h2 { font-size: 1.6rem; }

  .wef-transfer .cta h2 { font-size: 1.6rem; }
  .wef-transfer .cta p { font-size: 0.95rem; }
  .wef-transfer .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .wef-transfer .hero { height: 55vh; padding: 0 1rem; }
  .wef-transfer .hero-content h1 { font-size: 2rem; }
  .wef-transfer .hero-content p { font-size: 0.95rem; }

  .wef-transfer .intro h2 { font-size: 1.6rem; }
  .wef-transfer .intro p { font-size: 0.95rem; }

  .wef-transfer .features { padding: 3.5rem 1.5rem; gap: 1.8rem; }
  .wef-transfer .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }

  .wef-transfer .split-section { flex-direction: column; }
  .wef-transfer .split-image,
  .wef-transfer .split-text { flex: 1 1 100%; width: 100%; }
  .wef-transfer .split-image { min-height: 320px; }
  .wef-transfer .split-text { padding: 3rem 1.8rem; text-align: center; }

  .wef-transfer .cta { padding: 3.5rem 1.5rem; }
  .wef-transfer .cta h2 { font-size: 1.5rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .wef-transfer .hero { height: 50vh; }
  .wef-transfer .hero-content h1 { font-size: 1.8rem; }
  .wef-transfer .hero-content p { font-size: 0.9rem; }

  .wef-transfer .intro { padding: 3.5rem 1.2rem; }
  .wef-transfer .intro h2 { font-size: 1.5rem; }

  .wef-transfer .feature { padding: 1.8rem 1.4rem; border-radius: 16px; }
  .wef-transfer .feature i { font-size: 1.6rem; }
  .wef-transfer .feature h3 { font-size: 1.1rem; }
  .wef-transfer .feature p { font-size: 0.88rem; }

  .wef-transfer .split-text { padding: 2.5rem 1.4rem; }
  .wef-transfer .split-text h2 { font-size: 1.4rem; }

  .wef-transfer .cta { padding: 3rem 1.2rem; }
  .wef-transfer .cta-btn { padding: 0.75rem 1.8rem; font-size: 0.9rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .wef-transfer .hero { height: 45vh; }
  .wef-transfer .hero-content h1 { font-size: 1.6rem; }
  .wef-transfer .hero-content p { font-size: 0.85rem; }

  .wef-transfer .intro h2 { font-size: 1.35rem; }
  .wef-transfer .intro p { font-size: 0.85rem; line-height: 1.6; }

  .wef-transfer .features { gap: 1.5rem; padding: 3rem 1rem; }
  .wef-transfer .feature { padding: 1.6rem 1.2rem; }
  .wef-transfer .feature i { font-size: 1.5rem; }
  .wef-transfer .feature h3 { font-size: 1rem; }
  .wef-transfer .feature p { font-size: 0.82rem; }

  .wef-transfer .split-text { padding: 2.2rem 1.2rem; }
  .wef-transfer .split-text h2 { font-size: 1.3rem; }

  .wef-transfer .cta h2 { font-size: 1.3rem; }
  .wef-transfer .cta p { font-size: 0.85rem; }
  .wef-transfer .cta-btn { padding: 0.7rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .wef-transfer .hero { height: 42vh; }
  .wef-transfer .hero-content h1 { font-size: 1.45rem; }
  .wef-transfer .hero-content p { font-size: 0.8rem; }

  .wef-transfer .intro h2 { font-size: 1.2rem; }
  .wef-transfer .intro p { font-size: 0.8rem; }

  .wef-transfer .feature { padding: 1.4rem 1rem; border-radius: 14px; }
  .wef-transfer .feature i { font-size: 1.4rem; }
  .wef-transfer .feature h3 { font-size: 0.95rem; }
  .wef-transfer .feature p { font-size: 0.8rem; }

  .wef-transfer .split-text h2 { font-size: 1.15rem; }
  .wef-transfer .cta h2 { font-size: 1.2rem; }
  .wef-transfer .cta-btn { padding: 0.65rem 1.4rem; font-size: 0.8rem; }
}

/* ===========================================================
   🆕 WEF TRANSFER – PREMIUM SERVICES (SRAC COMPACT VERSION)
   =========================================================== */

.wef-transfer .premium-services {
  background: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}

.wef-transfer .premium-services h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.wef-transfer .premium-services p {
  color: #555;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.wef-transfer .service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem; /* 🔹 kleinerer Abstand */
  max-width: 1050px;
  margin: 0 auto;
}

.wef-transfer .service-box {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 2.2rem 1.8rem; /* 🔹 kompakter */
  flex: 1 1 260px; /* 🔹 schmalere Box */
  max-width: 300px; /* 🔹 engeres Raster */
  transition: all 0.3s ease;
}

.wef-transfer .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.wef-transfer .service-box i {
  font-size: 1.8rem;
  color: #d21f26;
  margin-bottom: 0.9rem;
}

.wef-transfer .service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
}

.wef-transfer .service-box p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===========================================================
   📱 RESPONSIVE DESIGN – COMPACT SCALE
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .wef-transfer .premium-services {
    padding: 4.5rem 2rem;
  }
  .wef-transfer .service-grid {
    gap: 1.5rem;
    max-width: 950px;
  }
  .wef-transfer .service-box {
    flex: 1 1 240px;
    max-width: 280px;
    padding: 2rem 1.6rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .wef-transfer .premium-services {
    padding: 4rem 1.8rem;
  }
  .wef-transfer .service-grid {
    gap: 1.4rem;
  }
  .wef-transfer .service-box {
    flex: 1 1 220px;
    max-width: 260px;
    padding: 1.8rem 1.4rem;
  }
  .wef-transfer .service-box h3 {
    font-size: 1.1rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .wef-transfer .premium-services {
    padding: 3.8rem 1.5rem;
  }
  .wef-transfer .service-grid {
    gap: 1.3rem;
  }
  .wef-transfer .service-box {
    flex: 1 1 210px;
    max-width: 240px;
    padding: 1.7rem 1.3rem;
  }
  .wef-transfer .service-box i {
    font-size: 1.7rem;
  }
  .wef-transfer .service-box h3 {
    font-size: 1.05rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .wef-transfer .premium-services {
    padding: 3.5rem 1.2rem;
  }
  .wef-transfer .premium-services h2 {
    font-size: 1.5rem;
  }
  .wef-transfer .service-grid {
    gap: 1.2rem;
  }
  .wef-transfer .service-box {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 1.6rem 1.1rem;
  }
  .wef-transfer .service-box p {
    font-size: 0.88rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .wef-transfer .premium-services {
    padding: 3rem 1rem;
  }
  .wef-transfer .service-box {
    border-radius: 14px;
    padding: 1.5rem 1rem;
  }
  .wef-transfer .service-box i {
    font-size: 1.6rem;
  }
  .wef-transfer .service-box h3 {
    font-size: 1rem;
  }
  .wef-transfer .service-box p {
    font-size: 0.85rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .wef-transfer .premium-services {
    padding: 2.8rem 0.9rem;
  }
  .wef-transfer .service-box {
    padding: 1.4rem 0.9rem;
  }
  .wef-transfer .service-box i {
    font-size: 1.5rem;
  }
  .wef-transfer .service-box h3 {
    font-size: 0.95rem;
  }
  .wef-transfer .service-box p {
    font-size: 0.82rem;
  }
}

/* ===========================================================
   🧭 WEF ACCESS SECTION – SWISS RENT A CAR RESPONSIVE
   =========================================================== */

.srac-wef-access {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.srac-wef-access-header h2 {
  font-size: 2rem;
  color: #000;
}

.srac-wef-access-line {
  width: 70px;
  height: 4px;
  background: #d21f26;
  margin: 15px auto 25px;
  border-radius: 2px;
}

.srac-wef-access-header p {
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.7;
}

.srac-wef-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}

.wef-access-card {
  position: relative;
  background: #fafafa;
  border: 1.5px solid rgba(210, 31, 38, 0.25);
  border-radius: 14px;
  padding: 30px 25px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wef-access-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(210, 31, 38, 0.15);
}

/* === Icon Badge === */
.wef-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
}

.wef-icon-badge i {
  font-size: 1.8rem;
  color: #d21f26;
}

.wef-icon-badge .badge {
  background: #d21f26;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Einheitlich rot für alle Varianten */
.wef-icon-badge.red i,
.badge.red {
  background: #d21f26;
  color: #fff;
}

.wef-access-card h3 {
  color: #000;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.wef-access-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}

.wef-access-card .note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 8px;
  font-style: italic;
}

.srac-wef-access-footer {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================================================
   📱 RESPONSIVE DESIGN – SRAC STANDARD SCALE
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .srac-wef-access {
    padding: 70px 6%;
  }
  .srac-wef-access-header h2 {
    font-size: 1.9rem;
  }
  .srac-wef-access-header p {
    font-size: 0.98rem;
  }
  .wef-access-card {
    padding: 28px 22px 22px;
  }
  .srac-wef-access-grid {
    gap: 30px;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .srac-wef-access {
    padding: 60px 6%;
  }
  .srac-wef-access-header h2 {
    font-size: 1.8rem;
  }
  .srac-wef-access-header p {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .srac-wef-access-grid {
    gap: 28px;
  }
  .wef-access-card {
    padding: 25px 20px 20px;
  }
  .wef-icon-badge i {
    font-size: 1.6rem;
  }
  .wef-access-card h3 {
    font-size: 1.1rem;
  }
  .wef-access-card p {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .srac-wef-access {
    padding: 55px 5%;
  }
  .srac-wef-access-header h2 {
    font-size: 1.7rem;
  }
  .srac-wef-access-header p {
    max-width: 680px;
    font-size: 0.92rem;
  }
  .srac-wef-access-grid {
    gap: 25px;
  }
  .wef-access-card {
    padding: 22px 18px 18px;
  }
  .wef-icon-badge {
    gap: 8px;
  }
  .wef-icon-badge i {
    font-size: 1.5rem;
  }
  .wef-icon-badge .badge {
    font-size: 0.75rem;
    padding: 3px 9px;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .srac-wef-access {
    padding: 45px 5%;
  }
  .srac-wef-access-header h2 {
    font-size: 1.6rem;
  }
  .srac-wef-access-header p {
    font-size: 0.9rem;
    margin-bottom: 35px;
  }
  .srac-wef-access-grid {
    gap: 20px;
  }
  .wef-access-card {
    padding: 20px 16px 18px;
  }
  .wef-access-card h3 {
    font-size: 1rem;
  }
  .wef-access-card p {
    font-size: 0.88rem;
  }
  .wef-icon-badge i {
    font-size: 1.4rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .srac-wef-access {
    padding: 40px 5%;
  }
  .srac-wef-access-header h2 {
    font-size: 1.45rem;
  }
  .srac-wef-access-line {
    width: 60px;
    height: 3px;
    margin: 12px auto 20px;
  }
  .srac-wef-access-header p {
    font-size: 0.87rem;
  }
  .wef-access-card {
    border-radius: 12px;
    padding: 18px 14px;
  }
  .wef-icon-badge i {
    font-size: 1.3rem;
  }
  .wef-icon-badge .badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  .wef-access-card h3 {
    font-size: 0.95rem;
  }
  .wef-access-card p {
    font-size: 0.85rem;
  }
  .wef-access-card .note {
    font-size: 0.8rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-wef-access {
    padding: 35px 4%;
  }
  .srac-wef-access-header h2 {
    font-size: 1.35rem;
  }
  .srac-wef-access-header p {
    font-size: 0.83rem;
  }
  .wef-access-card {
    padding: 16px 12px;
  }
  .wef-access-card h3 {
    font-size: 0.9rem;
  }
  .wef-access-card p {
    font-size: 0.8rem;
  }
  .srac-wef-access-footer {
    font-size: 0.9rem;
  }
}

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .srac-wef-access-footer p,
  .premium-services p {
    font-size: 0.97rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .srac-wef-access-footer p,
  .premium-services p {
    font-size: 0.95rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .srac-wef-access-footer p,
  .premium-services p {
    font-size: 0.93rem;
    line-height: 1.65;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .srac-wef-access-footer p,
  .premium-services p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .srac-wef-access-footer p,
  .premium-services p {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-wef-access-footer p,
  .premium-services p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}



/* ===========================================================
   🖤 HERO OVERLAY IMPROVEMENT – ALL TRANSFER PAGES
   =========================================================== */

.business-vip .hero::after,
.airport-transfer .hero::after,
.hotel-transfer .hero::after,
.luggage-transfer .hero::after,
.skiresort-transfer .hero::after,
.sightseeing-transfer .hero::after,
.wef-transfer .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.45)
  ); /* sanfter dunkler Verlauf */
  z-index: 1;
}

/* Stelle sicher, dass der Text VOR dem Overlay liegt */
.business-vip .hero-content,
.airport-transfer .hero-content,
.hotel-transfer .hero-content,
.luggage-transfer .hero-content,
.skiresort-transfer .hero-content,
.sightseeing-transfer .hero-content,
.wef-transfer .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* etwas mehr Kontrast */
}

/* Optional: Etwas dunklerer Text auf kleinen Geräten */
@media (max-width: 950px) {
  .business-vip .hero::after,
  .airport-transfer .hero::after,
  .hotel-transfer .hero::after,
  .luggage-transfer .hero::after,
  .skiresort-transfer .hero::after,
  .sightseeing-transfer .hero::after,
  .wef-transfer .hero::after {
    background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.5)
    );
  }
}


/* ===========================================================
   📱 SPLIT SECTION VISIBILITY FIX (ALL TRANSFER PAGES)
   =========================================================== */

.business-vip .split-section,
.airport-transfer .split-section,
.hotel-transfer .split-section,
.luggage-transfer .split-section,
.skiresort-transfer .split-section,
.sightseeing-transfer .split-section,
.wef-transfer .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  margin: 4rem auto;
  max-width: 1200px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ===== IMAGE SIDE ===== */
.business-vip .split-image,
.airport-transfer .split-image,
.hotel-transfer .split-image,
.luggage-transfer .split-image,
.skiresort-transfer .split-image,
.sightseeing-transfer .split-image,
.wef-transfer .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  transition: all 0.4s ease;
  filter: brightness(0.9) contrast(1.05);
  position: relative;
}

.business-vip .split-image::after,
.airport-transfer .split-image::after,
.hotel-transfer .split-image::after,
.luggage-transfer .split-image::after,
.skiresort-transfer .split-image::after,
.sightseeing-transfer .split-image::after,
.wef-transfer .split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* ===== TEXT SIDE ===== */
.business-vip .split-text,
.airport-transfer .split-text,
.hotel-transfer .split-text,
.luggage-transfer .split-text,
.skiresort-transfer .split-text,
.sightseeing-transfer .split-text,
.wef-transfer .split-text {
  flex: 1 1 50%;
  background: #fff;
  padding: 3rem 3rem;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .business-vip .split-section,
  .airport-transfer .split-section,
  .hotel-transfer .split-section,
  .luggage-transfer .split-section,
  .skiresort-transfer .split-section,
  .sightseeing-transfer .split-section,
  .wef-transfer .split-section {
    flex-direction: column;
    margin: 2.5rem 1rem;
    border-radius: 16px;
  }

  .business-vip .split-image,
  .airport-transfer .split-image,
  .hotel-transfer .split-image,
  .luggage-transfer .split-image,
  .skiresort-transfer .split-image,
  .sightseeing-transfer .split-image,
  .wef-transfer .split-image {
    flex: none;
    width: 100%;
    min-height: 280px;  /* 🔥 entscheidend: sonst verschwindet das Bild */
    display: block;
    border-radius: 16px 16px 0 0;
  }

  .business-vip .split-text,
  .airport-transfer .split-text,
  .hotel-transfer .split-text,
  .luggage-transfer .split-text,
  .skiresort-transfer .split-text,
  .sightseeing-transfer .split-text,
  .wef-transfer .split-text {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 950px) {
  .business-vip .split-section,
  .airport-transfer .split-section,
  .hotel-transfer .split-section,
  .luggage-transfer .split-section,
  .skiresort-transfer .split-section,
  .sightseeing-transfer .split-section,
  .wef-transfer .split-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 1rem;           /* gleichmäßiger Abstand links/rechts */
    width: calc(100% - 2rem);    /* 🔥 kein Überlauf mehr */
    overflow: visible;
  }

  .business-vip .split-image,
  .airport-transfer .split-image,
  .hotel-transfer .split-image,
  .luggage-transfer .split-image,
  .skiresort-transfer .split-image,
  .sightseeing-transfer .split-image,
  .wef-transfer .split-image {
    width: 100%;
    min-height: 280px;
    border-radius: 14px 14px 0 0;
    background-position: center;
  }

  .business-vip .split-text,
  .airport-transfer .split-text,
  .hotel-transfer .split-text,
  .luggage-transfer .split-text,
  .skiresort-transfer .split-text,
  .sightseeing-transfer .split-text,
  .wef-transfer .split-text {
    padding: 2rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
}


/*alle limousinen page cta umegändert*/


.features {
  margin-bottom: 0;
  padding-bottom: 0;
}

.cta {
  margin-top: 0;
  padding-top: 0;
}


/*weddingpage*/
/* ===========================================================
   HOCHZEITS-CHAUFFEUR-SERVICE – SWISS RENT STYLE (Responsive Ready)
   =========================================================== */

.wedding-vip {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* === HERO SECTION === */
.wedding-vip .hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wedding-vip .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.wedding-vip .hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.wedding-vip .hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: "Roboto", sans-serif;
}

.wedding-vip .hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.wedding-vip .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wedding-vip .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* === INTRO SECTION === */
.wedding-vip .intro {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fff;
}

.wedding-vip .intro h2 {
  font-size: 1.9rem;
  color: #111;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.2rem;
}

.wedding-vip .intro p {
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* === FEATURES === */
.wedding-vip .features {
  background: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  padding: 5rem 1.5rem;
}

.wedding-vip .feature {
  background: #fff;
  flex: 1 1 320px;
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.wedding-vip .feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.wedding-vip .feature i {
  font-size: 2rem;
  color: #d21f26;
  margin-bottom: 1rem;
}

.wedding-vip .feature h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #111;
}

.wedding-vip .feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === SPLIT SECTION (Optimiert für SRAC Wedding Style) === */
.wedding-vip .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: linear-gradient(145deg, #fff, #f9f9f9);
  overflow: hidden;
}

/* === Bildhälfte === */
.wedding-vip .split-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* === Texthälfte === */
.wedding-vip .split-text {
  flex: 1 1 50%;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.wedding-vip .split-text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.2rem;
  position: relative;
}

.wedding-vip .split-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #d21f26;
  margin-top: 0.8rem;
  border-radius: 3px;
}

.wedding-vip .split-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: 700px;
}

.wedding-vip .split-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wedding-vip .split-text li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.6rem 0;
  color: #444;
  font-size: 0.98rem;
}

.wedding-vip .split-text li i {
  color: #d21f26;
  font-size: 1.1rem;
}

/* === CTA SECTION === */
.wedding-vip .cta {
  background: #f9f9f9;
  color: #111;
  text-align: center;
  padding: 4.5rem 1.5rem;
}

.wedding-vip .cta h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.wedding-vip .cta p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.wedding-vip .cta-btn {
  display: inline-block;
  background: #d21f26;
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wedding-vip .cta-btn:hover {
  background: #b0161c;
  transform: translateY(-3px);
}

/* ===========================================================
   🧩 RESPONSIVE DESIGN – SWISS RENT SCALE SYSTEM (WEDDING-VIP)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .wedding-vip .hero { height: 60vh; }
  .wedding-vip .hero-content h1 { font-size: 2.4rem; }
  .wedding-vip .hero-content p { font-size: 1.05rem; }

  .wedding-vip .intro { padding: 4.5rem 2rem; }
  .wedding-vip .intro h2 { font-size: 1.8rem; }

  .wedding-vip .features { gap: 2rem; padding: 4.5rem 2rem; }
  .wedding-vip .feature { padding: 2.2rem 1.8rem; }

  .wedding-vip .split-text { padding: 3.5rem 2.5rem; }
  .wedding-vip .split-text h2 { font-size: 1.8rem; }
  .wedding-vip .split-text li { font-size: 0.95rem; gap: 0.55rem; }
  .wedding-vip .split-text li i { font-size: 1rem; }

  .wedding-vip .cta { padding: 4rem 2rem; }
  .wedding-vip .cta h2 { font-size: 1.7rem; }
  .wedding-vip .cta p { font-size: 0.98rem; }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .wedding-vip .hero { height: 55vh; }
  .wedding-vip .hero-content h1 { font-size: 2.2rem; }
  .wedding-vip .hero-content p { font-size: 1rem; }

  .wedding-vip .intro { padding: 4rem 2rem; }
  .wedding-vip .intro h2 { font-size: 1.7rem; }

  .wedding-vip .feature i { font-size: 1.8rem; }
  .wedding-vip .feature h3 { font-size: 1.2rem; }
  .wedding-vip .feature p { font-size: 0.9rem; }

  .wedding-vip .split-text { padding: 3rem 2rem; }
  .wedding-vip .split-text h2 { font-size: 1.6rem; }
  .wedding-vip .split-text p { font-size: 0.95rem; }
  .wedding-vip .split-text li { font-size: 0.92rem; gap: 0.5rem; }
  .wedding-vip .split-text li i { font-size: 0.95rem; }

  .wedding-vip .cta h2 { font-size: 1.6rem; }
  .wedding-vip .cta p { font-size: 0.95rem; }
  .wedding-vip .cta-btn { padding: 0.8rem 2.1rem; font-size: 0.95rem; }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .wedding-vip .hero { height: 55vh; padding: 0 1rem; }
  .wedding-vip .hero-content h1 { font-size: 2rem; }
  .wedding-vip .hero-content p { font-size: 0.95rem; }

  .wedding-vip .intro h2 { font-size: 1.6rem; }
  .wedding-vip .intro p { font-size: 0.95rem; }

  .wedding-vip .features { padding: 3.5rem 1.5rem; gap: 1.8rem; }
  .wedding-vip .feature { flex: 1 1 300px; padding: 2rem 1.6rem; }

  .wedding-vip .split-section { flex-direction: column; }
  .wedding-vip .split-image,
  .wedding-vip .split-text { flex: 1 1 100%; width: 100%; }
  .wedding-vip .split-image { min-height: 320px; }
  .wedding-vip .split-text { padding: 3rem 1.8rem; text-align: center; }
  .wedding-vip .split-text h2::after { margin: 0.8rem auto 0; }
  .wedding-vip .split-text li { font-size: 0.9rem; gap: 0.45rem; justify-content: center; }
  .wedding-vip .split-text li i { font-size: 0.9rem; }

  .wedding-vip .cta { padding: 3.5rem 1.5rem; }
  .wedding-vip .cta h2 { font-size: 1.5rem; }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .wedding-vip .hero { height: 50vh; }
  .wedding-vip .hero-content h1 { font-size: 1.8rem; }
  .wedding-vip .hero-content p { font-size: 0.9rem; }

  .wedding-vip .intro { padding: 3.5rem 1.2rem; }
  .wedding-vip .intro h2 { font-size: 1.5rem; }

  .wedding-vip .feature { padding: 1.8rem 1.4rem; border-radius: 16px; }
  .wedding-vip .feature i { font-size: 1.6rem; }
  .wedding-vip .feature h3 { font-size: 1.1rem; }
  .wedding-vip .feature p { font-size: 0.88rem; }

  .wedding-vip .split-text { padding: 2.5rem 1.4rem; }
  .wedding-vip .split-text h2 { font-size: 1.4rem; }
  .wedding-vip .split-text p { font-size: 0.9rem; }
  .wedding-vip .split-text li { font-size: 0.86rem; gap: 0.4rem; }
  .wedding-vip .split-text li i { font-size: 0.88rem; }

  .wedding-vip .cta { padding: 3rem 1.2rem; }
  .wedding-vip .cta-btn { padding: 0.75rem 1.8rem; font-size: 0.9rem; }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .wedding-vip .hero { height: 45vh; }
  .wedding-vip .hero-content h1 { font-size: 1.6rem; }
  .wedding-vip .hero-content p { font-size: 0.85rem; }

  .wedding-vip .intro h2 { font-size: 1.35rem; }
  .wedding-vip .intro p { font-size: 0.85rem; line-height: 1.6; }

  .wedding-vip .features { gap: 1.5rem; padding: 3rem 1rem; }
  .wedding-vip .feature { padding: 1.6rem 1.2rem; }
  .wedding-vip .feature i { font-size: 1.5rem; }
  .wedding-vip .feature h3 { font-size: 1rem; }
  .wedding-vip .feature p { font-size: 0.82rem; }

  .wedding-vip .split-text { padding: 2.2rem 1.2rem; }
  .wedding-vip .split-text h2 { font-size: 1.3rem; }
  .wedding-vip .split-text p { font-size: 0.85rem; }
  .wedding-vip .split-text li { font-size: 0.82rem; gap: 0.35rem; }
  .wedding-vip .split-text li i { font-size: 0.85rem; }

  .wedding-vip .cta h2 { font-size: 1.3rem; }
  .wedding-vip .cta p { font-size: 0.85rem; }
  .wedding-vip .cta-btn { padding: 0.7rem 1.6rem; font-size: 0.85rem; }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .wedding-vip .hero { height: 42vh; }
  .wedding-vip .hero-content h1 { font-size: 1.45rem; }
  .wedding-vip .hero-content p { font-size: 0.8rem; }

  .wedding-vip .intro h2 { font-size: 1.2rem; }
  .wedding-vip .intro p { font-size: 0.8rem; }

  .wedding-vip .feature { padding: 1.4rem 1rem; border-radius: 14px; }
  .wedding-vip .feature i { font-size: 1.4rem; }
  .wedding-vip .feature h3 { font-size: 0.95rem; }
  .wedding-vip .feature p { font-size: 0.8rem; }

  .wedding-vip .split-text h2 { font-size: 1.15rem; }
  .wedding-vip .split-text li { font-size: 0.78rem; gap: 0.3rem; }
  .wedding-vip .split-text li i { font-size: 0.8rem; }

  .wedding-vip .cta h2 { font-size: 1.2rem; }
  .wedding-vip .cta-btn { padding: 0.65rem 1.4rem; font-size: 0.8rem; }
}



/*airportparking*/

/* ===========================================================
   ✈️ AIRPORT PARKING PAGE – SWISS RENT A CAR RESPONSIVE EDITION
   =========================================================== */

.airport-parking {
  background: linear-gradient(145deg, #f8f9fb, #eceff3);
  padding: 6rem 2rem;
  text-align: center;
  color: #1a1a1a;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* === HEADER === */
.parking-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding-top: 2.5rem;
}

.parking-header h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
}

.underline {
  width: 70px;
  height: 3px;
  background: #b61b00;
  margin: 0.8rem auto 1.5rem;
  border-radius: 4px;
}

.parking-header p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === FEATURE BOXES === */
.parking-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.parking-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
}

.parking-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.parking-box i {
  font-size: 2rem;
  color: #b61b00;
  margin-bottom: 1rem;
}

.parking-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.parking-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* === INFO TEXT === */
.parking-info {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.parking-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.parking-info p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === CTA BUTTON === */
.parking-btn-wrap {
  margin-top: 2rem;
}

.parking-btn {
  display: inline-block;
  background: #b61b00;
  color: #fff !important;
  font-weight: 600;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(182, 27, 0, 0.3);
}

.parking-btn:hover {
  background: #9e1600;
  box-shadow: 0 6px 18px rgba(182, 27, 0, 0.4);
  transform: translateY(-3px);
}

/* ===========================================================
   🔁 RESPONSIVE DESIGN – SRAC SCALE SYSTEM (COMPACT GRIDS)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .airport-parking {
    padding: 5rem 2rem;
  }

  .parking-header h1 {
    font-size: 2.4rem;
  }

  .parking-features {
    gap: 1.8rem;
  }

  .parking-box {
    padding: 1.8rem;
    border-radius: 18px;
  }

  .parking-box i {
    font-size: 1.9rem;
  }

  .parking-box h4 {
    font-size: 1.15rem;
  }

  .parking-info h2 {
    font-size: 1.85rem;
  }

  .parking-btn {
    padding: 0.95rem 2.2rem;
    font-size: 1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .airport-parking {
    padding: 4.5rem 1.8rem;
  }

  .parking-header {
    margin-bottom: 3.5rem;
  }

  .parking-header h1 {
    font-size: 2.2rem;
  }

  .parking-header p {
    font-size: 1rem;
  }

  .parking-features {
    gap: 1.5rem;
  }

  .parking-box {
    padding: 1.5rem;
    transform: scale(0.96);
  }

  .parking-box i {
    font-size: 1.7rem;
  }

  .parking-box h4 {
    font-size: 1.05rem;
  }

  .parking-box p {
    font-size: 0.95rem;
  }

  .parking-info h2 {
    font-size: 1.75rem;
  }

  .parking-info p {
    font-size: 1rem;
  }

  .parking-btn {
    padding: 0.9rem 2rem;
    font-size: 0.96rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .airport-parking {
    padding: 4rem 1.6rem;
  }

  .parking-header h1 {
    font-size: 2rem;
  }

  .underline {
    width: 60px;
    height: 2.5px;
  }

  .parking-features {
    gap: 1.3rem;
  }

  .parking-box {
    padding: 1.3rem;
    border-radius: 16px;
    transform: scale(0.94);
  }

  .parking-box i {
    font-size: 1.6rem;
  }

  .parking-box h4 {
    font-size: 1rem;
  }

  .parking-box p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .parking-info h2 {
    font-size: 1.65rem;
  }

  .parking-info p {
    font-size: 0.98rem;
  }

  .parking-btn {
    padding: 0.85rem 1.9rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .airport-parking {
    padding: 3.5rem 1.3rem;
  }

  .parking-header h1 {
    font-size: 1.85rem;
  }

  .parking-header p {
    font-size: 0.94rem;
  }

  .parking-features {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .parking-box {
    padding: 1.2rem;
    border-radius: 15px;
    transform: scale(0.9);
  }

  .parking-box i {
    font-size: 1.45rem;
  }

  .parking-box h4 {
    font-size: 0.92rem;
  }

  .parking-box p {
    font-size: 0.85rem;
  }

  .parking-info h2 {
    font-size: 1.5rem;
  }

  .parking-info p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .parking-btn {
    padding: 0.8rem 1.7rem;
    font-size: 0.88rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .airport-parking {
    padding: 3rem 1.1rem;
  }

  .parking-header h1 {
    font-size: 1.7rem;
  }

  .underline {
    width: 50px;
  }

  .parking-header p {
    font-size: 0.9rem;
  }

  .parking-features {
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .parking-box {
    padding: 1rem;
    border-radius: 14px;
    transform: scale(0.88);
  }

  .parking-box i {
    font-size: 1.35rem;
  }

  .parking-box h4 {
    font-size: 0.9rem;
  }

  .parking-box p {
    font-size: 0.82rem;
  }

  .parking-info h2 {
    font-size: 1.35rem;
  }

  .parking-info p {
    font-size: 0.9rem;
  }

  .parking-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .airport-parking {
    padding: 2.6rem 1rem;
  }

  .parking-header h1 {
    font-size: 1.55rem;
  }

  .parking-header p {
    font-size: 0.85rem;
  }

  .parking-features {
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .parking-box {
    padding: 0.9rem;
    border-radius: 12px;
    transform: scale(0.85);
  }

  .parking-box i {
    font-size: 1.2rem;
  }

  .parking-box h4 {
    font-size: 0.85rem;
  }

  .parking-box p {
    font-size: 0.78rem;
  }

  .parking-info h2 {
    font-size: 1.25rem;
  }

  .parking-info p {
    font-size: 0.85rem;
  }

  .parking-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.82rem;
  }
}


/* ===============================================
🚗 SWISS RENT A CAR – AIRPORT PARKING SPLIT SECTION
==================================================*/

.split-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 520px;
  background: #ffffff;
  overflow: hidden;
}

.split-image {
  flex: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
  transition: background-size 0.4s ease, background-position 0.4s ease;
}

.split-text {
  flex: 1;
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
}

.split-text h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.split-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.8rem;
}

.split-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.split-text ul li {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: #444;
}

.split-text ul li i {
  color: #d21f26;
  margin-right: 10px;
}

/* === Red Button === */
.btn-red {
  display: inline-block;
  background: #b61b00;
  color: #fff !important;
  font-weight: 600;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(182, 27, 0, 0.3);
  width: fit-content;
}

.btn-red:hover {
  background: #9e1600;
  box-shadow: 0 6px 18px rgba(182, 27, 0, 0.4);
  transform: translateY(-3px);
}

/* ===========================================================
   🔁 RESPONSIVE DESIGN – SRAC SCALE SYSTEM (FIXED IMAGE SCALING)
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .split-text {
    padding: 5rem 7%;
  }

  .split-text h2 {
    font-size: 2.4rem;
  }

  .split-text p {
    font-size: 1.05rem;
  }

  .split-text ul li {
    font-size: 0.98rem;
  }

  .split-image {
    background-position: center 45%;
  }

  .btn-red {
    padding: 0.95rem 2.2rem;
    font-size: 1rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .split-section {
    min-height: 460px;
  }

  .split-image {
    min-height: 380px;
    background-position: center 45%;
  }

  .split-text {
    padding: 4.5rem 6%;
  }

  .split-text h2 {
    font-size: 2.1rem;
  }

  .split-text p {
    font-size: 1rem;
  }

  .split-text ul li {
    font-size: 0.95rem;
  }

  .btn-red {
    padding: 0.9rem 2rem;
    font-size: 0.96rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    min-height: auto;
  }

  .split-image {
    width: 100%;
    height: 360px;
    background-position: center top;
    background-size: cover;
  }

  .split-text {
    padding: 3.8rem 8%;
    text-align: center;
    align-items: center;
  }

  .split-text h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
  }

  .split-text p {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .split-text ul {
    margin-bottom: 1.8rem;
  }

  .split-text ul li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .btn-red {
    padding: 0.85rem 1.9rem;
    font-size: 0.9rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .split-section {
    flex-direction: column;
  }

  .split-image {
    height: 300px;
    background-size: contain;
    background-position: center;
    background-color: #f4f4f4;
  }

  .split-text {
    padding: 3.2rem 7%;
    text-align: center;
    align-items: center;
  }

  .split-text h2 {
    font-size: 1.7rem;
  }

  .split-text p {
    font-size: 0.94rem;
    margin-bottom: 1.3rem;
  }

  .split-text ul li {
    font-size: 0.88rem;
  }

  .btn-red {
    padding: 0.8rem 1.8rem;
    font-size: 0.88rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .split-section {
    flex-direction: column;
  }

  .split-image {
    height: 260px;
    background-size: contain;
    background-position: center;
    background-color: #f4f4f4;
  }

  .split-text {
    padding: 2.8rem 6%;
    text-align: center;
  }

  .split-text h2 {
    font-size: 1.55rem;
  }

  .split-text p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .split-text ul li {
    font-size: 0.85rem;
  }

  .btn-red {
    padding: 0.75rem 1.6rem;
    font-size: 0.85rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .split-image {
    height: 220px;
    background-size: contain;
    background-position: center;
  }

  .split-text {
    padding: 2.5rem 5%;
  }

  .split-text h2 {
    font-size: 1.4rem;
  }

  .split-text p {
    font-size: 0.85rem;
  }

  .split-text ul li {
    font-size: 0.8rem;
  }

  .btn-red {
    padding: 0.7rem 1.4rem;
    font-size: 0.82rem;
  }
}
/* === FIX: Bild füllt volle Höhe und kein weißer Rand unten === */
.split-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.split-image {
  flex: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: auto;
  min-height: 100%;
  align-self: stretch;
  margin: 0;
  padding: 0;
}

/* Verhindert minimale Subpixel-Abstände */
.split-section,
.split-image,
.split-text {
  line-height: 0;
  vertical-align: top;
}

/* Bildfläche auch bei Retina / großen Bildschirmen exakt bündig */
.split-section::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}




/*kontakt.html*/


/* =======================================
   📩 Kontakt Sektion – Clean & Responsive
   ======================================= */

.contact-section {
  background: #f9f9f9;
  padding: 9.5rem 2rem;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: flex-start;
}

/* === Linke Spalte === */
.contact-left h2 {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.contact-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.8rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem; /* 🔧 Weniger Abstand zwischen den einzelnen p */
  margin-bottom: 1.3rem;
}


.contact-details p {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-details i {
  color: #c40000;
  font-size: 1.1rem;
}

.contact-details a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #c40000;
}

.faq-note {
  font-size: 0.95rem;
  color: #666;
}

.faq-note a {
  color: #c40000;
  text-decoration: none;
}

.faq-note a:hover {
  text-decoration: underline;
}

/* 🔧 Engerer Abstand nur zwischen Kontakt-Details (Telefon, E-Mail, Adresse) */
.contact-details p {
  margin: 0.5rem ;              /* entfernt Standardabstand */
  line-height: 1.3;       /* engerer Zeilenabstand, aber noch gut lesbar */
}

.contact-details {
  gap: 0.2rem;            /* minimaler vertikaler Abstand zwischen den <p> */
}


/* === Rechte Spalte (Formular) === */
.contact-right {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 3rem 2.5rem;
  color: #111;
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group-inline {
  display: flex;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c40000;
  box-shadow: 0 0 0 3px rgba(196, 0, 0, 0.15);
  outline: none;
}

.btn-submit {
  width: 100%;
  background: #c40000;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #a80000;
  transform: translateY(-2px);
}

/* ===========================================================
   🔁 RESPONSIVE DESIGN – SRAC SCALE SYSTEM
   =========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .contact-section {
    padding: 8rem 2rem;
  }

  .contact-wrapper {
    gap: 3.2rem;
  }

  .contact-left h2 {
    font-size: 2.3rem;
  }

  .contact-left p {
    font-size: 1rem;
  }

  .contact-right {
    padding: 2.6rem 2rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .contact-section {
    padding: 7rem 1.8rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 700px;
  }

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

  .contact-details {
    align-items: center;
  }

  .contact-right {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.4rem 2rem;
  }

  .contact-form h3 {
    text-align: center;
  }

  .btn-submit {
    font-size: 0.98rem;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .contact-section {
    padding: 6rem 1.6rem;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-left p {
    font-size: 0.98rem;
  }

  .contact-right {
    padding: 2.2rem 1.8rem;
  }

  .form-group-inline {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .contact-section {
    padding: 5rem 1.3rem;
  }

  .contact-left h2 {
    font-size: 1.8rem;
  }

  .contact-left p {
    font-size: 0.94rem;
  }

  .contact-right {
    padding: 2rem 1.5rem;
    border-radius: 14px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.85rem 0.9rem;
  }

  .btn-submit {
    font-size: 0.9rem;
    padding: 0.85rem;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .contact-section {
    padding: 4rem 1.1rem;
  }

  .contact-left h2 {
    font-size: 1.6rem;
  }

  .contact-left p {
    font-size: 0.9rem;
  }

  .contact-details p {
    font-size: 0.88rem;
  }

  .contact-right {
    padding: 1.8rem 1.4rem;
  }

  .btn-submit {
    font-size: 0.88rem;
    padding: 0.8rem;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .contact-section {
    padding: 3.5rem 1rem;
  }

  .contact-left h2 {
    font-size: 1.45rem;
  }

  .contact-left p,
  .contact-details p {
    font-size: 0.84rem;
  }

  .contact-right {
    padding: 1.6rem 1.2rem;
  }

  .btn-submit {
    font-size: 0.84rem;
    padding: 0.75rem;
  }
}

/*contactlimo.html*/
/* ===== SRAC CONTACT FORM STYLING ===== */
.srac-contact {
  background: #f7f7f7; /* geändert: hellgrauer Hintergrund */
  padding: 120px 8% 80px; /* oben mehr Abstand für fixed Navbar */
  text-align: center;
}

.srac-contact-header h2 {
  color: #111;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-left: 18px;
}

.srac-contact-underline {
  width: 50px;
  height: 3px;
  background: #d21f26;
  margin: 10px auto 25px;
  border-radius: 2px;
}

.srac-form {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.srac-form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.srac-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.srac-form-group.full {
  width: 100%;
}

.srac-form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.srac-form-group input,
.srac-form-group select,
.srac-form-group textarea {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.srac-form-group input:focus,
.srac-form-group select:focus,
.srac-form-group textarea:focus {
  border-color: #d21f26;
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 31, 38, 0.15);
}

.btn-form {
  background: #d21f26;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-form:hover {
  background: #b51a21;
}

/* ===========================================================
🔁 RESPONSIVE DESIGN – SRAC SCALE SYSTEM
=========================================================== */

/* 🧩 bis 1100px – Laptop */
@media (max-width: 1100px) {
  .srac-contact {
    padding: 100px 6% 70px;
  }

  .srac-contact-header h2 {
    font-size: 1.9rem;
  }

  .srac-form {
    max-width: 800px;
  }

  .srac-form-group input,
  .srac-form-group select,
  .srac-form-group textarea {
    font-size: 0.94rem;
    padding: 10px 12px;
  }

  .btn-form {
    padding: 11px 23px;
    font-size: 0.95rem;
  }
}

/* 🧩 bis 900px – Tablet quer */
@media (max-width: 900px) {
  .srac-contact {
    padding: 90px 5% 65px;
  }

  .srac-contact-header h2 {
    font-size: 1.8rem;
  }

  .srac-form-row {
    gap: 16px;
  }

  .srac-form-group {
    flex: 1 1 48%;
  }

  .srac-form {
    max-width: 700px;
  }

  .btn-form {
    font-size: 0.93rem;
    padding: 10px 22px;
  }
}

/* 🧩 bis 768px – Tablet hoch */
@media (max-width: 768px) {
  .srac-contact {
    padding: 80px 5% 60px;
  }

  .srac-contact-header h2 {
    font-size: 1.7rem;
  }

  .srac-form {
    max-width: 600px;
  }

  .srac-form-row {
    flex-direction: column;
    gap: 14px;
  }

  .srac-form-group {
    width: 100%;
  }

  .srac-form-group input,
  .srac-form-group select,
  .srac-form-group textarea {
    font-size: 0.92rem;
    padding: 9px 11px;
  }

  .btn-form {
    font-size: 0.9rem;
    width: 100%;
  }
}

/* 🧩 bis 600px – kleine Handys */
@media (max-width: 600px) {
  .srac-contact {
    padding: 70px 4% 55px;
  }

  .srac-contact-header h2 {
    font-size: 1.6rem;
  }

  .srac-form {
    max-width: 500px;
  }

  .srac-form-group input,
  .srac-form-group select,
  .srac-form-group textarea {
    font-size: 0.9rem;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .btn-form {
    padding: 10px 20px;
    font-size: 0.88rem;
    width: 100%;
    border-radius: 10px;
  }
}

/* 🧩 bis 420px – iPhone 12 / moderne Smartphones */
@media (max-width: 420px) {
  .srac-contact {
    padding: 60px 4% 50px;
  }

  .srac-contact-header h2 {
    font-size: 1.45rem;
  }

  .srac-form {
    max-width: 400px;
  }

  .srac-form-group input,
  .srac-form-group select,
  .srac-form-group textarea {
    font-size: 0.88rem;
    padding: 8px 9px;
  }

  .btn-form {
    font-size: 0.86rem;
    padding: 9px 18px;
  }
}

/* 🧩 bis 350px – sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-contact {
    padding: 55px 4% 45px;
  }

  .srac-contact-header h2 {
    font-size: 1.3rem;
  }

  .srac-form {
    max-width: 340px;
  }

  .srac-form-group input,
  .srac-form-group select,
  .srac-form-group textarea {
    font-size: 0.85rem;
    padding: 7px 8px;
  }

  .btn-form {
    font-size: 0.84rem;
    padding: 8px 16px;
  }
}

/* ===========================================================
🧩 FIXED NAVBAR OFFSET – Für kleinere Bildschirme
=========================================================== */

/* Tablets quer & kleiner */
@media (max-width: 900px) {
  .srac-contact,
  .contact-section {
    padding-top: 100px; /* +40px mehr Abstand als vorher */
  }
}

/* Tablets hoch & kleine Handys */
@media (max-width: 768px) {
  .srac-contact,
  .contact-section{
    padding-top: 110px; /* zusätzlicher Puffer wegen sticky Navbar */
  }
}

/* Kleine Smartphones */
@media (max-width: 600px) {
  .srac-contact,
  .contact-section {
    padding-top: 120px;
  }
}

/* iPhones & Mini-Devices */
@media (max-width: 420px) {
  .srac-contact,
  .contact-section {
    padding-top: 125px;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 350px) {
  .srac-contact,
  .contact-section {
    padding-top: 130px;
  }
}


/* ==========================================================
   🧱 SWISS RENT A CAR – RESPONSIVE SAFETY & SCROLL FIX (Fixed + Landscape Center)
   ========================================================== */

/* 🚫 Kein horizontales Scrollen möglich */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ✅ Einheitliche Box-Berechnung */
* {
  box-sizing: border-box;
}

/* ✅ Standard: Bilder & Videos passen sich an */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ✅ Hauptbereiche gegen Überlauf schützen */
.hero,
.info,
.benefits,
.services,
.contact-banner,
.location,
.partners,
.reviews,
.footer {
  overflow-x: hidden;
}

/* ✅ Partner-Slider & Animationen bleiben im Rahmen */
.slide-track,
.benefit-grid,
.services-wrapper {
  overflow-x: hidden;
}

/* ✅ Breitenanpassung */
.container,
section {
  width: 100%;
  max-width: 100%;
}

/* ✅ Entfernt fehlerhafte 100vw-Darstellung */
[class*="hero"],
[class*="banner"],
[class*="section"] {
  width: 100%;
}



body {
  margin: 0;
  padding: 0;
}



/*bilder anpassen grösse*/


/*vehicle.html*/
.minivan-card .image-wrap {
  transform: scale(0.8); /* z. B. 88 % – kannst feintunen (0.85–0.9 ist ideal) */
  transform-origin: center;
}
.auto-card .image-wrap {
  transform: scale(0.8); /* z. B. 88 % – kannst feintunen (0.85–0.9 ist ideal) */
  transform-origin: center;
}
.minibus-card .image-wrap {
  transform: scale(1.1); /* z. B. 88 % – kannst feintunen (0.85–0.9 ist ideal) */
  transform-origin: center;
}
.auto-card .image-wrap {
  transform: scale(0.88) translateY(4px);  /*damit es nd verutscht und mittig isch*/
}

/*auto.html*/

.e-card .fleet-img{
  transform: scale(1.2); /* z. B. 88 % – kannst feintunen (0.85–0.9 ist ideal) */
  transform-origin: center;
}
.b-card .fleet-img{
  transform: scale(1.2); /* z. B. 88 % – kannst feintunen (0.85–0.9 ist ideal) */
  transform-origin: center;
}

/*lieferwagen.html*/

.jumpy-card .fleet-img{
  transform: scale(1.2); 
  transform-origin: center;
}
.opel-card .fleet-img{
  transform: scale(1.35); 
  transform-origin: center;
}
.jumper-card .fleet-img{
  transform: scale(1.2); 
  transform-origin: center;
}

/*minivan.html*/
.vklass-card .fleet-img{
  transform: scale(1.1); 
  transform-origin: center;
}
.vito-card .fleet-img{
  transform: scale(1.2); 
  transform-origin: center;
}

/*minibus.html*/

.sprinter-card .fleet-img{
  transform: scale(1.1); 
  transform-origin: center;
}
.master-card .fleet-img{
  transform: scale(1.29); 
  transform-origin: center;
}


/*bilder skaliere*/

.FM {
  background-position: center 60%; /* 🔹 30% = etwas nach oben, passe nach Bedarf an */
}

.hero-section .vehicleherobg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* === Dunkles Overlay === */
.vehicleherobg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* 🔹 55 % Dunkelheit */
  z-index: 2;
}






