/* ═══════════════════════════════════════════════════════════════════════════
   HÔTEL ATLAS DAY — DESIGN PREMIUM 4 ÉTOILES
   Typographie & Palette de Couleurs Officielles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   1. CSS VARIABLES — PALETTE DE COULEURS OFFICIELLE
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Cinzel:wght@400;600;700&family=Cinzel+Decorative:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* Couleurs principales */
  --color-beige: #E8DCC8;
  --color-bronze: #AA8453;
  --color-gold: #D4AF37;
  --color-dark-silver: #6E6E72;
  --color-text-dark: #0D0D0D;
  --color-text-light: #FFFFFF;

  /* Couleurs dérivées */
  --color-bronze-dark: #8B6914;
  --color-gold-light: rgba(212, 175, 55, 0.15);
  --color-gold-glow: rgba(212, 175, 55, 0.5);
  --color-overlay: rgba(13, 13, 13, 0.7);

  /* Typographie */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --font-decorative: 'Cinzel Decorative', serif;

  /* Espacements */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. TYPOGRAPHIE GLOBALE — 4 POLICES GOOGLE FONTS
   ───────────────────────────────────────────────────────────────────────────── */

/* Base - Poppins */
body {
  font-family: var(--font-body) !important;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Titres H1 & H2 — Playfair Display (Prestige) */
h1, .h1,
h2, .h2,
.sec-title,
.hero-title,
.page-heading h1,
.hero-title-premium {
  font-family: var(--font-display) !important;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--color-gold);
}

h1, .h1 {
  font-size: clamp(2rem, 5vw, 1.5rem);
  font-weight: 700;
}

h2, .h2, .sec-title {
  font-size: clamp(0.7rem, 4vw, 1.5rem);
  font-weight: 600;
}

/* Titres H3 & H4 — Cinzel (Élégant) */
h3, .h3,
h4, .h4,
h5, .h5,
.widget-title h5,
.footer-widget-wrapper h5,
.service-card-content h3,
.room-card h3,
.gallery-card h5 {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--color-bronze);
}

h3, .h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4, .h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h5, .h5 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

/* Paragraphes et texte - Poppins */
p, .text,
ul, ol, li,
label, input, textarea, select, button {
  font-family: var(--font-body) !important;
  font-weight: 400;
  line-height: 1.7;
}

p {
  color: var(--color-text-dark);
}

/* Texte decoratif - Cinzel Decorative */
.decorative-text,
.sub-title,
.section-sub-title,
blockquote,
.hero-kicker {
  font-family: var(--font-decorative) !important;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.12em;
  color: var(--color-gold);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1.25;
}


/* ─────────────────────────────────────────────────────────────────────────────
   3. LIENS & INTERACTIONS
   ───────────────────────────────────────────────────────────────────────────── */

/* Liens */
a {
  color: var(--color-bronze);
  transition: color var(--transition-smooth);
  text-decoration: none;
}

a:hover {
  color: var(--color-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. BOUTONS & CTA PREMIUM
   ───────────────────────────────────────────────────────────────────────────── */

/* Bouton principal */
.theme-btn,
.btn-primary,
button[type="submit"] {
  font-family: var(--font-body) !important;
  font-weight: 600;
  background: var(--color-bronze);
  color: var(--color-text-light);
  border: 2px solid var(--color-bronze);
  transition: all var(--transition-smooth);
}

.theme-btn:hover,
.btn-primary:hover,
button[type="submit"]:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text-dark);
  box-shadow: 0 0 20px var(--color-gold-glow);
  transform: translateY(-2px);
}

/* CTA WhatsApp amélioré */
.theme-btn.style-2,
.cta-whatsapp-premium {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-color: #25d366;
  color: var(--color-text-light) !important;
  font-weight: 600;
}

.theme-btn.style-2:hover,
.cta-whatsapp-premium:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. NAVIGATION PREMIUM
   ───────────────────────────────────────────────────────────────────────────── */

/* Menu principal */
.main-menu ul li a,
.header-1 .main-menu ul li a,
.primary-menu > li > a {
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
}

.main-menu ul li a:hover,
.main-menu ul li.active a,
.primary-menu > li > a:hover {
  color: var(--color-gold) !important;
}

