:root {
  /* Palette Premium Luxe */
  --primary-color: #0a0908;
  --primary-light: #1c1917;
  --secondary-color: #c9a961;
  --secondary-hover: #b8944d;
  --gold-light: #e8d5a8;
  --gold-dark: #9d7e3a;

  /* Texte */
  --text-color: #2d2a27;
  --text-light: #6b6661;
  --text-muted: #9a9490;

  /* Backgrounds */
  --bg-light: #faf9f7;
  --bg-cream: #f5f2ed;
  --white: #ffffff;

  /* Shadows raffinées */
  --shadow: rgba(10, 9, 8, 0.08);
  --shadow-medium: rgba(10, 9, 8, 0.12);
  --shadow-strong: rgba(10, 9, 8, 0.25);
  --shadow-gold: rgba(201, 169, 97, 0.15);

  --transition: all 0.3s ease;
  --header-height: clamp(70px, 12vw, 100px);
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html {
  overflow-x: hidden;
  max-width: 100vw;
}

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;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

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

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

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.btn-primary:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--shadow-medium);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--primary-color);
  box-shadow: 0 2px 10px var(--shadow-strong);
}

.header.scrolled .nav-link {
  color: var(--white);
}

.header .nav-link {
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Header par défaut pour les autres pages (non hero) */
body:not(.hero-page) .header {
  background: var(--primary-color);
  box-shadow: 0 2px 10px var(--shadow-strong);
}

body:not(.hero-page) .header .nav-link {
  color: var(--white);
}

body:not(.hero-page) .header .menu-toggle {
  color: var(--white);
  text-shadow: none;
}

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

.logo-container {
  position: relative;
  z-index: 10;
  padding: 0.5rem 1rem;
  background: rgba(10, 9, 8, 0.4);
  border: 1px solid var(--shadow-gold);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.header.scrolled .logo-container {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-color: transparent;
}

/* S'assurer que le logo est visible sur toutes les pages */
body:not(.hero-page) .logo-container {
  background: transparent;
  border-color: transparent;
  padding: 0;
}

.logo-container .logo {
  height: clamp(60px, 10vw, 96px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-container .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px var(--shadow-gold));
}

.header.scrolled .logo-container .logo {
  height: clamp(45px, 7vw, 65px);
}

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

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

.nav-close {
  display: none;
}

.header-center {
  display: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  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(--secondary-color);
  outline-offset: 4px;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
  cursor: pointer;
}

.nav-link-dropdown {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-text {
  flex: 1;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--white);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item i {
  font-size: 1.1rem;
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.dropdown-item:hover i {
  transform: scale(1.1);
}

.dropdown-item:first-child {
  border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 12px 12px;
}

.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: 25px;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-color);
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

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

.lang-btn:hover:not(.active) {
  background: var(--shadow-gold);
}

.menu-toggle {
  display: none;
  background: rgba(10, 9, 8, 0.3);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--shadow-gold);
}

.header.scrolled .menu-toggle {
  background: transparent;
  backdrop-filter: none;
}

/* S'assurer que le menu toggle est toujours visible */
body:not(.hero-page) .menu-toggle {
  background: transparent;
  color: var(--white);
}

.menu-toggle .material-icons {
  font-size: 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  background: var(--bg-cream);
  overflow: hidden;
  padding-top: calc(clamp(36px, 8vw, 70px) + 2rem);
  display: flex;
  align-items: center;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d4af37;
  border: 1px solid #b8960c;
  color: #1a1a1a;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  overflow: visible;
  padding-bottom: 0.5rem;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  overflow: visible;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  background: linear-gradient(110deg, #b8960c 0%, #c9a932 30%, #d4af37 45%, #dbb857 50%, #d4af37 55%, #c9a932 70%, #b8960c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  overflow: visible;
  padding: 0.3rem 0 0.6rem 0;
  line-height: 1.2;
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero .btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d2d2d;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-feature i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 650px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  filter: brightness(1.05) contrast(1.05);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  text-align: center;
}

/* Services responsive - 2 columns for tablets */
@media (min-width: 481px) and (max-width: 820px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

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

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

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

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

.destination-category {
  flex: 1 1 calc(50% - 2rem);
  min-width: 280px;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

.destination-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.destination-category h3 i {
  color: var(--secondary-color);
}

.destination-category ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.destination-category li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text-color);
}

.destination-category li a:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
  transform: translateX(5px);
}

.destination-category li a:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.destination-category li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

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

/* 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(201, 169, 97, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b89b6e 100%);
  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);
}

/* 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;
  }
}

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

  /* Option: Masquer le texte et garder seulement l'icône sur très petit écran */
  .category-tab span {
    display: none;
  }

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

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

.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(201, 169, 97, 0.05);
}

.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(201, 169, 97, 0.05);
}

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

