:root {
  --primary-color: #1a4d7a;
  --primary-hover: #153d61;
  --secondary-color: #009EE2;
  --secondary-hover: #0088cc;
  --accent-color: #5ba3c9;
  --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%);
}

* {
  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(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.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(--gradient-primary);
  box-shadow: var(--shadow);
}

.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);
}

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

.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;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  33.33%, 100% {
    opacity: 0;
  }
}

@keyframes heroSlideshowBg2 {
  0%, 30% {
    background-image: url('./assets/blob_image_2.webp');
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  63% {
    opacity: 1;
  }
  66% {
    opacity: 0;
    background-image: url('./assets/blob_image_2.webp');
  }
  66.33% {
    background-image: url('./assets/blob_image_3.webp');
    opacity: 0;
  }
  69% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    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-title {
  font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.75rem);
  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.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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(0, 158, 226, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  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);
}

.badge:hover {
  background: rgba(0, 158, 226, 0.25);
  transform: translateY(-2px);
}

.badge i {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--secondary-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.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: rgba(0, 158, 226, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(0, 158, 226, 0.12);
}

.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));
}

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

.destinations,
.services,
.fleet,
.gallery,
.testimonials,
.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: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  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);
  box-shadow: var(--shadow-lg);
}

.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 rgba(0, 158, 226, 0.3);
}

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

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

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

.fleet-card {
  display: flex;
  gap: 2rem;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-wrap: wrap;
}

.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  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-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  aspect-ratio: 4/3;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 77, 122, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 3rem;
}

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

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

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

.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: 90%;
  max-height: 90%;
  position: relative;
}

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

.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: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  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;
}

.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%, rgba(0, 158, 226, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(26, 77, 122, 0.25) 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: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1 1 400px;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

.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: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

.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 1rem;
}

.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);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(0, 158, 226, 0.2);
  transform: translateX(5px);
}

.social-icon {
  width: clamp(24px, 4vw, 32px);
  height: clamp(24px, 4vw, 32px);
}

.social-link span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
}

.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-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.dev-credit {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.dev-credit a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
}

.dev-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

@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);
  }

  .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 {
    position: relative;
    z-index: 1001;
  }


  .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-item {
    flex: 1 1 100%;
  }

  .contact-wrapper {
    flex-direction: column-reverse;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }

  .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) {
  .fleet-specs {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ======================================== */
/* 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(--primary-color);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
  transform: scale(1.05);
}

.category-tab.active i {
  color: var(--primary-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(--primary-color);
}

.filter-btn.active i {
  color: var(--primary-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(--primary-color);
}

.filter-btn-province.active i {
  color: var(--primary-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 rgba(201, 169, 97, 0.1);
}

.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, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 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(--primary-color);
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

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

.search-scope-toggle.search-all:hover {
  background: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.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: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

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

.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: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

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

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

.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(--primary-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(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* 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: rgba(201, 169, 97, 0.05);
}

.pagination-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-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(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  flex-wrap: wrap;
}

.destinations-note a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: rgba(10, 9, 8, 0.3);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.destinations-note a:hover {
  text-decoration-color: var(--primary-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 */
/* ======================================== */

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