:root {
  --primary-color: #1a4d7a;
  --primary-hover: #153d61;
  --secondary-color: #009EE2;
  --secondary-hover: #0089c7;
  --accent-color: #5ba3c9;
  --button-text-color: #ffffff;
  --text-color: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;

  /* Gradients sophistiqués avec couleur du logo */
  --gradient-hero: linear-gradient(135deg, rgba(13, 58, 84, 0.95) 0%, rgba(26, 77, 122, 0.9) 50%, rgba(0, 158, 226, 0.85) 100%);
  --gradient-primary: linear-gradient(135deg, #1a4d7a 0%, #009EE2 100%);
  --gradient-accent: linear-gradient(135deg, #009EE2 0%, #5ba3c9 100%);
  --gradient-cta: linear-gradient(135deg, #1a4d7a 0%, #009EE2 50%, #5ba3c9 100%);
  --gradient-card: linear-gradient(180deg, rgba(0, 158, 226, 0.03) 0%, rgba(26, 77, 122, 0.05) 100%);
  --gradient-footer: linear-gradient(180deg, #0d3a54 0%, #1a4d7a 50%, #153d61 100%);

  /* Couleurs semi-transparentes pour backgrounds */
  --bg-secondary-light: rgba(0, 158, 226, 0.15);
  --bg-secondary-subtle: rgba(0, 158, 226, 0.04);
  --border-secondary-light: rgba(0, 158, 226, 0.12);
  --shadow-secondary: rgba(0, 158, 226, 0.3);
  --bg-primary-overlay: rgba(26, 77, 122, 0.8);
  --header-scrolled-bg: rgba(26, 77, 122, 0.85);
  --btn-primary-bg: rgba(26, 77, 122, 0.8);
  --btn-primary-hover-bg: rgba(0, 158, 226, 0.9);
  --bg-secondary-overlay: rgba(0, 158, 226, 0.2);
  --bg-primary-overlay-light: rgba(26, 77, 122, 0.25);
  --bg-secondary-extra-subtle: rgba(0, 158, 226, 0.05);
  --shadow-secondary-light: rgba(0, 158, 226, 0.1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

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

img[data-force-visible] {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

section {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--btn-primary-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--button-text-color);
  box-shadow: 0 8px 32px var(--shadow-secondary);
}

.btn-primary:hover {
  background: var(--btn-primary-hover-bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-secondary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp .whatsapp-icon {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Phone Button */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-color);
  border: none;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.btn-phone:hover {
  background: #f0f0f0;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-phone i {
  font-size: 1rem;
}

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

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--header-scrolled-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: clamp(36px, 8vw, 70px);
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  position: relative;
  font-size: 1rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-link:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-light);
  padding: 0.25rem;
  border-radius: 50px;
}

.lang-btn {
  padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  border: none;
  background: transparent;
  color: var(--text-color);
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  min-width: clamp(36px, 8vw, 44px);
  min-height: clamp(36px, 8vw, 44px);
}

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

.lang-btn:hover:not(.active) {
  background: var(--border-color);
}

.lang-switcher-mobile {
  display: none !important;
}

.lang-switcher-desktop {
  display: flex !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle .material-icons {
  font-size: 28px;
}

.site-name {
  display: none;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero {
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(clamp(36px, 8vw, 70px) + 2rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::before {
  animation: heroSlideshowBg1 18s infinite;
}

.hero::after {
  animation: heroSlideshowBg2 18s infinite;
}

@keyframes heroSlideshowBg1 {
  0% {
    background-image: url('./assets/blob_image_1.webp');
    opacity: 1;
  }
  27% {
    background-image: url('./assets/blob_image_1.webp');
    opacity: 1;
  }
  33.33% {
    background-image: url('./assets/blob_image_1.webp');
    opacity: 0;
  }
  94% {
    background-image: url('./assets/blob_image_1.webp');
    opacity: 0;
  }
  100% {
    background-image: url('./assets/blob_image_1.webp');
    opacity: 1;
  }
}

@keyframes heroSlideshowBg2 {
  0% {
    background-image: url('./assets/blob_image_2.webp');
    opacity: 0;
  }
  27% {
    background-image: url('./assets/blob_image_2.webp');
    opacity: 0;
  }
  33.33% {
    background-image: url('./assets/blob_image_2.webp');
    opacity: 1;
  }
  60.33% {
    background-image: url('./assets/blob_image_2.webp');
    opacity: 1;
  }
  66.66% {
    background-image: url('./assets/blob_image_2.webp');
    opacity: 0;
  }
  66.67% {
    background-image: url('./assets/blob_image_3.webp');
    opacity: 0;
  }
  72.67% {
    background-image: url('./assets/blob_image_3.webp');
    opacity: 1;
  }
  94% {
    background-image: url('./assets/blob_image_3.webp');
    opacity: 1;
  }
  100% {
    background-image: url('./assets/blob_image_3.webp');
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.hero-brand {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  height: clamp(80px, 15vw, 180px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.75rem;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.4rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero-badges {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.75rem);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1rem, 2.5vw, 2rem);
  border-radius: 50px;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge:hover {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.badge i {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  animation: bounce 2s infinite;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.trust-section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.trust-content h2 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--primary-color);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.trust-content p {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--text-light);
  margin-bottom: clamp(1.5rem, 4vw, 4rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.trust-badges {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 1100px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.trust-badges > img {
  height: clamp(50px, 8vw, 70px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  grid-column: 1;
}

.trust-badges > img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.payment-methods,
.app-methods {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--bg-secondary-subtle);
  border-radius: 12px;
  border: 1px solid var(--border-secondary-light);
}

.payment-methods {
  grid-column: 2;
}

.app-methods {
  grid-column: 3;
}

.payment-logo {
  height: clamp(22px, 3.5vw, 32px);
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.12));
}

.payment-logo:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.payment-logo-mollie {
  height: clamp(32px, 5vw, 45px);
}

@media (max-width: 768px) {
  .trust-badges {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .trust-badges > img,
  .payment-methods,
  .app-methods {
    grid-column: 1;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.destinations,
.services,
.fleet,
.gallery,
.testimonials,
.pro-section,
.contact {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

.service-card {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.1);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
  border: 1px solid rgba(0, 158, 226, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px var(--shadow-secondary);
}

.service-icon i {
  font-size: 3rem;
  color: var(--white);
  margin: 0;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* SPW Badge in Service Card */
.service-card-spw {
  display: flex;
  flex-direction: column;
}

.spw-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.spw-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.spw-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(0, 158, 226, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.fleet {
  background: var(--bg-light);
}

.fleet-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.fleet-card {
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.1);
  transition: var(--transition);
  flex-wrap: wrap;
}

.fleet-card:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
  border: 1px solid rgba(0, 158, 226, 0.3);
  transform: translateY(-5px);
}

.fleet-image-wrapper {
  flex: 1 1 400px;
  min-height: 300px;
  overflow: hidden;
}

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

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

.fleet-info {
  flex: 1 1 400px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-info h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.fleet-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.fleet-specs i {
  color: var(--secondary-color);
  font-size: 1.125rem;
  filter: drop-shadow(0 1px 2px rgba(58, 127, 168, 0.15));
}

.fleet-info p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-filters .filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: var(--white);
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters .filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gallery-filters .filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

.gallery-filters .filter-btn i {
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(26, 77, 122, 0.15);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  background: #1a1a2e;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 77, 122, 0.9) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 77, 122, 0.25);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.9) saturate(0.95);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.1);
}

/* Dezoom variant for images that need more space */
.gallery-item--dezoom img {
  object-fit: contain;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-item--dezoom:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.gallery-item-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--white);
  padding: 1.5rem 1rem 1rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-item-name {
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  max-width: 80%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-close i,
.lightbox-nav i {
  font-size: 1.5rem;
}

.testimonials {
  background: var(--bg-light);
}

.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testimonial-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.1);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-item.visible {
  opacity: 1;
  visibility: visible;
  display: block;
  position: relative;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin: 0 0.125rem;
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 1.125rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Google Reviews Styles */
.google-rating-info {
  text-align: center;
  margin-bottom: 2.5rem;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.google-rating-badge .rating-stars {
  display: flex;
  gap: 0.25rem;
}

.google-rating-badge .rating-stars i {
  color: #fbbc04;
  font-size: 1.25rem;
}

.google-rating-badge .rating-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.view-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #4285f4;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-reviews:hover {
  background: #357ae8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.view-all-reviews .google-icon {
  height: 16px;
  width: auto;
}

.testimonial-content {
  text-align: left;
}

.google-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-letter {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

.review-meta {
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.review-author strong {
  font-size: 1rem;
  color: var(--text-color);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f8f9fa;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #5f6368;
}

.google-icon-small {
  height: 12px;
  width: auto;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-rating .stars {
  display: flex;
  gap: 0.125rem;
}

.review-rating .stars i {
  color: #fbbc04;
  font-size: 0.875rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-item .testimonial-text {
  font-style: normal;
  text-align: left;
  margin-bottom: 0;
  padding-left: 60px;
}

/* PRO Section */
.pro-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.pro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0, 158, 226, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(91, 163, 201, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.pro-logo {
  flex-shrink: 0;
}

.pro-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.pro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pro-text h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.pro-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #009EE2 0%, #5ba3c9 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 158, 226, 0.4);
}

.btn-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 158, 226, 0.5);
  background: linear-gradient(135deg, #00b4ff 0%, #6bb8d9 100%);
}

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

@media (max-width: 768px) {
  .pro-logo img {
    height: 80px;
  }

  .pro-text h2 {
    font-size: 1.8rem;
  }

  .pro-text p {
    font-size: 1rem;
  }

  .btn-pro {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

.cta-section {
  background: var(--gradient-cta);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, var(--bg-secondary-overlay) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, var(--bg-primary-overlay-light) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: clamp(250px, 33.33%, 400px) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.contact-left {
  min-width: 0;
  order: 1;
}

.contact-right {
  min-width: 0;
  order: 2;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.1);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(58, 127, 168, 0.2));
}

.contact-item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.spw-auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spw-auth-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.contact-link {
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-link:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background: var(--gradient-footer);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li i {
  color: var(--secondary-color);
  width: 20px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary-color);
}

.footer-spw {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-spw-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.footer-spw-number {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 158, 226, 0.3);
}

.social-icon {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-link span {
  display: none;
}

.footer-link:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.footer-payment {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-payment img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-payment img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem 0 1rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dev-credit {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.dev-credit a {
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  border-bottom: 1px solid var(--secondary-color);
}

.dev-credit a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

@media (max-width: 820px) {
  html {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-size: 1.1rem;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
  }

  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
    overflow-x: hidden;
  }

  section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .header {
    background: var(--gradient-primary);
    box-shadow: var(--shadow);
  }

  .header-content {
    padding: 0.75rem 1rem;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  .logo {
    height: clamp(32px, 10vw, 50px);
  }

  .site-name {
    display: block;
  }

  .hero {
    padding-top: calc(clamp(32px, 10vw, 50px) + 1rem);
  }

  .hero-logo {
    height: clamp(120px, 20vw, 200px);
  }

  .nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    gap: 0;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .lang-switcher-desktop {
    display: none !important;
  }

  .lang-switcher-mobile {
    display: flex !important;
    width: 100%;
    padding: 1.5rem 2rem;
    justify-content: center;
    gap: 1rem;
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    background: transparent;
    border-radius: 0;
    position: static;
  }

  .lang-switcher-mobile .lang-btn {
    flex: 0 0 auto;
    min-width: 60px;
    background: var(--bg-light);
    color: var(--text-color);
  }

  .lang-switcher-mobile .lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
  }

  .scroll-indicator {
    display: none;
  }

  .trust-badges {
    flex-direction: column;
  }

  .destination-card,
  .service-card {
    flex: 1 1 100%;
  }

  .fleet-card {
    flex-direction: column;
  }

  .fleet-image-wrapper {
    min-height: 250px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-left {
    order: 2;
  }

  .contact-right {
    order: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 1.5rem;
  }

  .form-row .form-group:last-child {
    margin-bottom: 0;
  }

  #message {
    rows: 12;
  }

  .contact-form textarea {
    min-height: 240px;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-next {
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-close i,
  .lightbox-nav i {
    font-size: 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  /* Menu Mobile avec Thème */
  .nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding-top: 5rem;
  }

  .nav-link {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  /* Langues dans le menu mobile */
  .lang-switcher-mobile {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .lang-switcher-mobile .lang-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .lang-switcher-mobile .lang-btn.active {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
  }

  .lang-switcher-mobile .lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
  }

  /* Hero adjustments for 480px */
  .hero-brand {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-buttons .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons .btn span {
    display: none;
  }

  .hero-buttons .btn-phone i {
    font-size: 1.5rem;
  }

  .hero-buttons .btn-whatsapp .whatsapp-icon {
    height: 28px;
  }

  /* Autres ajustements */
  .fleet-specs {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Fleet images fit on small screens */
  .fleet-image-wrapper {
    min-height: 200px;
    max-height: 220px;
  }

  .fleet-image {
    object-fit: contain;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .fleet-info {
    padding: 1.5rem;
  }

  .fleet-info h3 {
    font-size: 1.4rem;
  }
}

/* ======================================== */
/* DESTINATIONS SECTION */
/* ======================================== */

.destinations {
  padding: 5rem 0;
  background: var(--bg-light);
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Destinations Category Tabs - Responsive */
.destinations-category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.category-tab {
  padding: 1rem 2rem;
  background: var(--white);
  border: 3px solid var(--bg-light);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.category-tab i {
  font-size: 1.3rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.category-tab:hover {
  border-color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-tab.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--button-text-color);
  box-shadow: 0 8px 20px var(--shadow-secondary);
  transform: scale(1.05);
}

.category-tab.active i {
  color: var(--button-text-color);
}

/* Destinations Country Filters */
.destinations-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.filter-btn:hover {
  border-color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.03);
}

.filter-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--button-text-color);
}

.filter-btn.active i {
  color: var(--button-text-color);
}

/* Province Filters - Same styling as country filters */
.filter-btn-province {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn-province i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.filter-btn-province:hover {
  border-color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.03);
}

.filter-btn-province.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--button-text-color);
}

.filter-btn-province.active i {
  color: var(--button-text-color);
}

/* Search Destinations Bar */
.search-destinations-wrapper {
  margin: 2rem auto;
  max-width: 700px;
}

.search-header {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.search-destinations-input {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 3rem;
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: inherit;
  color: var(--text-color);
}

.search-destinations-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px var(--shadow-secondary-light);
}

.search-destinations-input::placeholder {
  color: #999;
}

.search-clear-btn {
  position: absolute;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 1;
}

.search-clear-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #666;
}

.search-clear-btn i {
  font-size: 0.9rem;
}

.search-results-info {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--shadow-secondary-light) 0%, var(--bg-secondary-extra-subtle) 100%);
  border-left: 3px solid var(--secondary-color);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-results-info i {
  color: var(--secondary-color);
}

/* Search Scope Toggle Button */
.search-scope-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  white-space: nowrap;
  font-family: inherit;
}

.search-scope-toggle:hover {
  border-color: var(--secondary-color);
  background: rgba(0, 0, 0, 0.03);
}

.search-scope-toggle i {
  color: var(--secondary-color);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.search-scope-toggle.search-all {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--button-text-color);
  box-shadow: 0 2px 8px var(--shadow-secondary);
}

.search-scope-toggle.search-all i {
  color: var(--button-text-color);
  transform: rotate(180deg);
}

.search-scope-toggle.search-all:hover {
  background: var(--secondary-color);
  box-shadow: 0 4px 12px var(--shadow-secondary);
}

.toggle-text {
  font-size: 0.85rem;
}

/* Destinations Cards Grid */
.destinations-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.destination-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
  border: 1px solid rgba(0, 158, 226, 0.3);
}

.destination-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.destination-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  transition: transform 0.3s ease;
}

.destination-card-image-wrapper:hover .destination-card-image {
  transform: scale(1.05);
}

.destination-card-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.destination-card-zoom-icon i {
  color: var(--white);
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.destination-card-image-wrapper:hover .destination-card-zoom-icon {
  opacity: 1;
}

.destination-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.destination-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.destination-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.destination-card-code {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.destination-card-info {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.destination-card-from {
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.destination-card-from i {
  font-size: 0.8rem;
}

.destination-card-details {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.destination-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.destination-detail-full {
  width: 100%;
  justify-content: flex-start;
}

.destination-detail i {
  color: var(--secondary-color);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.destination-detail-value {
  color: var(--text-color);
  font-weight: 600;
}

.traffic-note {
  font-weight: 400;
  font-size: 0.85em;
  color: var(--text-muted, #888);
  font-style: italic;
}

.destination-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-light);
  margin-top: auto;
}

.destination-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.destination-price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.destination-card-cta {
  margin-top: 1rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--secondary-color);
  color: var(--button-text-color);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.destination-card-cta:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-secondary);
}

/* Destinations Pagination */
.destinations-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--secondary-color);
  background: var(--bg-secondary-extra-subtle);
}

.pagination-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--button-text-color);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-dots {
  color: var(--text-light);
  padding: 0 0.5rem;
}

/* Destinations Note */
.destinations-note {
  margin-top: 3rem;
  text-align: center;
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 15px;
}

.destinations-note p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--button-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  flex-wrap: wrap;
}

.destinations-note a {
  color: var(--button-text-color);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.destinations-note a:hover {
  text-decoration-color: var(--button-text-color);
}

/* Responsive Services Grid */
@media (max-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Category Tabs */
@media (max-width: 768px) {
  .destinations-category-tabs {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .category-tab {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .category-tab i {
    font-size: 1.2rem;
  }

  .category-tab span {
    display: inline;
  }

  .search-header {
    flex-direction: column;
  }

  .search-destinations-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }

  .destinations-filters {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .destinations-category-tabs {
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .category-tab {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem;
    border-width: 2px;
  }

  .category-tab i {
    font-size: 1.1rem;
  }

  .category-tab span {
    display: none;
  }

  .category-tab {
    padding: 0.85rem;
    justify-content: center;
    min-width: 60px;
  }

  .destinations-filters {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .filter-btn i {
    font-size: 0.9rem;
  }

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

  .destination-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 820px) {
  .destinations-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .destination-card {
    max-width: 400px;
    width: 100%;
  }
}

/* ======================================== */
/* END DESTINATIONS SECTION */
/* ======================================== */

/* ======================================== */
/* BACK TO TOP BUTTON */
/* ======================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(26, 77, 122, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(26, 77, 122, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 158, 226, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 158, 226, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-indicator {
    animation: none;
  }

  .back-to-top {
    transition: none;
  }
}

/* ======================================== */
/* DESTINATION LIGHTBOX */
/* ======================================== */

.destination-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 0;
}

.destination-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.destination-lightbox-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  height: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.destination-lightbox.active .destination-lightbox-content {
  transform: scale(1);
}

.destination-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.destination-lightbox-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.destination-lightbox-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.destination-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-lightbox-info {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.destination-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.destination-lightbox-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0;
}

.destination-lightbox-code {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.destination-lightbox-description {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.destination-lightbox-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 158, 226, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.destination-lightbox-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.destination-lightbox-detail i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  width: 30px;
  text-align: center;
}

.destination-lightbox-detail span {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
}

.destination-lightbox-price {
  margin-bottom: 2rem;
}

.destination-lightbox-cta {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 158, 226, 0.3);
}

.destination-lightbox-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 158, 226, 0.4);
}

.destination-lightbox-cta i {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .destination-lightbox {
    padding: 0;
  }

  .destination-lightbox-content {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .destination-lightbox-image-container {
    height: 250px;
  }

  .destination-lightbox-info {
    padding: 1.5rem;
    overflow-y: auto;
  }

  .destination-lightbox-title {
    font-size: 1.5rem;
  }

  .destination-lightbox-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .destination-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

/* Google Reviews Responsive */
@media (max-width: 768px) {
  .google-rating-info {
    margin-bottom: 2rem;
  }

  .google-rating-badge {
    flex-direction: column;
    gap: 0.5rem;
  }

  .view-all-reviews {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .google-review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
  }

  .avatar-letter {
    font-size: 1rem;
  }

  .testimonial-item .testimonial-text {
    padding-left: 0;
    font-size: 0.95rem;
  }

  .review-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .testimonial-item {
    padding: 1.5rem;
  }

  .google-badge {
    font-size: 0.7rem;
  }

  .review-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}