/* Dropdown menu */
.main-menu ul li .sub-menu,
.primary-menu > li .submenu {
  background: var(--color-text-dark);
  border-top: 3px solid var(--color-gold);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.main-menu ul li .sub-menu li a:hover,
.primary-menu > li .submenu li a:hover {
  background: var(--color-gold-light);
  color: var(--color-gold) !important;
  padding-left: 28px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. ICÔNES & SÉPARATEURS
   ───────────────────────────────────────────────────────────────────────────── */

.fa-star,
.hotel-stars i {
  color: var(--color-gold) !important;
}

hr, .divider,
.header-divider {
  background: var(--color-dark-silver);
  opacity: 0.4;
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. SECTIONS AVEC FOND BEIGE
   ───────────────────────────────────────────────────────────────────────────── */

.section-bg-beige,
.bg-beige {
  background-color: var(--color-beige);
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. ANIMATIONS PREMIUM
   ───────────────────────────────────────────────────────────────────────────── */

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* Hover zoom effect */
.hover-zoom {
  transition: transform var(--transition-smooth);
}

.hover-zoom:hover {
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. FOCUS & ACCESSIBILITÉ
   ───────────────────────────────────────────────────────────────────────────── */

.theme-btn:focus,
a:focus,
button:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   10. BREADCRUMB PREMIUM
   ───────────────────────────────────────────────────────────────────────────── */

.breadcrumb-wrapper .breadcrumb-items li a:hover,
.breadcrumb-nav .breadcrumb-items li a:hover {
  color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   STYLES EXISTANTS — ENHANCEMENTS & UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* WOW animations: keep soft, accessible */
.wow {
  will-change: opacity, transform;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .wow {
    transition: none;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
  }
}

/* Focus styles – accessibilité */
.theme-btn:focus,
a:focus,
button:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Breadcrumb hover */
.breadcrumb-wrapper .breadcrumb-items li a:hover,
.breadcrumb-nav .breadcrumb-items li a:hover {
  color: var(--theme-color, #007bff);
}

/* ================================
   Weather Widget - Hôtel Atlas Day
   Widget météo professionnel avec mise à jour automatique
   ================================ */
.weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  margin-right: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: help;
}

.weather-widget:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

/* Icône météo */
.weather-icon {
  font-size: 20px;
  color: #D4AF37;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.weather-widget:hover .weather-icon {
  transform: scale(1.1);
}

/* Animation du spinner de chargement */
.weather-widget.loading .weather-icon {
  animation: spin 1s linear infinite;
}

/* État d'erreur */
.weather-widget.error .weather-icon {
  color: #ff6b6b;
  opacity: 0.7;
}

/* Informations météo */
.weather-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  gap: 2px;
}

/* Température */
.weather-temp {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Localisation */
.weather-location {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Description météo (optionnelle) */
.weather-desc {
  font-size: 0.7rem;
  opacity: 0.8;
  color: #fff;
  display: none; /* Masqué par défaut pour garder le widget compact */
}

/* Min/Max températures (optionnelles) */
.weather-minmax {
  font-size: 0.65rem;
  opacity: 0.6;
  color: #fff;
  display: none;
}

/* Animation de rotation pour le spinner */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Container header-right */
.header-right {
  display: flex;
  align-items: center;
}

/* Responsive - Masquer sur tablettes et mobiles */
@media (max-width: 1199px) {
  .weather-widget {
    display: none !important;
  }
}

/* Desktop large - Afficher plus d'informations */
@media (min-width: 1400px) {
  .weather-widget {
    gap: 12px;
    padding: 7px 16px;
  }

  .weather-icon {
    font-size: 22px;
  }

  .weather-temp {
    font-size: 0.95rem;
  }

  .weather-location {
    font-size: 0.75rem;
  }
}

/* ================================
   Snowfall Canvas (index hero)
   ================================ */
.snowfall-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

/* ================================
   WhatsApp button (CTA vert premium)
   ================================ */
.theme-btn.style-2 {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.theme-btn.style-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.theme-btn.style-2 i {
  font-size: 1.1em;
}

/* ================================
   Minimal Mountain Header
   Glass Effect Premium - Hôtel 4 étoiles
   ================================ */
.minimal-mountain-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 24px 0 28px;
  /* Glass Effect Premium */
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.75) 0%,
    rgba(28, 28, 28, 0.65) 50%,
    rgba(28, 28, 28, 0.7) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(170, 132, 83, 0.25);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Bordure dorée subtile en haut */
.minimal-mountain-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(170, 132, 83, 0.6) 20%,
    rgba(170, 132, 83, 0.9) 50%,
    rgba(170, 132, 83, 0.6) 80%,
    transparent 100%
  );
  z-index: 2;
}

/* Silhouette montagnes Moyen Atlas modernisée */
.minimal-mountain-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 35px;
  background: linear-gradient(
    180deg,
    rgba(170, 132, 83, 0.3) 0%,
    rgba(170, 132, 83, 0.15) 100%
  );
  clip-path: polygon(
    0 75%, 8% 60%, 15% 72%, 25% 55%, 35% 68%,
    45% 50%, 55% 65%, 65% 48%, 75% 62%,
    85% 52%, 92% 65%, 100% 55%, 100% 100%, 0 100%
  );
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

/* État sticky au scroll */
.header-1.sticky .minimal-mountain-header {
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.95) 0%,
    rgba(28, 28, 28, 0.92) 100%
  );
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  padding: 16px 0 20px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.3),
    0 2px 15px rgba(170, 132, 83, 0.1);
  border-bottom-color: rgba(170, 132, 83, 0.35);
}

.header-1.sticky .minimal-mountain-header::after {
  opacity: 0.5;
  height: 25px;
}

.minimal-mountain-header .header-right {
  gap: 18px;
}

.minimal-mountain-header .social-icon {
  gap: 12px;
}

/* Icônes sociales - effet gold hover */
.minimal-mountain-header .social-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(170, 132, 83, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.minimal-mountain-header .social-icon a:hover {
  background: linear-gradient(135deg, #AA8453 0%, #c8a16b 100%);
  border-color: #AA8453;
  color: #1C1C1C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(170, 132, 83, 0.4);
}

.call-item {
  position: relative;
  overflow: hidden;
}

.call-item .shape img {
  max-width: 100px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu > li {
  position: relative;
}

/* Navigation - Liens avec effet gold premium */
.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 2px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Ligne dorée sous le lien au hover */
.primary-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #AA8453, #c8a16b);
  transition: width 0.3s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus-visible {
  color: #AA8453;
}

.primary-menu > li > a:hover::after,
.primary-menu > li > a:focus-visible::after {
  width: 100%;
}

/* Sous-menu Glass Effect */
.primary-menu > li .submenu {
  position: absolute;
  top: 120%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 12px 0;
  list-style: none;
  margin: 0;
  /* Glass Effect pour dropdown */
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.95) 0%,
    rgba(28, 28, 28, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 3px solid #AA8453;
  border-radius: 0 0 8px 8px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(170, 132, 83, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 99;
}

.primary-menu > li .submenu li {
  width: 100%;
}

.primary-menu > li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  border-radius: 0 8px 8px 0;
}

/* Liens sous-menu avec effet hover doré */
.primary-menu > li .submenu li a {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.primary-menu > li .submenu li a:hover {
  color: #AA8453;
  background: rgba(170, 132, 83, 0.1);
  border-left-color: #AA8453;
  padding-left: 28px;
}

.primary-menu > li:hover > .submenu,
.primary-menu > li:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive Glass Header */
@media (max-width: 1399px) {
  .minimal-mountain-header {
    gap: 24px;
    padding: 20px 0 24px;
  }

  .primary-menu {
    gap: 20px;
  }

  .header-1.sticky .minimal-mountain-header {
    padding: 14px 0 18px;
  }
}

@media (max-width: 1199px) {
  .minimal-mountain-header {
    grid-template-columns: auto auto;
    row-gap: 16px;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .primary-nav {
    display: none;
  }

  .minimal-mountain-header {
    padding: 16px 0 20px;
  }

  .minimal-mountain-header::after {
    height: 25px;
  }

  .header-1.sticky .minimal-mountain-header {
    padding: 12px 0 16px;
  }
}

/* ================================
   HERO SERVICES
   ================================ */
.service-hero {
  position: relative;
  padding: 140px 0 110px;
  color: #f00000;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 40% -10% -20%;
  background: linear-gradient(
      to top,
      rgba(3, 14, 30, 0.95) 0%,
      rgba(9, 34, 64, 0.95) 35%,
      rgba(17, 55, 92, 0.9) 55%,
      transparent 100%
    ),
    linear-gradient(
      130deg,
      rgba(255, 255, 255, 0.05) 15%,
      rgba(200, 161, 107, 0.25) 30%,
      rgba(255, 255, 255, 0.05) 45%
    );
  clip-path: polygon(
    0 80%,
    20% 65%,
    40% 75%,
    60% 60%,
    80% 70%,
    100% 55%,
    100% 100%,
    0 100%
  );
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8, 26, 45, 0.94) 0%,
    rgba(8, 26, 45, 0.78) 50%,
    rgba(8, 26, 45, 0.65) 100%
  );
  z-index: 0;
}

.service-hero .container,
.service-hero nav,
.service-hero .hero-content {
  position: relative;
  z-index: 1;
}

.simple-hero {
  padding: 140px 0 110px;
}

.simple-hero .breadcrumb-nav {
  margin-bottom: 16px;
}

.simple-hero .hero-content {
  max-width: 640px;
  color: #fff;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title,
.service-hero h1,
.service-hero #hero-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {
  .service-hero.bg-cover {
    background-size: 110%;
    background-position: center;
    animation: heroZoom 22s ease-in-out infinite alternate;
  }

  @keyframes heroZoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.06);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero.bg-cover {
    animation: none !important;
    transform: none !important;
  }
}

/* ================================
   SECTION SERVICES PRINCIPAUX
   ================================ */
.primary-services-section {
  background: radial-gradient(circle at top, #f7fbff 0%, #f0f3f7 40%, #ffffff 100%);
}

.primary-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.service-pill {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 29, 49, 0.08);
  box-shadow: 0 15px 35px rgba(13, 29, 49, 0.06);
  min-height: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-pill .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 161, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--theme-color, #c8a16b);
}

.service-pill h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.service-pill p {
  margin: 0;
  color: #4b5766;
  font-size: 0.9rem;
}

@media (hover: hover) and (pointer: fine) {
  .service-pill:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(13, 29, 49, 0.18);
  }
}

/* ================================
   SECTIONS RESTAURANT & SPA
   ================================ */
.service-split {
  background: #ffffff;
}

.spa-section {
  background: #f6f7fa;
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(13, 29, 49, 0.12);
  transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .split-media img:hover {
    transform: scale(1.03);
  }
}

.split-content h2 {
  margin-bottom: 15px;
}

.split-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: grid;
  gap: 8px;
}

.split-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--theme-color, #c8a16b);
}

/* ================================
   EXCURSIONS
   ================================ */
.excursions-section {
  background: #ffffff;
}

.excursion-card {
  border: 1px solid rgba(13, 29, 49, 0.1);
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fdfdfd;
  box-shadow: 0 15px 35px rgba(13, 29, 49, 0.08);
}

.excursion-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.excursion-card p {
  margin: 0;
  color: #596474;
}

.excursion-card a {
  font-weight: 600;
  color: var(--theme-color, #c8a16b);
  text-decoration: none;
}

.excursion-card a:hover {
  text-decoration: underline;
}

/* ================================
   SERVICES ADDITIONNELS
   ================================ */
.additional-services {
  background: #f6f7f9;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.addon-list {
  list-style: none;
  margin: 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(13, 29, 49, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.addon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #4b5766;
}

.addon-list i {
  color: var(--theme-color, #c8a16b);
}

/* ================================
   CTA CONTACT FINAL
   ================================ */
.contact-cta {
  background: linear-gradient(135deg, #08192c, #0f2b46);
  color: #fff;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-cta .theme-btn img[aria-hidden="true"] {
  mix-blend-mode: screen;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 1199px) {
  .service-hero {
    padding: 120px 0 80px;
  }
}

@media (max-width: 991px) {
  .service-hero {
    text-align: center;
  }

  .simple-hero .hero-content {
    margin-inline: auto;
  }

  .primary-service-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .excursion-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .service-pill {
    min-height: 0;
  }
}

/* ================================
   HEADER PREMIUM - Hôtel Atlas Day
   Style 4 étoiles harmonisé site
   Couleurs: #AA8453 (thème) + #1C1C1C (fond)
   ================================ */

/* Top Bar - Contact rapide */
.header-top-bar {
  background: #1C1C1C;
  padding: 10px 0;
  border-bottom: 1px solid rgba(170, 132, 83, 0.25);
}

.header-top-bar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-contact-list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.top-contact-list li i {
  color: #AA8453;
  font-size: 0.95rem;
}

.top-contact-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-contact-list li a:hover {
  color: #AA8453;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(170, 132, 83, 0.15);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(170, 132, 83, 0.3);
}

.top-social-icons a:hover {
  background: #AA8453;
  color: #1C1C1C;
  transform: translateY(-2px);
  border-color: #AA8453;
}

.top-social-icons a.whatsapp-icon:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

/* Header principal - Style cohérent avec le site */
.header-1.header-premium {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.98) 0%, rgba(28, 28, 28, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(170, 132, 83, 0.15);
}

.header-1.header-premium.sticky {
  background: rgba(28, 28, 28, 0.99);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(170, 132, 83, 0.25);
}

/* CTA Premium WhatsApp - Design rectangulaire moderne */
.cta-whatsapp-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #25d366;
  border-radius: 4px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  border: none;
}

.cta-whatsapp-premium:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}

.cta-whatsapp-premium i {
  font-size: 1.3rem;
}

.cta-whatsapp-premium .cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cta-whatsapp-premium .cta-label {
  font-size: 0.68rem;
  opacity: 0.9;
  font-weight: 400;
}

.cta-whatsapp-premium .cta-number {
  font-weight: 700;
}

/* CTA Réception - Style thème site */
.cta-reception-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #AA8453;
  border-radius: 4px;
  color: #AA8453 !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-reception-premium:hover {
  background: #AA8453;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(170, 132, 83, 0.35);
}

.cta-reception-premium i {
  font-size: 1rem;
}

.cta-reception-premium .cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cta-reception-premium .cta-label {
  font-size: 0.65rem;
  opacity: 0.85;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-reception-premium .cta-number {
  font-weight: 700;
}

/* Header CTA group */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 1399px) {
  .cta-whatsapp-premium .cta-text,
  .cta-reception-premium .cta-text {
    display: none;
  }

  .cta-whatsapp-premium,
  .cta-reception-premium {
    padding: 12px;
    border-radius: 4px;
  }

  .cta-whatsapp-premium i,
  .cta-reception-premium i {
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) {
  .header-top-bar {
    display: none;
  }

  .header-cta-group {
    gap: 8px;
  }

  .cta-whatsapp-premium,
  .cta-reception-premium {
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .cta-reception-premium {
    display: none;
  }
}

/* Amélioration du logo au scroll */
/* Logo blanc visible par défaut - Sélecteur plus spécifique pour override main.css */
.header-1 .header-main .header-left .header-logo {
  display: block !important;
}

.header-1 .header-main .header-left .header-logo-2 {
  display: none !important;
}

/* Logo rouge visible au scroll (sticky) */
.header-1.sticky .header-main .header-left .header-logo {
  display: none !important;
}

.header-1.sticky .header-main .header-left .header-logo-2 {
  display: block !important;
}

/* Logo size - Desktop */
@media (min-width: 1024px) {
  .header-1 .header-main .header-left .logo img {
    height: 45px;
    width: auto;
    max-width: 180px;
  }

  /* Smaller logo when sticky */
  .header-1.sticky .header-main .header-left .logo img {
    height: 40px;
  }
}

/* Logo size - Mobile */
@media (max-width: 1023px) {
  .header-1 .header-main .header-left .logo img {
    height: 32px;
    width: auto;
    max-width: 150px;
  }
}

/* Badge étoiles - couleur thème */
.hotel-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}

.hotel-stars i {
  color: #AA8453;
  font-size: 0.6rem;
}

/* Divider vertical - couleur thème */
.header-divider {
  width: 1px;
  height: 30px;
  background: rgba(170, 132, 83, 0.4);
  margin: 0 12px;
}

/* Navigation links - cohérence thème */
.header-1.header-premium .primary-menu > li > a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-1.header-premium .primary-menu > li > a:hover,
.header-1.header-premium .primary-menu > li:hover > a {
  color: #AA8453;
}

/* Submenu styling */
.header-1.header-premium .submenu {
  background: #1C1C1C;
  border-top: 3px solid #AA8453;
}

.header-1.header-premium .submenu li a {
  color: rgba(255, 255, 255, 0.85);
}

.header-1.header-premium .submenu li a:hover {
  color: #AA8453;
  background: rgba(170, 132, 83, 0.1);
}

/* Weather widget harmonisé */
.header-1.header-premium .weather-widget {
  background: rgba(170, 132, 83, 0.15);
  border: 1px solid rgba(170, 132, 83, 0.3);
  border-radius: 4px;
}

.header-1.header-premium .weather-widget .weather-icon {
  color: #AA8453;
}

/* Hamburger menu thème */
.header-1.header-premium .sidebar__toggle .bar-icon span {
  background: #AA8453;
}

/* ================================
   GALLERY PAGE - Premium Styles
   Hôtel Atlas Day - Galerie
   ================================ */

/* Gallery Introduction */
.gallery-intro-section,
.gallery-intro {
  padding-bottom: 40px;
}

.gallery-intro .sub-title {
  color: #AA8453;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}

.gallery-intro .sub-title i {
  margin-right: 8px;
}

.gallery-intro .section-title {
  font-size: 2.5rem;
  color: #1C1C1C;
  margin-bottom: 20px;
}

.gallery-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px 30px;
  background: rgba(28, 28, 28, 0.03);
  border-radius: 60px;
  border: 1px solid rgba(170, 132, 83, 0.15);
}

/* Gallery Filter Wrapper */
.gallery-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #1C1C1C;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.filter-btn:hover {
  border-color: #AA8453;
  color: #AA8453;
}

.filter-btn:hover i {
  opacity: 1;
}

.filter-btn.active {
  background: linear-gradient(135deg, #AA8453 0%, #c9a66b 100%);
  color: #fff;
  border-color: #AA8453;
  box-shadow: 0 4px 15px rgba(170, 132, 83, 0.35);
}

.filter-btn.active i {
  opacity: 1;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* CTA Gallery Section */
.cta-gallery-section {
  padding: 100px 0;
}

.cta-gallery-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-gallery-section p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-gallery-section .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cta-gallery-section .theme-btn.style-2 {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta-gallery-section .theme-btn.style-2:hover {
  background: #fff;
  color: #1C1C1C;
}

/* Gallery Grid */
.gallery-grid {
  margin: 0 -10px;
}

.gallery-item {
  padding: 10px;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(170, 132, 83, 0.2);
}

.gallery-card a.gallery-lightbox {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 200px;
  background: #f5f5f5;
}

.gallery-card-large a.gallery-lightbox {
  aspect-ratio: 16/9;
  min-height: 250px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Gallery Overlay - Glassmorphism */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.85) 0%,
    rgba(170, 132, 83, 0.9) 100%
  );
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.overlay-content span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Direct overlay content (without wrapper) */
.gallery-overlay {
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.gallery-overlay i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-overlay span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-overlay i,
.gallery-card:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Gallery Badge */
.gallery-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(170, 132, 83, 1) 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(170, 132, 83, 0.4);
  z-index: 5;
}

.gallery-badge i {
  font-size: 0.75rem;
}

/* Gallery Figcaption */
.gallery-card figcaption {
  padding: 20px;
  background: #fff;
}

.gallery-card figcaption h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 5px;
}

.gallery-card figcaption p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #AA8453;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gallery-cta:hover {
  color: #1C1C1C;
  gap: 10px;
}

.gallery-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.gallery-cta:hover i {
  transform: translateX(3px);
}

/* CTA Section */
.gallery-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gallery-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.9) 0%,
    rgba(28, 28, 28, 0.8) 100%
  );
}