.search-scope-toggle.search-all {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b8960c 100%);
  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: linear-gradient(135deg, #b8960c 0%, var(--secondary-color) 100%);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

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

/* Responsive Search Bar */
@media (max-width: 768px) {
  .search-header {
    flex-direction: column;
  }

  .search-scope-toggle {
    justify-content: center;
    width: 100%;
  }

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

/* Responsive Country Filters */
@media (max-width: 768px) {
  .destinations-filters {
    gap: 0.75rem;
  }

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

@media (max-width: 480px) {
  .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 */
.destinations-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

/* Limit card width on large screens */
@media (min-width: 1200px) {
  .destination-card {
    max-width: 400px;
    width: 100%;
  }
}

/* Destinations responsive - 1 column for mobile */
@media (max-width: 480px) {
  .destinations-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

.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::before {
  content: "📍";
  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;
}

/* Fleet Section */
.fleet {
  padding: 5rem 0;
  background: var(--white);
}

.fleet-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.fleet-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.fleet-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.fleet-features {
  flex: 1 1 45%;
  min-width: 300px;
}

.fleet-features h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.feature-item span {
  font-weight: 500;
  color: var(--text-color);
}

.fleet-options {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  padding: 2rem;
  border-radius: 15px;
}

.fleet-options h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.fleet-options ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fleet-options li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.fleet-options li i {
  font-size: 1.3rem;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

/* Gallery responsive - 2 columns for tablets */
@media (min-width: 481px) and (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  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;
  z-index: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.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-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.lightbox-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 10;
}

/* Lightbox responsive improvements for mobile/tablet */
@media (max-width: 820px) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-item {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.testimonial-content {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

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

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

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

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.3);
}

.dot:hover {
  background: var(--secondary-color);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 3px 15px var(--shadow-light);
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 5px 20px var(--shadow);
  transform: translateY(-2px);
}

.contact-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  min-width: 40px;
}

.contact-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.contact-item a:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

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

.form-fields-wrapper .form-group {
  margin-bottom: 0;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .form-fields-wrapper {
    grid-template-columns: 1fr;
  }
}

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

/* Form Group Row for Date/Time */
.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

/* Custom Date/Time Inputs */
.custom-date-input,
.custom-time-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border: 2px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-date-input:hover,
.custom-time-input:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.1);
}

.custom-date-input i,
.custom-time-input i {
  color: var(--secondary-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.custom-date-input input,
.custom-time-input input {
  border: none;
  outline: none;
  padding: 0;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background: transparent;
  cursor: pointer;
  width: 100%;
}

.custom-date-input input::placeholder,
.custom-time-input input::placeholder {
  color: var(--text-muted);
}

/* Date Picker */
.date-picker {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 1000;
  background: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(10, 9, 8, 0.15);
  min-width: 320px;
}

.date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-cream);
}

.date-picker-header button {
  background: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.date-picker-header button:hover {
  background: var(--bg-cream);
}

.date-picker-month {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.date-picker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-color);
}

.date-picker-day:hover:not(.disabled):not(.day-header) {
  background: var(--bg-cream);
}

.date-picker-day.day-header {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: default;
}

.date-picker-day.disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.4;
}

.date-picker-day.selected {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-light));
  color: var(--primary-color);
  font-weight: 700;
}

