/* ===== CSS VARIABLES ===== */
:root {
  --black: #0B0B0B;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --white: #FAFAFA;
  --white-muted: #b0b0b0;
  --gold: #C8A355;
  --gold-light: #e0c67a;
  --gold-dark: #a07e2e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; -webkit-tap-highlight-color: transparent; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.page-section {
  display: none;
  animation: fadeUp 0.6s ease forwards;
}
.page-section.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,163,85,0.12);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200,163,85,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-ring 2s infinite;
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(200,163,85,0.55);
}
.float-call svg { width: 26px; height: 26px; fill: var(--black); }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(200,163,85,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(200,163,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,163,85,0); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.55) 50%, rgba(11,11,11,0.8) 100%),
    url('../images/wallpaper.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease alternate infinite;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--black) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,163,85,0.12);
  border: 1px solid rgba(200,163,85,0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero p {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.8s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,163,85,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== SERVICES GRID ===== */
.services { padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,163,85,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,163,85,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.service-card p {
  color: var(--white-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: gap 0.3s;
}
.service-card:hover .card-link { gap: 12px; }

/* ===== AVIS / REVIEWS ===== */
.reviews { padding: 100px 0; background: var(--black-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.review-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 36px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(200,163,85,0.15);
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review-card blockquote {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.review-author-info .name {
  font-weight: 500;
  font-size: 0.9rem;
}
.review-author-info .date {
  font-size: 0.78rem;
  color: var(--white-muted);
}

/* ===== MAP / DESTINATIONS ===== */
.destinations { padding: 100px 0; }
.destinations-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 50px;
}
.dest-list { display: flex; flex-direction: column; gap: 16px; }
.dest-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 20px 24px;
  transition: var(--transition);
  cursor: pointer;
}
.dest-item:hover {
  border-color: rgba(200,163,85,0.3);
  transform: translateX(6px);
}
.dest-item .dest-icon {
  width: 44px; height: 44px;
  background: rgba(200,163,85,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dest-item .dest-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.dest-item h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.dest-item span { font-size: 0.8rem; color: var(--white-muted); }
.dest-map {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
}
.dest-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.75) contrast(1.2);
  transition: filter 0.4s;
}
.dest-map:hover iframe {
  filter: grayscale(0.4) brightness(0.85) contrast(1.1);
}

/* ===== STATS BAR ===== */
.stats {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-muted);
}

/* ===== PAGE: TAXI CONVENTIONNÉ ===== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,163,85,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-content {
  padding: 60px 0 100px;
}
.page-content p {
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 750px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.feature-check {
  width: 32px; height: 32px;
  background: rgba(200,163,85,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-check svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.feature-item h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.feature-item p { font-size: 0.88rem; color: var(--white-muted); margin: 0; }

/* ===== PAGE: TARIFS ===== */
.tarifs-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tarifs-table {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
}
.tarifs-table thead {
  background: rgba(200,163,85,0.1);
}
.tarifs-table th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  text-align: left;
  padding: 18px 24px;
  border-bottom: 2px solid rgba(200,163,85,0.2);
}
.tarifs-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--white-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tarifs-table tbody tr { transition: background 0.3s; }
.tarifs-table tbody tr:hover { background: rgba(200,163,85,0.04); }
.tarifs-note {
  margin-top: 30px;
  padding: 24px;
  background: rgba(200,163,85,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--white-muted);
}

/* ===== PAGE: CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(200,163,85,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }
.contact-info-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--white-muted); margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white-muted);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--white-muted); max-width: 300px; }
.footer h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 0.88rem;
  color: var(--white-muted);
  transition: color 0.3s;
}
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--white-muted);
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ===== DESTINATION GALLERY ===== */
.dest-gallery {
  margin-top: 60px;
}
.dest-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.dest-tab {
  padding: 8px 20px;
  border: 1px solid rgba(200,163,85,0.3);
  border-radius: 30px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.dest-tab:hover { color: var(--gold); border-color: var(--gold); }
.dest-tab.active {
  background: rgba(200,163,85,0.12);
  color: var(--gold);
  border-color: var(--gold);
}
.dest-photos {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  animation: fadeUp 0.4s ease;
}
.dest-photos.active { display: grid; }
.dest-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200,163,85,0.1);
  transition: transform 0.4s ease, border-color 0.3s;
  cursor: pointer;
}
.dest-photos img:hover {
  transform: scale(1.03);
  border-color: rgba(200,163,85,0.4);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(200,163,85,0.2);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white-muted);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }

/* ===== RESPONSIVE: TABLET (max 960px) ===== */
@media (max-width: 960px) {
  /* NAV */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(200,163,85,0.15);
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open a {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: background 0.2s;
  }
  .nav-links.open a:hover, .nav-links.open a.active {
    background: rgba(200,163,85,0.08);
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
  }
  .hamburger { display: flex; }

  /* HERO */
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .hero-content { padding-top: 90px; }
  .hero-buttons { gap: 12px; }

  /* STATS */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 2.4rem; }

  /* SERVICES */
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .service-card { padding: 30px 24px; }

  /* REVIEWS */
  .reviews { padding: 80px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 18px; }

  /* DESTINATIONS */
  .destinations { padding: 80px 0; }
  .destinations-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .dest-map { height: 350px; }
  .dest-photos { grid-template-columns: repeat(2, 1fr); }

  /* PAGE CONTENT */
  .page-hero { padding: 130px 0 60px; }
  .page-content { padding: 40px 0 80px; }
  .features-list { grid-template-columns: 1fr; gap: 16px; }

  /* TARIFS TABLE */
  .tarifs-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
  }
  .tarifs-table { min-width: 500px; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* SECTION TITLES */
  .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
}

/* ===== RESPONSIVE: MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* HERO */
  .hero { min-height: 80vh; align-items: flex-end; padding-bottom: 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 30px; }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-outline {
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
  }
  .hero-badge { font-size: 0.7rem; letter-spacing: 1.5px; padding: 6px 14px; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .service-icon { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .service-icon svg { width: 24px; height: 24px; }
  .card-body { display: flex; flex-direction: column; flex: 1; }
  .service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
  .service-card p { font-size: 0.85rem; }

  /* STATS */
  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; letter-spacing: 1.5px; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 28px 24px; }
  .review-card::before { font-size: 3.5rem; top: 8px; left: 16px; }

  /* DESTINATIONS */
  .dest-item { padding: 16px 18px; gap: 14px; }
  .dest-item .dest-icon { width: 38px; height: 38px; }
  .dest-item h4 { font-size: 1.05rem; }
  .dest-map { height: 300px; border-radius: 8px; }

  /* PAGES */
  .page-hero { padding: 120px 0 50px; }
  .feature-item { padding: 20px; }
  .feature-item h4 { font-size: 1.05rem; }
  .feature-item p { font-size: 0.85rem; }

  /* CONTACT */
  .contact-icon { width: 44px; height: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn-primary { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.75rem;
  }

  /* FLOATING CALL */
  .float-call { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .float-call svg { width: 22px; height: 22px; }
}

/* ===== RESPONSIVE: SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* NAVBAR */
  .navbar .container { height: 64px; }
  .logo { font-size: 1.35rem; }
  .logo-img { height: 36px; }
  .nav-links.open {
    top: 64px;
    padding: 20px 16px;
  }

  /* HERO */
  .hero { min-height: 75vh; padding-bottom: 40px; }
  .hero-content { padding-top: 70px; }
  .hero h1 { font-size: 1.85rem; line-height: 1.15; }
  .hero p { font-size: 0.9rem; line-height: 1.6; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 20px; }
  .btn-primary, .btn-outline {
    font-size: 0.82rem;
    padding: 14px 20px;
    letter-spacing: 1px;
  }

  /* STATS */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 1.8rem; }

  /* SERVICES */
  .services { padding: 60px 0; }
  .services-grid { gap: 12px; }
  .service-card { padding: 20px 16px; gap: 14px; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.82rem; line-height: 1.6; }
  .service-card .card-link { font-size: 0.75rem; }

  /* SECTIONS */
  .section-label { font-size: 0.68rem; letter-spacing: 3px; }
  .section-title { font-size: 1.65rem; margin-bottom: 14px; }
  .gold-line { width: 40px; margin-bottom: 24px; }

  /* REVIEWS */
  .reviews { padding: 60px 0; }
  .review-card { padding: 24px 18px; }
  .review-card blockquote { font-size: 0.88rem; }
  .review-avatar { width: 38px; height: 38px; font-size: 0.95rem; }
  .review-author-info .name { font-size: 0.85rem; }
  .review-author-info .date { font-size: 0.72rem; }

  /* DESTINATIONS */
  .destinations { padding: 60px 0; }
  .dest-item { padding: 14px 16px; }
  .dest-item h4 { font-size: 0.95rem; }
  .dest-item span { font-size: 0.75rem; }
  .dest-map { height: 250px; }
  .dest-photos { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* PAGES */
  .page-hero { padding: 100px 0 40px; }
  .page-hero .section-title { font-size: 1.5rem; }
  .page-content { padding: 30px 0 60px; }
  .page-content p { font-size: 0.9rem; }
  .features-list { gap: 12px; margin-top: 28px; }
  .feature-item { padding: 18px 14px; gap: 14px; }
  .feature-check { width: 28px; height: 28px; }
  .feature-check svg { width: 14px; height: 14px; }
  .feature-item h4 { font-size: 0.95rem; }
  .feature-item p { font-size: 0.82rem; }

  /* TARIFS */
  .tarifs-table th { padding: 14px 16px; font-size: 0.88rem; }
  .tarifs-table td { padding: 14px 16px; font-size: 0.85rem; }
  .tarifs-note { padding: 18px 16px; font-size: 0.82rem; }

  /* CONTACT */
  .contact-info-item { gap: 14px; margin-bottom: 24px; }
  .contact-icon { width: 42px; height: 42px; border-radius: 10px; }
  .contact-info-item h4 { font-size: 1rem; }
  .contact-info-item p { font-size: 0.85rem; }
  .form-group label { font-size: 0.72rem; }
  .form-group input, .form-group textarea, .form-group select {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  /* FOOTER */
  .footer { padding: 40px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer h5 { font-size: 1rem; margin-bottom: 14px; }
  .footer ul li { margin-bottom: 8px; }
  .footer ul li a { font-size: 0.82rem; }
  .footer-brand p { font-size: 0.82rem; }
}