.gallery-cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gallery-cta-content .sub-title {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.gallery-cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.gallery-cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-cta-content .theme-btn.style-2 {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.gallery-cta-content .theme-btn.style-2:hover {
  background: #d4af37;
  color: #1C1C1C;
}

/* Lightbox Premium Styles */
.mfp-gallery-premium .mfp-container {
  padding: 40px;
}

.mfp-gallery-premium .mfp-image-holder .mfp-figure {
  cursor: default;
}

.mfp-gallery-premium .mfp-figure::after {
  background: rgba(28, 28, 28, 0.95);
  box-shadow: 0 0 100px rgba(170, 132, 83, 0.3);
}

.mfp-gallery-premium .mfp-title {
  text-align: center;
  padding: 15px 20px;
  font-size: 1rem;
  color: #fff;
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  margin-top: 15px;
}

.mfp-gallery-premium .mfp-counter {
  color: #d4af37;
  font-weight: 500;
}

.mfp-gallery-premium .mfp-arrow {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.mfp-gallery-premium .mfp-arrow:hover {
  opacity: 1;
}

.mfp-gallery-premium .mfp-close {
  color: #d4af37;
  font-size: 2rem;
  opacity: 0.8;
}

.mfp-gallery-premium .mfp-close:hover {
  opacity: 1;
}

/* Parallax Card */
.parallax-card {
  overflow: hidden;
}

.parallax-card img {
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

/* Gallery Responsive */
@media (max-width: 1199px) {
  .gallery-filters {
    padding: 15px 20px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  .gallery-filters-wrapper {
    margin-bottom: 30px;
  }

  .gallery-filters {
    border-radius: 20px;
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
  }

  .gallery-cta-content h2 {
    font-size: 2rem;
  }

  .gallery-cta-section {
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  .gallery-intro-text {
    font-size: 1rem;
  }

  .gallery-filters {
    padding: 12px 15px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .filter-btn i {
    display: none;
  }

  .gallery-card {
    border-radius: 12px;
  }

  .gallery-card figcaption {
    padding: 15px;
  }

  .gallery-card figcaption h5 {
    font-size: 1rem;
  }

  .overlay-content i {
    font-size: 2rem;
  }

  .gallery-cta-content h2 {
    font-size: 1.5rem;
  }

  .gallery-cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mfp-gallery-premium .mfp-container {
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .gallery-filters {
    flex-direction: column;
    border-radius: 16px;
    width: 100%;
  }

  .filter-btn {
    width: 100%;
    justify-content: center;
  }

  .filter-btn i {
    display: inline;
  }

  .gallery-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

/* Animation d'entrée pour les items - TOUJOURS VISIBLE */
.gallery-item,
.gallery-item.wow,
.gallery-item.wow:not(.animated),
.gallery-item.wow.animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}


/* ============================================
   SERVICES PAGE PREMIUM STYLES
   ============================================ */

/* Hero Premium Section */
.services-hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 28, 0.7) 0%,
    rgba(28, 28, 28, 0.5) 50%,
    rgba(28, 28, 28, 0.8) 100%
  );
}

.hero-content-premium {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.breadcrumb-nav-premium {
  margin-bottom: 30px;
}

.breadcrumb-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-premium li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.breadcrumb-premium li a:hover {
  color: #AA8453;
}

.breadcrumb-premium li span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-premium li.active {
  color: #AA8453;
  font-weight: 500;
}

.hero-badge {
  display: inline-block;
  background: rgba(170, 132, 83, 0.2);
  border: 1px solid rgba(170, 132, 83, 0.5);
  color: #AA8453;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-badge i {
  margin-right: 8px;
}

.hero-title-premium {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle-premium {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #AA8453;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-description-premium {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 35px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.theme-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #AA8453 0%, #8B6914 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.theme-btn-premium:hover {
  background: linear-gradient(135deg, #8B6914 0%, #AA8453 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(170, 132, 83, 0.4);
  color: #fff;
}

.theme-btn-premium.style-2 {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.theme-btn-premium.style-2:hover {
  background: #fff;
  border-color: #fff;
  color: #1C1C1C;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Services Premium Cards Section */
.services-premium-section {
  background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
  padding: 100px 0;
}

.section-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 15px auto 0;
}

/* Service Card Premium */
.service-card-premium {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.service-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(170, 132, 83, 0.25);
}

.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-premium:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(28, 28, 28, 0.6) 100%);
  transition: opacity 0.4s ease;
}

.service-card-icon {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #AA8453 0%, #8B6914 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(170, 132, 83, 0.4);
  transition: all 0.4s ease;
}

.service-card-icon i {
  font-size: 1.4rem;
  color: #fff;
}

.service-card-premium:hover .service-card-icon {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(170, 132, 83, 0.5);
}

.service-card-content {
  padding: 50px 25px 30px;
  text-align: center;
}

.service-card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 12px;
}

.service-card-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #AA8453;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  color: #8B6914;
  gap: 12px;
}

/* Spa Immersion Section */
.spa-immersion-section {
  background: #1C1C1C;
  overflow: hidden;
}

.spa-swiper-wrapper {
  height: 100%;
  min-height: 600px;
}

.spa-swiper {
  height: 100%;
}

.spa-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spa-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.spa-swiper .swiper-pagination-bullet-active {
  background: #AA8453;
}

.spa-swiper .swiper-button-next,
.spa-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(170, 132, 83, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.spa-swiper .swiper-button-next:after,
.spa-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
}

.spa-content-wrapper {
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spa-content-wrapper .sub-title {
  color: #AA8453;
}

.spa-content-wrapper h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 25px;
}

.spa-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 35px;
}

.spa-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.spa-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.spa-feature i {
  font-size: 1.5rem;
  color: #AA8453;
  width: 40px;
  flex-shrink: 0;
}

.spa-feature h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.spa-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.spa-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #AA8453;
}

/* Excursions Parallax Section */
.excursions-parallax-section {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(28, 28, 28, 0.7) 100%);
}

.excursions-content {
  position: relative;
  z-index: 2;
}

.excursions-content .sub-title {
  color: #AA8453;
}

.excursions-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
}

.excursions-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}