.date-picker-day.today {
  border: 2px solid var(--secondary-color);
}

/* Time Picker */
.time-picker {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 1000;
  background: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(10, 9, 8, 0.15);
  display: flex;
  gap: 1rem;
}

.time-column {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.time-column-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.5rem;
}

.time-scroll {
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}

.time-scroll::-webkit-scrollbar {
  width: 4px;
}

.time-scroll::-webkit-scrollbar-track {
  background: var(--bg-cream);
  border-radius: 4px;
}

.time-scroll::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

.time-option {
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.time-option:hover:not(.disabled) {
  background: var(--bg-cream);
}

.time-option.selected {
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-light));
  color: var(--primary-color);
  font-weight: 700;
}

.time-option.disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.4;
}

/* Form Notice */
.form-notice {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(232, 213, 168, 0.08));
  border-left: 4px solid var(--secondary-color);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-notice i {
  color: var(--secondary-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col {
  /* Grid item - no flex needed */
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

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

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

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

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

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

.footer-col a:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

.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.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

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

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

/* Résolutions intermédiaires */
@media (max-width: 1024px) {
  .logo-container .logo {
    height: clamp(45px, 7vw, 70px);
  }

  .header-content {
    padding: 0.875rem 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 820px) {
  body {
    font-size: 1.1rem;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }

  .container {
    max-width: 100vw;
    padding: 0 1rem;
  }

  section {
    width: 100%;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #130A05;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 20px var(--shadow);
    transition: right 0.3s ease;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav.active {
    right: 0;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-close:hover {
    background: var(--shadow-gold);
  }

  .nav-close .material-icons {
    font-size: 1.5rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    border-radius: 10px;
    color: var(--white);
    text-shadow: none;
  }

  .nav-link:hover {
    background: var(--shadow-gold);
  }

  /* Nav Dropdown Mobile */
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link-dropdown {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-arrow {
    color: var(--white);
    font-size: 0.8rem;
    margin-left: auto;
  }

  .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .nav-link-dropdown {
    background: var(--shadow-gold);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.5rem 0;
    border-left: 3px solid var(--secondary-color);
    display: none;
    width: calc(100% - 1rem);
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
  }

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

  .dropdown-item i {
    color: var(--secondary-color);
  }

  .menu-toggle {
    display: block;
  }

  .header-center {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .header.scrolled .header-center {
    display: flex;
    opacity: 1;
  }

  body:not(.hero-page) .header-center {
    display: flex;
    opacity: 1;
  }

  .header-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary-color) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .logo-container {
    padding: 0.4rem 0.75rem;
  }

  .logo-container .logo {
    height: clamp(40px, 10vw, 60px);
  }

  .header.scrolled .logo-container .logo {
    height: clamp(38px, 9vw, 55px);
  }

  .header.scrolled .logo-container {
    padding: 0;
  }

  .header-content {
    padding: 0.75rem 1rem;
  }

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

  .lang-switcher-mobile {
    display: flex !important;
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }

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

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

  .lang-switcher-mobile .lang-btn:hover:not(.active) {
    background: var(--shadow-gold);
    border-color: var(--secondary-color);
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    min-height: auto;
  }

  .hero-content-left {
    max-width: 100%;
    overflow: visible;
  }

  .hero-title-line2 {
    padding: 0.25rem 0;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .hero-title-line1 {
    font-size: 1.5rem;
  }

  .hero-title-line2 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-features {
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .hero-feature {
    font-size: 0.9rem;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-container {
    max-width: 100%;
  }

  .hero-image {
    border-radius: 15px;
  }

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

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

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

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

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

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

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .footer-col {
    flex: 1 1 100%;
  }
}

/* Petits mobiles et phablets */
@media (max-width: 640px) {
  .hero {
    height: 100vh;
    height: 100svh;
    padding-bottom: 2rem;
  }

  .hero-wrapper {
    padding: 1rem;
    gap: 2rem;
  }

  .hero-title-line1 {
    font-size: 1.3rem;
  }

  .hero-title-line2 {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 0.85rem 1.35rem;
  }

  .hero-features {
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-feature {
    font-size: 0.8rem;
  }

  .hero-image-container {
    max-width: 95%;
  }

  .hero-image-wrapper {
    padding-top: 0.75rem;
  }

  .hero-title-line2 {
    padding: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Date/Time Picker responsive */
  .form-group-row {
    grid-template-columns: 1fr;
  }

  .date-picker {
    min-width: 280px;
    left: 50%;
    transform: translateX(-50%);
  }

  .time-picker {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hero adjustments for small screens */
  .hero {
    height: 100vh;
    height: 100svh;
    padding-top: calc(clamp(36px, 8vw, 70px) + 0.5rem);
    padding-bottom: 2rem;
  }

  .hero-wrapper {
    gap: 2rem;
    padding: 0.75rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-badge i {
    font-size: 0.8rem;
  }

  .hero-title-line1 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
  }

  .hero-title-line2 {
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .hero-buttons {
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-features {
    gap: 0.75rem;
    padding-top: 1rem;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-feature {
    font-size: 0.75rem;
    flex: 0 0 auto;
  }

  .hero-feature i {
    font-size: 0.85rem;
  }

  .hero-image-wrapper {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
  }

  .hero-image-container {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-image {
    border-radius: 10px;
  }

  .hero-title-line2 {
    padding: 0.3rem 0;
  }

  /* Header adjustments */
  .logo-container {
    padding: 0.3rem 0.6rem;
  }

  .logo-container .logo {
    height: clamp(35px, 12vw, 50px);
  }

  .header.scrolled .logo-container .logo {
    height: clamp(33px, 11vw, 48px);
  }

  .menu-toggle {
    padding: 0.4rem;
  }

  .menu-toggle .material-icons {
    font-size: 1.75rem;
  }

  .header-content {
    padding: 0.6rem 0.75rem;
  }

  .header-brand {
    font-size: 1.15rem;
    letter-spacing: 1.5px;
  }

  .testimonial-content {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

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

/* ============================================
   PRICE CALCULATOR SECTION - PREMIUM DESIGN
   ============================================ */

.price-calculator {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-cream);
  padding: 2rem 0;
}

.price-calculator .container {
  max-width: 1200px;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

/* ===== LEFT PANEL: FORM ===== */
.calculator-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px var(--shadow-medium);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-content: start;
}

.calculator-form > .form-section:first-child {
  grid-column: 1 / -1;
}

.form-section {
  margin-bottom: 0;
}

.form-section h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section h3 i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.input-group {
  margin-bottom: 1rem;
  position: relative;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i.input-icon {
  position: absolute;
  left: 1.0625rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 1rem;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.input-with-icon input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.75rem;
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg-light);
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--shadow-gold);
}

.icon-btn,
.geolocate-btn {
  position: absolute;
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.icon-btn {
  left: 0.375rem;
}

.geolocate-btn {
  right: 0.5rem;
  background: var(--secondary-color);
}

.btn-clear-all {
  width: 100%;
  padding: 0.5rem;
  margin-top: 1rem;
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-clear-all i {
  color: var(--text-muted);
  font-size: 1rem;
}

.btn-clear-all:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-clear-all:hover i {
  color: var(--secondary-color);
}

.swap-button-container {
  position: relative;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -0.5rem 0;
}

.btn-swap-addresses {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-light);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(10, 9, 8, 0.1);
}

.btn-swap-addresses i {
  color: var(--secondary-color);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-swap-addresses:hover {
  background: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.btn-swap-addresses:hover i {
  color: var(--white);
  transform: rotate(180deg);
}

.icon-btn.zoom-to-marker {
  background: rgba(201, 169, 97, 0.1);
}

.icon-btn i,
.geolocate-btn i {
  position: static;
  color: var(--secondary-color);
  font-size: 1rem;
}

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

.icon-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}

.geolocate-btn:hover {
  background: var(--secondary-hover);
}

.icon-btn:active,
.geolocate-btn:active {
  opacity: 0.8;
}

/* Autocomplete Results */
.autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--secondary-color);
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 30px var(--shadow-medium);
  display: none;
}

.autocomplete-results.active {
  display: block;
}

.autocomplete-item {
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--bg-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

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

.autocomplete-item:hover {
  background: var(--shadow-gold);
}

.autocomplete-item .result-name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.autocomplete-item .result-address {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Popular Routes */
.popular-routes {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-light);
}

.popular-routes h4 {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.route-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.no-recent-searches {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
}

.no-recent-searches i {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.5;
}

.no-recent-searches p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
  font-style: italic;
}

.route-chip {
  padding: 0.4rem 0.85rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 20px;
  font-size: 0.75rem;
  transition: var(--transition);
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.route-chip-text {
  cursor: pointer;
  flex: 1;
}

.route-chip-delete {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0.5;
  line-height: 1;
}

.route-chip-delete:hover {
  opacity: 1;
  background: rgba(255, 0, 0, 0.1);
  color: #d32f2f;
}

.route-chip:hover {
  background: var(--shadow-gold);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.route-chip:hover .route-chip-delete {
  opacity: 0.8;
}

.route-chip .chip-price {
  color: var(--secondary-color);
  font-weight: 600;
  margin-left: 0.25rem;
}

/* DateTime Selector */
.datetime-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.datetime-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.datetime-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.datetime-group label i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.datetime-group input[type="date"],
.datetime-group input[type="time"] {
  padding: 0.875rem 1rem;
  border: 2px solid var(--bg-cream);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-color);
  background: var(--white);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.datetime-group input[type="date"]:focus,
.datetime-group input[type="time"]:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.datetime-group input[type="date"]:invalid,
.datetime-group input[type="time"]:invalid {
  border-color: #dc3545;
}

.datetime-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(232, 213, 168, 0.1));
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

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

.datetime-notice.error {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border-left-color: #dc3545;
  color: #dc3545;
}

.datetime-notice.error i {
  color: #dc3545;
}

/* Vehicle Selector */
.vehicle-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.vehicle-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.vehicle-option:hover {
  background: var(--white);
  border-color: var(--secondary-color);
  transform: translateX(5px);
}

.vehicle-option.active {
  background: var(--shadow-gold);
  border-color: var(--secondary-color);
}

.vehicle-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.vehicle-info {
  flex: 1;
}

.vehicle-info h4 {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 0.15rem;
}

.vehicle-info p {
  font-size: 0.75rem;
  color: var(--text-light);
}

.vehicle-check {
  opacity: 0;
  transition: var(--transition);
}

.vehicle-option.active .vehicle-check {
  opacity: 1;
}

.vehicle-check i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

/* Extras Grid */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.extra-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.extra-option:hover {
  background: var(--white);
  border-color: var(--secondary-color);
}

.extra-option.active {
  background: var(--shadow-gold);
  border-color: var(--secondary-color);
}

.extra-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-light);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.extra-option.active .extra-checkbox {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.extra-checkbox i {
  color: var(--primary-color);
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.extra-option.active .extra-checkbox i {
  opacity: 1;
}

.extra-icon {
  font-size: 1rem;
  color: var(--secondary-color);
}

.extra-info {
  flex: 1;
}

.extra-info .extra-name {
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.85rem;
}

.extra-price {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.extra-price.free {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.75rem;
}

/* ===== RIGHT PANEL: MAP & PRICE ===== */
.calculator-map {
  position: relative;
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-medium);
  height: 100%;
  min-height: 500px;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.map-instructions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.map-instructions i {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.map-instructions p {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Price Summary Overlay */
.price-summary {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px var(--shadow-strong);
  z-index: 1000;
  min-width: 320px;
  max-width: 90%;
  user-select: none;
  transition: box-shadow 0.2s ease;
}

.price-summary.dragging {
  box-shadow: 0 20px 60px var(--shadow-strong);
  cursor: move !important;
  transition: none;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-light);
  cursor: move;
}

.price-header h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0;
  cursor: move;
}

.close-summary {
  background: var(--bg-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-summary:hover {
  background: var(--shadow-gold);
}

.close-summary i {
  color: var(--text-color);
  font-size: 1.2rem;
}

/* Show Price Button */
.show-price-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px var(--shadow-gold);
  z-index: 999;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.show-price-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.show-price-btn i {
  font-size: 1.1rem;
}

.price-details {
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.price-row span:first-child {
  color: var(--text-light);
}

.price-row span:last-child {
  font-weight: 600;
  color: var(--primary-color);
}

.price-divider {
  height: 1px;
  background: var(--bg-light);
  margin: 1rem 0;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--shadow-gold) 0%, var(--bg-cream) 100%);
  border-radius: 12px;
  margin-top: 1rem;
}

.price-total span:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.total-amount {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-now-btn,
.share-quote-btn {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.share-quote-btn {
  margin-top: 0.75rem;
  background: var(--bg-light);
  border: 1px solid rgba(201, 169, 97, 0.2);
  color: var(--text-color);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-quote-btn i {
  font-size: 1rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.share-quote-btn:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.15);
}

.share-quote-btn:hover i {
  transform: translateY(-2px);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  border-left: 4px solid var(--secondary-color);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(10, 9, 8, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  opacity: 0;
  transform: translateX(120%);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .toast-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

/* Leaflet Map Customization */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 5px 20px var(--shadow-medium);
}

.leaflet-popup-content {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin: 1rem;
}

.leaflet-container {
  border-radius: 15px;
}

/* Route info label on map - hidden on desktop, visible on tablet/mobile */
.route-info-label {
  pointer-events: none;
  z-index: 1000;
  display: none;
}

.route-info-label > div {
  pointer-events: auto;
}

/* Show route info label on tablet and mobile only */
@media (max-width: 1200px) {
  .route-info-label {
    display: block;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .price-calculator {
    min-height: auto;
    padding: 3rem 0;
  }

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

  .calculator-form {
    grid-template-columns: 1fr 1fr;
    order: 1;
  }

  .calculator-form > .form-section:first-child {
    grid-column: 1 / -1;
  }

  .calculator-map {
    height: 500px;
    order: 2;
  }

  .price-summary {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 1.5rem auto 0;
    max-width: 100%;
    transform: none;
  }

  .show-price-btn {
    display: none !important;
  }

  .close-summary {
    display: none !important;
  }
}

/* Tablet landscape - form full width, then map 50% left + summary 50% right */
@media (max-width: 1200px) and (orientation: landscape) and (min-height: 500px) {
  .calculator-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
  }

  .calculator-form {
    flex: 1 1 100% !important;
    order: 1 !important;
  }

  /* Flatten .calculator-map so its children become flex items of wrapper */
  .calculator-map {
    display: contents !important;
  }

  /* Map container takes 50% left */
  #map {
    flex: 0 0 calc(50% - 1rem) !important;
    height: 500px !important;
    order: 2 !important;
  }

  /* Hide map instructions, show price button, and close button */
  .map-instructions {
    display: none !important;
  }

  .show-price-btn {
    display: none !important;
  }

  .close-summary {
    display: none !important;
  }

  /* Prevent auto-scroll to calculator section after calculation */
  .price-calculator {
    scroll-margin-top: 0 !important;
  }

  /* Price summary takes 50% right - only when visible (JS controls display) */
  #priceSummary:not([style*="display: none"]),
  .price-summary:not([style*="display: none"]) {
    position: relative !important;
    flex: 0 0 calc(50% - 1rem) !important;
    height: 500px !important;
    overflow: hidden !important;
    visibility: visible !important;
    opacity: 1 !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    max-width: 100% !important;
    order: 3 !important;
    scroll-margin-top: 0 !important;
  }

  /* Reduce padding and font sizes in summary for landscape */
  #priceSummary .price-header,
  .price-summary .price-header {
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  #priceSummary .price-header h3,
  .price-summary .price-header h3 {
    font-size: 1.2rem !important;
  }

  #priceSummary .price-row,
  .price-summary .price-row {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  #priceSummary .price-total,
  .price-summary .price-total {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  #priceSummary .btn,
  .price-summary .btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

/* ===== LARGE SCREENS - FULL WIDTH ===== */
@media (min-width: 1400px) {
  .price-calculator .container {
    max-width: 90%;
  }

  .calculator-wrapper {
    gap: 3rem;
  }
}

@media (min-width: 1600px) {
  .price-calculator .container {
    max-width: 1600px;
  }

  .calculator-wrapper {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  .price-calculator {
    padding: 2rem 0;
  }

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

  .calculator-form {
    order: 1;
  }

  .calculator-map {
    position: relative;
    display: block;
    height: auto;
    min-height: auto;
    order: 2;
  }

  .map-container {
    position: relative;
    width: 100%;
    height: 400px;
    z-index: 1;
    border-radius: 20px;
  }

  .map-instructions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .show-price-btn {
    display: none !important;
  }

  .price-summary {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 1.5rem 0 0 0;
    width: 100%;
    max-width: 100%;
    z-index: auto;
    max-height: none;
    overflow-y: visible;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    animation: none;
  }

  .price-header {
    cursor: default;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }

  .price-header h3 {
    cursor: default;
    font-size: 1.15rem;
  }

  .price-details {
    margin-bottom: 1.5rem;
  }

  .price-row {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .book-now-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .close-summary {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .price-calculator {
    padding: 2rem 0;
    min-height: auto;
  }

  .calculator-wrapper {
    gap: 1.5rem;
  }

  .calculator-form {
    padding: 1.5rem;
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .calculator-form > .form-section:first-child {
    grid-column: 1;
  }

  .form-section h3 {
    font-size: 1rem;
  }

  .vehicle-selector {
    gap: 0.75rem;
    grid-template-columns: 1fr;
  }

  .vehicle-option {
    padding: 0.75rem;
  }

  .vehicle-icon {
    width: 38px;
    height: 38px;
  }

  .extras-grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .calculator-map {
    height: auto;
  }

  .map-container {
    height: 350px;
  }

  .price-summary {
    padding: 1.5rem;
    min-width: auto;
  }

  .price-header h3 {
    font-size: 1.3rem;
  }

  .total-amount {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .price-calculator {
    padding: 1.5rem 0;
  }

  .calculator-wrapper {
    gap: 1rem;
  }

  .route-chips {
    flex-direction: column;
    gap: 0.5rem;
  }

  .route-chip {
    text-align: center;
    width: 100%;
  }

  .calculator-form {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .form-section h3 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .input-group {
    margin-bottom: 0.75rem;
  }

  .vehicle-option {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .vehicle-name {
    font-size: 0.85rem;
  }

  .vehicle-capacity {
    font-size: 0.75rem;
  }

  .extra-option {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .btn-swap-addresses {
    width: 2rem;
    height: 2rem;
  }

  .btn-swap-addresses i {
    font-size: 0.875rem;
  }

  .calculator-map {
    height: auto;
  }

  .map-container {
    height: 300px;
  }

  .map-instructions i {
    font-size: 2.5rem;
  }

  .map-instructions p {
    font-size: 0.9rem;
  }

  .price-summary {
    padding: 1.25rem;
    margin: 0.75rem auto 0;
  }

  .price-header h3 {
    font-size: 1.1rem;
  }

  .price-detail {
    font-size: 0.85rem;
  }

  .total-amount {
    font-size: 1.5rem;
  }

  .book-now-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}