.excursions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.excursions-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.excursions-list li i {
  color: #AA8453;
  font-size: 1.2rem;
  width: 25px;
}

.excursions-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.stat-card:hover {
  background: rgba(170, 132, 83, 0.15);
  border-color: rgba(170, 132, 83, 0.3);
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2rem;
  color: #AA8453;
  margin-bottom: 15px;
}

.stat-card .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Stats Odometer Section */
.stats-odometer-section {
  background: linear-gradient(180deg, #fff 0%, #f8f6f3 100%);
  padding: 25px 0;
}

.stat-odometer-card {
  background: #fff;
  border-radius: 20px;
  padding: 10px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-odometer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(170, 132, 83, 0.15);
  border-color: rgba(170, 132, 83, 0.2);
}

.stat-odometer-card .stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(170, 132, 83, 0.1) 0%, rgba(170, 132, 83, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.stat-odometer-card .stat-icon i {
  font-size: 2rem;
  color: #AA8453;
}

.stat-odometer-card .stat-content .odometer {
  font-size: 3rem;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1;
}

.stat-odometer-card .stat-content .stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #AA8453;
}

.stat-odometer-card .stat-content p {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 0;
}

/* CTA Premium Section */
.cta-premium-section {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.92) 0%, rgba(28, 28, 28, 0.85) 100%);
}

.cta-premium-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(170, 132, 83, 0.2);
  border: 1px solid rgba(170, 132, 83, 0.4);
  color: #AA8453;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.cta-badge i {
  margin-right: 8px;
}

.cta-premium-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
}

.cta-premium-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Services Page Responsive */
@media (max-width: 991px) {
  .services-hero-premium {
    background-attachment: scroll;
  }

  .hero-content-premium {
    padding: 100px 20px 60px;
  }

  .spa-content-wrapper {
    padding: 60px 30px;
  }

  .spa-swiper-wrapper {
    min-height: 400px;
  }

  .excursions-parallax-section,
  .cta-premium-section {
    background-attachment: scroll;
  }

  .excursions-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title-premium {
    font-size: 2.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .theme-btn-premium {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .service-card-image {
    height: 180px;
  }

  .service-card-icon {
    top: 160px;
    width: 50px;
    height: 50px;
  }

  .service-card-icon i {
    font-size: 1.2rem;
  }

  .service-card-content {
    padding: 40px 20px 25px;
  }

  .spa-content-wrapper {
    padding: 50px 20px;
  }

  .spa-swiper-wrapper {
    min-height: 300px;
  }

  .excursions-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-odometer-card {
    padding: 30px 20px;
  }

  .stat-odometer-card .stat-content .odometer {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .excursions-parallax-section,
  .cta-premium-section {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .hero-badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .breadcrumb-premium {
    font-size: 0.85rem;
  }

  .spa-feature {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .spa-feature i {
    width: auto;
  }

  .spa-hours {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* ============================================
   ÉVÉNEMENTS & MARIAGES SECTION
   ============================================ */

.events-wedding-section {
  background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
  overflow: hidden;
  position: relative;
}

.events-wedding-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.events-swiper-wrapper {
  height: 100%;
  min-height: 700px;
}

.events-swiper {
  height: 100%;
}

.events-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
}

.events-swiper .swiper-pagination-bullet-active {
  background: #D4AF37;
}

.events-swiper .swiper-button-next,
.events-swiper .swiper-button-prev {
  color: #fff;
  background: linear-gradient(135deg, #D4AF37 0%, #AA8453 100%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.events-swiper .swiper-button-next:hover,
.events-swiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #AA8453 0%, #D4AF37 100%);
  transform: scale(1.1);
}

.events-swiper .swiper-button-next:after,
.events-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 600;
}

.events-content-wrapper {
  padding: 60px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.events-content-wrapper .sub-title {
  color: #D4AF37;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.events-content-wrapper .sub-title i {
  margin-right: 10px;
}

.events-content-wrapper h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.events-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
}

.events-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.events-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.events-feature:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

.events-feature i {
  font-size: 1.4rem;
  color: #D4AF37;
  width: 35px;
  flex-shrink: 0;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.events-feature h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}

.events-feature p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.events-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #D4AF37;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 25px;
  padding: 18px 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(170, 132, 83, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(5px);
}

.events-info-box i {
  font-size: 1.3rem;
}

/* Events Section Responsive */
@media (max-width: 1199px) {
  .events-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .events-swiper-wrapper {
    min-height: 400px;
  }

  .events-content-wrapper {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .events-swiper-wrapper {
    min-height: 300px;
  }

  .events-content-wrapper {
    padding: 40px 20px;
  }

  .events-feature {
    padding: 12px;
  }

  .events-feature i {
    font-size: 1.2rem;
    width: 30px;
  }

  .events-info-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
}

/* ================================
   CONTACT PAGE ULTRA-PREMIUM STYLES
   ================================ */

/* Hero Contact */
.contact-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.85) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 3;
}

.contact-hero .page-heading {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #D4AF37;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15); }
  50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3); }
}

.hero-badge i {
  font-size: 1rem;
  animation: headsetPulse 2s ease-in-out infinite;
}

@keyframes headsetPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 20px auto 30px;
  opacity: 0.9;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Contact Premium Section */
.contact-premium-section {
  background: linear-gradient(180deg, #080808 0%, #121212 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: visible;
}

.contact-premium-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  animation: rotateGradient 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.contact-premium-section .container {
  position: relative;
  z-index: 10;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact Form Card */
.contact-form-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 5;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  pointer-events: none;
  z-index: -1;
}

.contact-form-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.05);
}

.form-header {
  margin-bottom: 45px;
  text-align: center;
}

.form-header .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 30px;
}

.form-header h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.form-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Form Groups */
.form-group-premium {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

/* Ensure select dropdowns appear above other elements */
.form-group-premium:has(select),
.form-group-premium:focus-within {
  z-index: 20;
}

.form-group-premium label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.form-group-premium label i {
  color: #D4AF37;
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
}

.form-group-premium input,
.form-group-premium textarea,
.form-group-premium select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 22px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.form-group-premium input:hover,
.form-group-premium textarea:hover,
.form-group-premium select:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.form-group-premium input:focus,
.form-group-premium textarea:focus,
.form-group-premium select:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1), 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-group-premium textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.form-group-premium .error-message {
  display: none;
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 8px;
  padding-left: 5px;
}

/* Form has-error state */
.form-group-premium.has-error input,
.form-group-premium.has-error textarea,
.form-group-premium.has-error select {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.05) !important;
}

.form-group-premium.has-error .error-message {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Message Display */
.form-message {
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInDown 0.4s ease;
  position: relative;
  overflow: hidden;
}

.form-message::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
}

.form-message.success {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.15) 0%, rgba(46, 213, 115, 0.05) 100%);
  border: 1px solid rgba(46, 213, 115, 0.3);
  color: #2ed573;
}

.form-message.success::before {
  background: linear-gradient(180deg, #2ed573 0%, #1abc9c 100%);
}

.form-message.error {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 107, 107, 0.05) 100%);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.form-message.error::before {
  background: linear-gradient(180deg, #ff6b6b 0%, #ee5a6f 100%);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
  position: relative;
}

.phone-code-select {
  width: 130px !important;
  flex-shrink: 0;
  text-align: center;
}

.phone-input-group input {
  flex: 1;
  min-width: 0;
}

.phone-input-group .nice-select {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  min-height: 54px !important;
}

/* Form Select Premium */
.form-select-premium {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-color: rgba(255, 255, 255, 0.04);
  padding-right: 50px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.form-select-premium option {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 15px;
}

.form-select-premium option:hover,
.form-select-premium option:focus {
  background: #D4AF37;
  color: #000;
}

/* Fix for nice-select plugin if used */
.form-group-premium .nice-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 22px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  height: auto;
}

.form-group-premium .nice-select:after {
  border-color: #D4AF37;
  right: 20px;
}

.form-group-premium .nice-select .list {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
}

.form-group-premium .nice-select .option {
  color: #fff;
  padding: 12px 18px;
  transition: all 0.2s ease;
}

.form-group-premium .nice-select .option:hover,
.form-group-premium .nice-select .option.focus,
.form-group-premium .nice-select .option.selected.focus {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
}

.form-group-premium .nice-select .option.selected {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  font-weight: 500;
}

/* Contact Page Nice-Select Critical Fixes */
.contact-premium-section .nice-select {
  width: 100% !important;
  float: none !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 16px 22px !important;
  height: auto !important;
  line-height: 1.5 !important;
  color: #fff !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 10 !important;
}

.contact-premium-section .nice-select.open {
  z-index: 1000 !important;
}

.contact-premium-section .nice-select:hover,
.contact-premium-section .nice-select:focus {
  border-color: rgba(212, 175, 55, 0.5) !important;
}

.contact-premium-section .nice-select.open {
  border-color: rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
}

.contact-premium-section .nice-select:after {
  border-color: #D4AF37 !important;
  right: 20px !important;
  top: 50% !important;
  margin-top: -3px !important;
}

.contact-premium-section .nice-select .current {
  color: #fff !important;
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  padding-right: 25px !important;
}

.contact-premium-section .nice-select .list {
  width: 100% !important;
  background: #1a1a1a !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 12px !important;
  margin-top: 5px !important;
  max-height: 220px !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.1) !important;
  left: 0 !important;
  right: 0 !important;
}

/* Custom scrollbar for dropdown */
.contact-premium-section .nice-select .list::-webkit-scrollbar {
  width: 6px;
}

.contact-premium-section .nice-select .list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.contact-premium-section .nice-select .list::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 3px;
}

.contact-premium-section .nice-select .option {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 12px 18px !important;
  line-height: 1.4 !important;
  min-height: auto !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.2s ease !important;
  font-size: 0.95rem !important;
}

.contact-premium-section .nice-select .option:last-child {
  border-bottom: none !important;
}

.contact-premium-section .nice-select .option:hover,
.contact-premium-section .nice-select .option.focus {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #D4AF37 !important;
  padding-left: 22px !important;
}

.contact-premium-section .nice-select .option.selected {
  background: rgba(212, 175, 55, 0.12) !important;
  color: #D4AF37 !important;
  font-weight: 600 !important;
}

/* Phone Code Select Specific */
.phone-input-group {
  position: relative;
  z-index: 15;
}

.phone-input-group .nice-select {
  width: 130px !important;
  min-width: 130px !important;
  flex-shrink: 0 !important;
}

.phone-input-group .nice-select.open {
  z-index: 1000 !important;
}

.phone-input-group .nice-select .list {
  min-width: 180px !important;
  left: 0 !important;
}

/* Ensure proper row stacking for dropdowns */
.contact-premium-section .row {
  position: relative;
}

.contact-premium-section .col-lg-6:has(.nice-select.open),
.contact-premium-section .col-md-6:has(.nice-select.open) {
  z-index: 100;
}

/* Message textarea should be below dropdowns */
.contact-premium-section .col-12:has(textarea) {
  position: relative;
  z-index: 5;
}

/* Submit Button Premium */
.submit-btn-premium {
  width: 100%;
  padding: 20px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #D4AF37 0%, #c9a430 50%, #b8962e 100%);
  border: none;
  border-radius: 12px;
  color: #000;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.submit-btn-premium:hover::before {
  left: 100%;
}

.submit-btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35), 0 0 20px rgba(212, 175, 55, 0.2);
}

.submit-btn-premium:active {
  transform: translateY(-2px);
}

.submit-btn-premium i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.submit-btn-premium:hover i {
  transform: translateX(3px);
}

/* Email Services Block */
.email-services-block {
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.email-services-block::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.email-services-block h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.email-services-block h4 i {
  color: #D4AF37;
  font-size: 1.2rem;
}

.email-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.email-service-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.4s ease;
  text-align: center;
}

.email-service-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.email-service-item .service-label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.email-service-item a {
  color: #D4AF37;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  word-break: break-all;
}

.email-service-item:hover a {
  color: #fff;
}


/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
}

/* Info Card */
.info-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.info-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.info-card-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, transparent);
}

.info-card-header i {
  font-size: 1.6rem;
  color: #D4AF37;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 14px;
}

.info-card-header h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0;
  font-weight: 600;
}

/* Contact Info List */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-info-list li:hover {
  padding-left: 10px;
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-list li:hover .info-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.info-icon i {
  color: #D4AF37;
  font-size: 1.2rem;
}

.info-icon.phone-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.info-icon.whatsapp-icon {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
  border-color: rgba(37, 211, 102, 0.25);
}

.info-icon.whatsapp-icon i {
  color: #25D366;
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.info-link {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.info-link:hover {
  color: #D4AF37;
  transform: translateX(3px);
}

.whatsapp-link {
  color: #25D366 !important;
}

.whatsapp-link:hover {
  color: #1ebe5d !important;
}

/* Quick CTA Buttons */
.quick-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn.whatsapp-cta {
  background: linear-gradient(135deg, #25D366 0%, #20bd5a 50%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.cta-btn.whatsapp-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-btn.whatsapp-cta i {
  font-size: 1.2rem;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.cta-btn.phone-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-btn.phone-cta:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.phone-cta:hover i {
  color: #D4AF37;
}

/* Social Card */
.social-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.social-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
}

.social-card h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 22px;
  font-weight: 500;
}

.social-card h4 i {
  color: #D4AF37;
}

.social-links-premium {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-link {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.35);
}

.social-link.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* Groups Card */
.groups-card {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.groups-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.groups-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.groups-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.groups-icon {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 22px;
  text-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.groups-card h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.groups-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.groups-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.groups-cta:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #c9a430 100%);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Map Section Premium */
.map-section-premium {
  padding: 100px 0 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  position: relative;
}

.map-header {
  margin-bottom: 50px;
}

.map-header .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.map-header h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
}

.map-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(40%) contrast(1.1) brightness(0.9);
  transition: all 0.5s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1);
}

.map-info-overlay {
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,20,20,0.9) 100%);
  padding: 25px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.map-info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.map-info-content i {
  color: #D4AF37;
  font-size: 1.5rem;
  animation: routePulse 2s ease-in-out infinite;
}

@keyframes routePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.map-info-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}

.map-info-content strong {
  color: #fff;
  font-weight: 600;
}

/* Instagram Header */
.instagram-header {
  padding: 3px 0 3px;
}

.instagram-header .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 18px;
  border-radius: 30px;
}

.instagram-header h3 {
  color: #d4af37;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 500;
}


/* Contact Page Responsive */
@media (max-width: 1199px) {
  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-info-sidebar {
    position: static;
  }
}

@media (max-width: 991px) {
  .contact-form-card {
    padding: 40px 35px;
  }

  .email-services-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-sidebar {
    margin-top: 40px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .map-section-premium {
    padding: 80px 0 0;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    min-height: 400px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
    line-height: 1.7;
  }

  .hero-badge {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .contact-premium-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .form-header {
    margin-bottom: 35px;
  }

  .form-header h2 {
    font-size: 1.4rem;
  }

  .form-header p {
    font-size: 0.9rem;
  }

  .phone-input-group {
    flex-direction: column;
    gap: 10px;
  }

  .phone-code-select {
    width: 100% !important;
  }

  .submit-btn-premium {
    padding: 16px 25px;
    font-size: 1rem;
  }

  .info-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .info-card-header h3 {
    font-size: 1.15rem;
  }

  .quick-cta-buttons {
    gap: 12px;
  }

  .cta-btn {
    padding: 14px 22px;
    font-size: 0.95rem;
  }

  .social-link {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .groups-card {
    padding: 28px 22px;
  }

  .groups-icon {
    font-size: 2.5rem;
  }

  .map-container {
    height: 350px;
  }

  .map-header h2 {
    font-size: 1.6rem;
  }

  .map-info-content {
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
  }

  .map-info-content p {
    font-size: 0.95rem;
  }

  .instagram-header h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 380px;
  }

  .contact-hero h1 {
    font-size: 1.75rem;
  }

  .contact-form-card {
    padding: 25px 18px;
  }

  .form-header h2 {
    font-size: 1.25rem;
  }

  .info-card {
    padding: 25px 18px;
  }

  .email-service-item {
    padding: 15px 12px;
  }
}


/* ===========================================
   ROOMS PAGE PREMIUM STYLES
   =========================================== */

/* Rooms Hero Section */
.rooms-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.rooms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.rooms-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M30 30h1v1h-1zM0 30h1v1H0zM30 0h1v1h-1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.rooms-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.rooms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  animation: pulseGlow 3s ease-in-out infinite;
}

.rooms-hero-badge i {
  color: #D4AF37;
  font-size: 1rem;
}

.rooms-hero-badge span {
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rooms-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.rooms-hero h1 span {
  color: #D4AF37;
}

.rooms-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.rooms-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.95rem;
}

.rooms-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rooms-hero-breadcrumb a:hover {
  color: #D4AF37;
}

.rooms-hero-breadcrumb i {
  color: #D4AF37;
  font-size: 0.7rem;
}

.rooms-hero-breadcrumb span {
  color: #fff;
}

/* Rooms Premium Section */
.rooms-premium-section {
  background: linear-gradient(180deg, #080808 0%, #0f0f0f 50%, #080808 100%);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.rooms-premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Section Header */
.rooms-section-header {
  text-align: center;
  margin-bottom: 20px;
}

.rooms-section-header .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.rooms-section-header .sub-title i {
  font-size: 1rem;
}

.rooms-section-header h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.rooms-section-header p {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}


/* Room Card Premium */
.room-card-premium {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212, 175, 55, 0.1);
}

/* Room Image */
.room-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card-premium:hover .room-card-image img {
  transform: scale(1.1);
}

.room-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
}

.room-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.room-capacity-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.room-capacity-badge i {
  color: #D4AF37;
}

/* Room Content */
.room-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.room-card-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.room-card-content h3 a:hover {
  color: #D4AF37;
}

.room-description {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Room Amenities */
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s ease;
}

.amenity-tag i {
  color: #D4AF37;
  font-size: 0.75rem;
}

.room-card-premium:hover .amenity-tag {
  border-color: rgba(212, 175, 55, 0.2);
}

/* Room CTA */
.room-cta-group {
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.room-whatsapp-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.room-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.room-whatsapp-btn i {
  font-size: 1.1rem;
}

.room-reserve-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #c9a430 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
}

.room-reserve-btn:hover {
  background: linear-gradient(135deg, #c9a430 0%, #b8941f 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: #fff;
}

.room-reserve-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.room-reserve-btn:hover i {
  transform: scale(1.1);
}

.room-details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  color: #D4AF37;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.room-details-btn:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #c9a430 100%);
  border-color: #D4AF37;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.room-details-btn i {
  transition: transform 0.3s ease;
}

.room-details-btn:hover i {
  transform: translateX(5px);
}


/* Suites Section */
.suites-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  padding: 100px 0;
  position: relative;
}

.suites-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.suites-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.suites-divider::before,
.suites-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3));
}

.suites-divider::after {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
}

.suites-divider span {
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
}

/* Suite Card (larger) */
.suite-card-premium {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.suite-card-premium:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 50px rgba(212, 175, 55, 0.15);
}

.suite-card-premium .room-card-image {
  height: 320px;
}

.suite-card-premium .room-category-badge {
  background: linear-gradient(135deg, #D4AF37 0%, #c9a430 100%);
  font-size: 0.8rem;
  padding: 10px 22px;
}

.suite-card-premium .room-card-content {
  padding: 35px;
}

.suite-card-premium .room-card-content h3 {
  font-size: 1.7rem;
}

/* Rooms Page Responsive */
@media (max-width: 1199px) {
  .rooms-hero h1 {
    font-size: 2.8rem;
  }

  .rooms-section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .rooms-hero {
    min-height: 450px;
  }

  .rooms-hero h1 {
    font-size: 2.4rem;
  }

  .rooms-premium-section {
    padding: 80px 0;
  }

  .rooms-section-header {
    margin-bottom: 50px;
  }

  .room-card-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .rooms-hero {
    min-height: 400px;
    background-attachment: scroll;
  }

  .rooms-hero h1 {
    font-size: 2rem;
  }

  .rooms-hero-subtitle {
    font-size: 1rem;
  }

  .rooms-hero-badge {
    padding: 10px 20px;
  }

  .rooms-hero-badge span {
    font-size: 0.75rem;
  }

  .rooms-premium-section {
    padding: 60px 0;
  }

  .rooms-section-header h2 {
    font-size: 1.8rem;
  }

  .room-card-content {
    padding: 25px;
  }

  .room-card-content h3 {
    font-size: 1.3rem;
  }

  .room-cta-group {
    flex-direction: column;
  }

  .room-reserve-btn {
    width: 100%;
    height: 48px;
  }

  .room-details-btn {
    width: 100%;
    height: 48px;
  }

  .suite-card-premium .room-card-image {
    height: 280px;
  }

  .suites-divider span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .rooms-hero h1 {
    font-size: 1.75rem;
  }

  .room-card-image {
    height: 220px;
  }

  .room-card-content {
    padding: 20px;
  }

  .amenity-tag {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

/* ============================================
   ROOM DETAIL PREMIUM - Pages Chambres
   ============================================ */

/* Hero Section Premium */
.room-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.room-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.room-detail-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.room-detail-hero:hover .hero-bg {
  transform: scale(1.05);
}

.room-detail-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.room-detail-hero .breadcrumb-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.room-detail-hero .breadcrumb-premium a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.room-detail-hero .breadcrumb-premium a:hover {
  color: #D4AF37;
}

.room-detail-hero .breadcrumb-premium i {
  color: #D4AF37;
  font-size: 0.7rem;
}

.room-detail-hero .breadcrumb-premium span {
  color: #D4AF37;
  font-size: 0.9rem;
}

.room-detail-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.room-detail-hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.room-detail-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 8px 20px;
  border-radius: 30px;
  color: #D4AF37;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Main Content Premium */
.room-detail-section {
  background: linear-gradient(180deg, #080808 0%, #0f0f0f 50%, #080808 100%);
  padding: 80px 0 100px;
  position: relative;
}

.room-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}


/* Gallery Premium with Lightbox */
.room-gallery-premium {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 40px;
}

/* Room Photo Figure - Lightbox */
.room-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-photo.main-photo {
  margin-bottom: 20px;
}

.room-photo a {
  display: block;
  position: relative;
  overflow: hidden;
}

.room-photo img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.room-photo.main-photo img {
  height: 400px;
}

.room-photo.thumb-photo img {
  height: 100px;
}

/* Glassmorphism Overlay on Hover */
.room-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.0) 0%,
    rgba(212, 175, 55, 0.1) 50%,
    rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.room-photo:hover::before {
  opacity: 1;
}

/* Glass Effect Border on Hover */
.room-photo::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid rgba(212, 175, 55, 0);
  border-radius: 18px;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.room-photo:hover::after {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Zoom Icon on Hover */
.room-photo .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(170, 132, 83, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.room-photo .zoom-icon i {
  color: #fff;
  font-size: 22px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.room-photo:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Image Zoom Effect */
.room-photo:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* Thumbnail Photos Grid */
.gallery-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.room-photo.thumb-photo {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.room-photo.thumb-photo::after {
  border-radius: 14px;
}

.room-photo.thumb-photo .zoom-icon {
  width: 40px;
  height: 40px;
}

.room-photo.thumb-photo .zoom-icon i {
  font-size: 16px;
}

.room-photo.thumb-photo:hover {
  transform: translateY(-8px);
}

/* Animation d'apparition */
.room-photo.wow {
  animation-fill-mode: both;
}

@keyframes roomPhotoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.room-gallery-premium .room-photo {
  animation: roomPhotoFadeIn 0.6s ease-out forwards;
}

.room-gallery-premium .room-photo:nth-child(1) { animation-delay: 0.1s; }
.room-gallery-premium .room-photo:nth-child(2) { animation-delay: 0.2s; }
.room-gallery-premium .room-photo:nth-child(3) { animation-delay: 0.3s; }
.room-gallery-premium .room-photo:nth-child(4) { animation-delay: 0.4s; }
.room-gallery-premium .room-photo:nth-child(5) { animation-delay: 0.5s; }

/* Magnific Popup Custom Styles */
.mfp-bg {
  background: rgba(8, 8, 8, 0.95) !important;
  backdrop-filter: blur(10px);
}

.mfp-container {
  padding: 20px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #D4AF37 !important;
  font-size: 40px;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: rotate(90deg);
}

.mfp-arrow {
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(170, 132, 83, 0.8) 100%);
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.mfp-arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

.mfp-arrow::before,
.mfp-arrow::after {
  border: none !important;
}

.mfp-arrow-left::before {
  content: '\f104';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mfp-arrow-right::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mfp-counter {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.mfp-title {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
}

/* Responsive Gallery */
@media (max-width: 991px) {
  .room-photo.main-photo img {
    height: 300px;
  }

  .gallery-thumbs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .room-photo.thumb-photo img {
    height: 80px;
  }

  .room-photo .zoom-icon {
    width: 50px;
    height: 50px;
  }

  .room-photo .zoom-icon i {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .room-gallery-premium {
    padding: 20px;
    border-radius: 16px;
  }

  .room-photo.main-photo img {
    height: 250px;
  }

  .gallery-thumbs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .room-photo.thumb-photo img {
    height: 100px;
  }

  .room-photo .zoom-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .room-photo.main-photo img {
    height: 200px;
  }

  .room-photo.thumb-photo img {
    height: 80px;
  }

  .room-photo .zoom-icon {
    width: 40px;
    height: 40px;
  }

  .room-photo .zoom-icon i {
    font-size: 14px;
  }
}

/* Room Info Card Premium */
.room-info-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 30px;
}

.room-info-card h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.room-info-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, transparent);
  border-radius: 3px;
}

.room-info-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Room Features Grid */
.room-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.room-feature-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

.room-feature-item i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #D4AF37;
  font-size: 1.1rem;
}

.room-feature-item span {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}


/* Amenities Section Premium */
.room-amenities-section {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 30px;
}

.room-amenities-section h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.room-amenities-section h3 i {
  color: #D4AF37;
}

.amenities-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.amenity-item-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.amenity-item-premium:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

.amenity-item-premium i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D4AF37 0%, #c9a430 100%);
  border-radius: 10px;
  color: #000;
  font-size: 1rem;
}

.amenity-item-premium span {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Sidebar Premium */
.room-sidebar-premium {
  position: sticky;
  top: 120px;
}

.sidebar-cta-card {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 25px;
  text-align: center;
}

.sidebar-cta-card h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.sidebar-cta-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.whatsapp-cta-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 25px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-cta-premium i {
  font-size: 1.4rem;
}

.sidebar-contact-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
}

.sidebar-contact-card h5 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.sidebar-contact-card p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.sidebar-contact-card .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #D4AF37;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-contact-card .phone-link:hover {
  color: #fff;
}

.sidebar-contact-card .phone-link i {
  font-size: 1.1rem;
}


/* Room Detail Responsive */
@media (max-width: 1199px) {
  .room-detail-hero h1 {
    font-size: 2.8rem;
  }

  .amenities-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .room-detail-hero {
    height: 50vh;
    min-height: 400px;
  }

  .room-detail-hero h1 {
    font-size: 2.2rem;
  }

  .room-sidebar-premium {
    position: relative;
    top: 0;
    margin-top: 40px;
  }

  .room-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .room-detail-hero {
    height: 45vh;
    min-height: 350px;
  }

  .room-detail-hero h1 {
    font-size: 1.8rem;
  }

  .room-detail-hero .hero-subtitle {
    font-size: 1rem;
  }

  .room-detail-section {
    padding: 50px 0 70px;
  }

  .room-gallery-premium {
    padding: 20px;
  }

  .room-gallery-premium .main-image img {
    height: 280px;
  }

  .room-gallery-premium .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-gallery-premium .thumb-item img {
    height: 80px;
  }

  .amenities-grid-premium {
    grid-template-columns: 1fr;
  }

  .room-info-card,
  .room-amenities-section {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .room-detail-hero h1 {
    font-size: 1.5rem;
  }

  .room-gallery-premium .main-image img {
    height: 220px;
  }

  .sidebar-cta-card {
    padding: 25px;
  }
}

/* ============================================
   SUITES PREMIUM STYLES
   Hôtel Atlas Day - Azilal
   Chaque suite a son identité visuelle unique
   ============================================ */

/* === SUITE ATLAS - Bleu Nuit & Doré === */
.suite-atlas {
  --suite-primary: #1a2a4a;
  --suite-secondary: #D4AF37;
  --suite-accent: #2c3e5f;
  --suite-gradient: linear-gradient(135deg, #1a2a4a 0%, #0d1829 100%);
  --suite-glow: rgba(212, 175, 55, 0.3);
}

.suite-atlas .suite-hero {
  background: var(--suite-gradient);
}

.suite-atlas .suite-badge {
  background: linear-gradient(135deg, var(--suite-secondary) 0%, #c9a227 100%);
  color: var(--suite-primary);
}

.suite-atlas .suite-accent-border {
  border-color: var(--suite-secondary);
}

.suite-atlas .suite-icon-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.suite-atlas .suite-icon-box i {
  color: var(--suite-secondary);
}

/* === SUITE JARDIN - Verts & Beige === */
.suite-jardin {
  --suite-primary: #2d5a3d;
  --suite-secondary: #8fbc8f;
  --suite-accent: #f5f5dc;
  --suite-gradient: linear-gradient(135deg, #2d5a3d 0%, #1a3a24 100%);
  --suite-glow: rgba(143, 188, 143, 0.3);
}

.suite-jardin .suite-hero {
  background: var(--suite-gradient);
}

.suite-jardin .suite-badge {
  background: linear-gradient(135deg, var(--suite-secondary) 0%, #6b8e6b 100%);
  color: #1a3a24;
}

.suite-jardin .suite-accent-border {
  border-color: var(--suite-secondary);
}

.suite-jardin .suite-icon-box {
  background: rgba(143, 188, 143, 0.1);
  border: 1px solid rgba(143, 188, 143, 0.3);
}

.suite-jardin .suite-icon-box i {
  color: var(--suite-secondary);
}

/* === SUITE PANORAMIQUE - Bleu Ciel & Lumière === */
.suite-panoramique {
  --suite-primary: #4a90b8;
  --suite-secondary: #87ceeb;
  --suite-accent: #e0f4ff;
  --suite-gradient: linear-gradient(135deg, #4a90b8 0%, #2c5f7a 100%);
  --suite-glow: rgba(135, 206, 235, 0.3);
}

.suite-panoramique .suite-hero {
  background: var(--suite-gradient);
}

.suite-panoramique .suite-badge {
  background: linear-gradient(135deg, var(--suite-secondary) 0%, #5fb3d4 100%);
  color: #1a4a5f;
}

.suite-panoramique .suite-accent-border {
  border-color: var(--suite-secondary);
}

.suite-panoramique .suite-icon-box {
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
}

.suite-panoramique .suite-icon-box i {
  color: var(--suite-secondary);
}

/* === SUITE SUNSET - Orangé & Rosé === */
.suite-sunset {
  --suite-primary: #c45c3a;
  --suite-secondary: #f4a460;
  --suite-accent: #ffe4e1;
  --suite-gradient: linear-gradient(135deg, #c45c3a 0%, #8b3a2a 100%);
  --suite-glow: rgba(244, 164, 96, 0.3);
}

.suite-sunset .suite-hero {
  background: var(--suite-gradient);
}

.suite-sunset .suite-badge {
  background: linear-gradient(135deg, var(--suite-secondary) 0%, #e8956e 100%);
  color: #5a2a1a;
}

.suite-sunset .suite-accent-border {
  border-color: var(--suite-secondary);
}

.suite-sunset .suite-icon-box {
  background: rgba(244, 164, 96, 0.1);
  border: 1px solid rgba(244, 164, 96, 0.3);
}

.suite-sunset .suite-icon-box i {
  color: var(--suite-secondary);
}

/* === SUITE HERO SECTION === */
.suite-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.suite-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.suite-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.suite-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.suite-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.suite-breadcrumb a:hover {
  color: #D4AF37;
}

.suite-breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.suite-breadcrumb .current {
  color: #D4AF37;
  font-weight: 500;
}

.suite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.suite-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.suite-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-weight: 300;
}

.suite-hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.suite-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.suite-hero-feature i {
  color: #D4AF37;
  font-size: 1.1rem;
}

/* === SUITE GALLERY SECTION === */
.suite-gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #080808 0%, #0f0f0f 50%, #080808 100%);
}

.suite-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
}

.suite-gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.suite-gallery-grid .gallery-item:first-child img {
  height: 100%;
}

.suite-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.suite-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.suite-gallery-item:hover img {
  transform: scale(1.08);
}

.suite-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suite-gallery-item:hover .suite-gallery-overlay {
  opacity: 1;
}

.suite-gallery-overlay i {
  font-size: 2.5rem;
  color: #D4AF37;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.suite-gallery-item:hover .suite-gallery-overlay i {
  transform: scale(1);
}

/* === SUITE CONTENT SECTION === */
.suite-content-section {
  padding: 80px 0;
  background: #fff;
}

.suite-description-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.suite-description-card h2 {
  font-size: 1.8rem;
  color: #1C1C1C;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.suite-description-card h2 i {
  color: #D4AF37;
}

.suite-description-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.suite-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.suite-spec-item {
  text-align: center;
  padding: 20px 15px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.suite-spec-item:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

.suite-spec-item i {
  font-size: 1.5rem;
  color: #D4AF37;
  margin-bottom: 10px;
}

.suite-spec-item span {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.suite-spec-item strong {
  display: block;
  font-size: 1.1rem;
  color: #1C1C1C;
  margin-top: 5px;
}

/* === SUITE AMENITIES SECTION === */
.suite-amenities-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
}

.suite-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.suite-amenity-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.suite-amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.suite-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.suite-icon-box i {
  font-size: 1.3rem;
}

.suite-amenity-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1C1C1C;
}

/* === SUITE SERVICES SECTION === */
.suite-services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1C1C1C 0%, #0a0a0a 100%);
}

.suite-services-section h2 {
  color: #fff;
}

.suite-services-section .sub-title {
  color: #D4AF37;
}

.suite-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.suite-service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.suite-service-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.suite-service-card i {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 20px;
}

.suite-service-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.suite-service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* === SUITE SIDEBAR === */
.suite-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.suite-cta-card {
  background: linear-gradient(180deg, #1C1C1C 0%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 25px;
}

.suite-cta-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.suite-cta-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.suite-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 25px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.suite-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.suite-whatsapp-btn i {
  font-size: 1.4rem;
}

.suite-contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.suite-contact-card h4 {
  font-size: 1.1rem;
  color: #1C1C1C;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.suite-contact-card h4 i {
  color: #D4AF37;
}

.suite-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.suite-contact-item:last-child {
  border-bottom: none;
}

.suite-contact-item i {
  width: 35px;
  height: 35px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 0.9rem;
}

.suite-contact-item span {
  font-size: 0.9rem;
  color: #555;
}

.suite-contact-item a {
  color: #1C1C1C;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.suite-contact-item a:hover {
  color: #D4AF37;
}

/* === SUITE RESPONSIVE === */
@media (max-width: 991px) {
  .suite-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .suite-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .suite-gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .suite-gallery-item img {
    height: 200px;
  }

  .suite-description-card {
    padding: 30px;
  }

  .suite-sidebar-sticky {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .suite-hero-content {
    padding: 100px 15px 60px;
  }

  .suite-hero-features {
    gap: 15px;
  }

  .suite-hero-feature {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .suite-gallery-grid {
    grid-template-columns: 1fr;
  }

  .suite-gallery-grid .gallery-item:first-child {
    grid-column: span 1;
  }

  .suite-gallery-item img {
    height: 220px;
  }

  .suite-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suite-amenities-grid {
    grid-template-columns: 1fr;
  }

  .suite-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .suite-hero h1 {
    font-size: 2rem;
  }

  .suite-badge {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .suite-description-card {
    padding: 25px 20px;
  }

  .suite-description-card h2 {
    font-size: 1.4rem;
  }

  .suite-cta-card {
    padding: 25px 20px;
  }
}

/* ================================================================
   DÉCOUVRIR AZILAL - PAGES DESTINATIONS PREMIUM
   ================================================================ */

/* === Variables Couleur par Destination === */
.decouvrir-hub {
  --dest-primary: #AA8453;
  --dest-secondary: #D4AF37;
  --dest-accent: #8B6914;
  --dest-gradient: linear-gradient(135deg, #AA8453 0%, #8B6914 100%);
  --dest-glow: rgba(212, 175, 55, 0.3);
}

.decouvrir-geoparc {
  --dest-primary: #8B4513;
  --dest-secondary: #CD853F;
  --dest-accent: #A0522D;
  --dest-gradient: linear-gradient(135deg, #8B4513 0%, #654321 100%);
  --dest-glow: rgba(205, 133, 63, 0.3);
}

.decouvrir-cascades {
  --dest-primary: #20B2AA;
  --dest-secondary: #2E8B57;
  --dest-accent: #3CB371;
  --dest-gradient: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
  --dest-glow: rgba(46, 139, 87, 0.3);
}

.decouvrir-lac {
  --dest-primary: #1E3A5F;
  --dest-secondary: #4682B4;
  --dest-accent: #5F9EA0;
  --dest-gradient: linear-gradient(135deg, #1E3A5F 0%, #0D1B2A 100%);
  --dest-glow: rgba(70, 130, 180, 0.3);
}

.decouvrir-iminifri {
  --dest-primary: #A67B5B;
  --dest-secondary: #C4A77D;
  --dest-accent: #8B7355;
  --dest-gradient: linear-gradient(135deg, #A67B5B 0%, #6B4423 100%);
  --dest-glow: rgba(196, 167, 125, 0.3);
}

.decouvrir-randonnees {
  --dest-primary: #2D5A3D;
  --dest-secondary: #4CAF50;
  --dest-accent: #388E3C;
  --dest-gradient: linear-gradient(135deg, #2D5A3D 0%, #1B3A2A 100%);
  --dest-glow: rgba(76, 175, 80, 0.3);
}

/* === Hero Section Découvrir === */
.decouvrir-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.decouvrir-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.decouvrir-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.decouvrir-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.decouvrir-breadcrumb a,
.decouvrir-breadcrumb span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.decouvrir-breadcrumb a:hover {
  color: var(--dest-secondary);
}

.decouvrir-breadcrumb .current {
  color: var(--dest-secondary);
  font-weight: 600;
}

.decouvrir-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dest-gradient);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px var(--dest-glow);
}

.decouvrir-badge i {
  font-size: 1.1rem;
}

.decouvrir-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 4px 15px rgba(0,0,0,0.5);
  font-family: var(--font-display);
}

.decouvrir-hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 30px;
  font-family: var(--font-body);
}

.decouvrir-hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.decouvrir-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  padding: 12px 22px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.decouvrir-hero-feature i {
  color: var(--dest-secondary);
  font-size: 1.1rem;
}

/* === Galerie Découvrir === */
.decouvrir-gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
}

.decouvrir-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.decouvrir-gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin: 0;
}

.decouvrir-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.decouvrir-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.decouvrir-gallery-item:hover img {
  transform: scale(1.08);
}

.decouvrir-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, var(--dest-glow) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.decouvrir-gallery-item:hover .decouvrir-gallery-overlay {
  opacity: 1;
}

.decouvrir-gallery-overlay i {
  width: 60px;
  height: 60px;
  background: var(--dest-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px var(--dest-glow);
}

.decouvrir-gallery-item:hover .decouvrir-gallery-overlay i {
  transform: scale(1);
}

/* === Section Contenu Découvrir === */
.decouvrir-content-section {
  padding: 80px 0;
  background: #fff;
}

.decouvrir-description-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.decouvrir-description-card h2 {
  font-size: 2rem;
  color: var(--dest-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-display);
}

.decouvrir-description-card h2 i {
  color: var(--dest-secondary);
}

.decouvrir-description-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.decouvrir-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.decouvrir-spec-item {
  text-align: center;
  padding: 20px 15px;
  background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.05);
}

.decouvrir-spec-item i {
  font-size: 1.8rem;
  color: var(--dest-secondary);
  margin-bottom: 12px;
  display: block;
}

.decouvrir-spec-item span {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.decouvrir-spec-item strong {
  font-size: 1.1rem;
  color: var(--dest-primary);
  font-weight: 600;
}

/* === Sidebar Découvrir === */
.decouvrir-sidebar-sticky {
  position: sticky;
  top: 120px;
}

.decouvrir-cta-card {
  background: var(--dest-gradient);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px var(--dest-glow);
}

.decouvrir-cta-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.decouvrir-cta-card p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.decouvrir-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.decouvrir-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  color: #fff;
}

.decouvrir-whatsapp-btn i {
  font-size: 1.4rem;
}

.decouvrir-contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.decouvrir-contact-card h4 {
  font-size: 1.2rem;
  color: var(--dest-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}

.decouvrir-contact-card h4 i {
  color: var(--dest-secondary);
}

.decouvrir-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.decouvrir-contact-item:last-child {
  border-bottom: none;
}

.decouvrir-contact-item > i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dest-secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.decouvrir-contact-item div span {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 3px;
}

.decouvrir-contact-item div a {
  color: var(--dest-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.decouvrir-contact-item div a:hover {
  color: var(--dest-secondary);
}

/* === Section Activités Découvrir === */
.decouvrir-activities-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
}

.decouvrir-activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.decouvrir-activity-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.decouvrir-activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px var(--dest-glow);
  border-color: var(--dest-secondary);
}

.decouvrir-activity-card i {
  font-size: 2.5rem;
  color: var(--dest-secondary);
  margin-bottom: 20px;
  display: block;
}

.decouvrir-activity-card h4 {
  font-size: 1.2rem;
  color: var(--dest-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.decouvrir-activity-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Page HUB - Cartes Destinations === */
.decouvrir-hub-intro {
  padding: 20px 0;
  background: #fff;
}

.decouvrir-hub-intro h2 {
  font-size: 2.5rem;
  color: #1C1C1C;
  margin-bottom: 30px;
  font-family: var(--font-display);
  text-align: center;
}

.decouvrir-hub-intro p {
  color: #555;
  line-height: 1.9;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

.destinations-grid-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s ease;
}

.destination-card:first-child {
  grid-column: span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(180deg, rgba(170,132,83,0.3) 0%, rgba(0,0,0,0.9) 100%);
}

.destination-card-overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-card-overlay h3 {
  transform: translateY(-5px);
}

.destination-card-overlay .distance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 0.95rem;
  font-weight: 500;
}

.destination-card-overlay .distance i {
  font-size: 1rem;
}

.destination-card-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.destination-card:hover .destination-card-btn {
  opacity: 1;
  transform: scale(1);
}

.destination-card-btn:hover {
  background: #D4AF37;
  border-color: #D4AF37;
}

/* === Section Pourquoi Choisir === */
.decouvrir-why-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
}

.decouvrir-why-section h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-family: var(--font-display);
  text-align: center;
}

.decouvrir-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.decouvrir-why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.decouvrir-why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: #D4AF37;
}

.decouvrir-why-card i {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 20px;
  display: block;
}

.decouvrir-why-card h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.decouvrir-why-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === CTA Global Découvrir === */
.decouvrir-global-cta {
  padding: 60px 0;
  background: var(--dest-gradient, linear-gradient(135deg, #AA8453 0%, #8B6914 100%));
  text-align: center;
}

.decouvrir-global-cta h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.decouvrir-global-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* === Responsive Découvrir === */
@media (max-width: 991px) {
  .decouvrir-hero {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .decouvrir-hero h1 {
    font-size: 2.5rem;
  }

  .decouvrir-hero-features {
    gap: 15px;
  }

  .decouvrir-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decouvrir-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .decouvrir-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decouvrir-activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card:first-child {
    grid-column: span 2;
  }

  .decouvrir-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .decouvrir-hero {
    min-height: 50vh;
  }

  .decouvrir-hero h1 {
    font-size: 2rem;
  }

  .decouvrir-hero-subtitle {
    font-size: 1.1rem;
  }

  .decouvrir-hero-feature {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .decouvrir-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .decouvrir-gallery-item:first-child {
    grid-column: span 1;
  }

  .decouvrir-description-card {
    padding: 25px 20px;
  }

  .decouvrir-description-card h2 {
    font-size: 1.5rem;
  }

  .decouvrir-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .decouvrir-activities-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card:first-child {
    grid-column: span 1;
  }

  .decouvrir-why-grid {
    grid-template-columns: 1fr;
  }

  .decouvrir-hub-intro h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .decouvrir-hero h1 {
    font-size: 1.6rem;
  }

  .decouvrir-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .decouvrir-hero-features {
    flex-direction: column;
    align-items: center;
  }

  .decouvrir-specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .decouvrir-spec-item {
    padding: 15px 10px;
  }

  .decouvrir-cta-card {
    padding: 25px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING RESERVATION BUTTON — HOTEL ATLAS DAY
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING RESERVATION BUTTON — DESKTOP & MOBILE
   ───────────────────────────────────────────────────────────────────────────── */

.floating-reservation-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #AA8453 0%, #8B6914 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(170, 132, 83, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease, pulse 2s ease-in-out infinite;
}

.floating-reservation-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(170, 132, 83, 0.6);
  background: linear-gradient(135deg, #8B6914 0%, #AA8453 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.floating-reservation-btn:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(170, 132, 83, 0.5);
}

.floating-reservation-btn i {
  font-size: 20px;
  animation: bounce 1s ease-in-out infinite;
}

.floating-reservation-btn:hover i {
  animation: none;
  transform: rotate(15deg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(170, 132, 83, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(170, 132, 83, 0.6);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN — TABLET
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .floating-reservation-btn {
    bottom: 25px;
    right: 25px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .floating-reservation-btn i {
    font-size: 18px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN — MOBILE
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .floating-reservation-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .floating-reservation-btn i {
    font-size: 16px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN — SMALL MOBILE (FULL WIDTH BOTTOM BAR)
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .floating-reservation-btn {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    padding: 16px 20px;
    font-size: 15px;
    justify-content: center;
    box-shadow: 0 -4px 16px rgba(170, 132, 83, 0.3);
    animation: fadeInUp 0.6s ease;
  }

  .floating-reservation-btn:hover {
    transform: none;
    box-shadow: 0 -6px 20px rgba(170, 132, 83, 0.5);
  }

  .floating-reservation-btn:active {
    transform: scale(0.98);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ACCESSIBILITY
   ───────────────────────────────────────────────────────────────────────────── */

.floating-reservation-btn:focus {
  outline: 3px solid rgba(170, 132, 83, 0.5);
  outline-offset: 4px;
}

.floating-reservation-btn:focus:not(:focus-visible) {
  outline: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   DARK GREEN VARIANT (FOR RESTAURANT PAGE)
   ───────────────────────────────────────────────────────────────────────────── */

.floating-reservation-btn.dark-green-variant {
  background: linear-gradient(135deg, #0E3B2E 0%, #0A2A20 100%);
  box-shadow: 0 8px 24px rgba(14, 59, 46, 0.4);
}

.floating-reservation-btn.dark-green-variant:hover {
  background: linear-gradient(135deg, #0A2A20 0%, #0E3B2E 100%);
  box-shadow: 0 12px 32px rgba(14, 59, 46, 0.6);
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(14, 59, 46, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(14, 59, 46, 0.6);
  }
}
