/* ==============================================
   LA PLACETTE - ULTRA MODERNE 2025
   Version : Argent Pur v8.0 - SITE DE FOU !
   By : Claude (ON EXPLOSE GPT-5 !)
   ============================================== */

/* ===== VARIABLES ULTRA ===== */
:root {
  /* Couleurs principales */
  --dark-1: #1b1b1b;
  --dark-2: #22280E;
  --dark-3: #0E2228;
  --cream: #F8F8F5;
  --beige: #c8ad7f;
  --orange: #FF4D00;
  --silver: #c0c0c0;
  
  /* Gradients */
  --gradient-dark: linear-gradient(135deg, #0E2228 0%, #1b1b1b 50%, #22280E 100%);
  --gradient-accent: linear-gradient(135deg, #FF4D00 0%, #ff6b00 100%);
  --gradient-silver: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  --gradient-gold: linear-gradient(135deg, #c8ad7f 0%, #d4c5a0 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(255, 77, 0, 0.4);
  --shadow-silver: 0 0 40px rgba(192, 192, 192, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fonts */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ===== RESET ULTRA ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--dark-1);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== UTILITIES ===== */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.wrap-full {
  max-width: 100%;
  padding: 0 40px;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }

/* ===== SECTION ELEMENTS ===== */
.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: 50px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.section-title-ultra {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--cream);
}

.title-gradient {
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc-ultra {
  font-size: 1.2rem;
  color: rgba(248, 248, 245, 0.75);
  line-height: 1.8;
  max-width: 700px;
}

.section-header-ultra {
  text-align: center;
  margin-bottom: 80px;
}

/* ===== BUTTONS ULTRA ===== */
.btn-ultra {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: all var(--transition-base);
  z-index: 1;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

.btn-ultra:hover .btn-icon {
  transform: translateX(5px);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.btn-ultra:hover .btn-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.btn-primary-ultra {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary-ultra::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-accent);
  border-radius: 14px;
  opacity: 0;
  filter: blur(15px);
  z-index: -1;
  transition: opacity var(--transition-base);
}

.btn-primary-ultra:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-primary-ultra:hover::before {
  opacity: 0.7;
}

.btn-secondary-ultra {
  background: transparent;
  border: 2px solid var(--silver);
  color: var(--silver);
  box-shadow: var(--shadow-md);
}

.btn-secondary-ultra:hover {
  background: var(--silver);
  color: var(--dark-1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-silver);
}

.btn-large-ultra {
  padding: 22px 50px;
  font-size: 1.1rem;
}

.btn-app-ultra {
  background: linear-gradient(135deg, var(--silver) 0%, #d8d8d8 100%);
  color: var(--dark-1);
  box-shadow: var(--shadow-lg);
}

.btn-app-ultra:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-silver);
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

::selection {
  background: var(--orange);
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange) 0%, var(--silver) 100%);
  border-radius: 6px;
  border: 2px solid var(--dark-1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-accent);
}/* ===== HERO ULTRA SECTION ===== */
.hero-ultra {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-ultra-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--silver) 0%, transparent 70%);
  bottom: -400px;
  right: -300px;
  animation-delay: 5s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--beige) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.4;
}

.hero-ultra-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(192, 192, 192, 0.1);
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: 50px;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-ultra-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-word {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.word-1 {
  color: var(--cream);
  animation: fadeInUp 1s ease-out forwards;
}

.word-2 {
  color: var(--beige);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.word-3 {
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  filter: drop-shadow(0 0 40px rgba(192, 192, 192, 0.3));
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ultra-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(248, 248, 245, 0.8);
  margin-bottom: 50px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.6s both;
}

.subtitle-highlight {
  color: var(--orange);
  font-weight: 600;
}

.hero-ultra-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
  animation: fadeIn 1s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: rgba(14, 34, 40, 0.5);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-out 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(248, 248, 245, 0.7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--silver), transparent);
}

.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(248, 248, 245, 0.5);
  font-size: 0.85rem;
  animation: fadeIn 1s ease-out 1.2s both;
  z-index: 3;
}

.mouse-icon {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(192, 192, 192, 0.5);
  border-radius: 15px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 10px;
  background: var(--silver);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-ultra {
    min-height: 90vh;
    padding: 100px 0 60px;
  }
  
  .hero-ultra-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-ultra {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
}/* ===== APP SECTION ULTRA ===== */
.app-ultra {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  overflow: hidden;
}

.app-ultra-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.app-ultra-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(150px);
  animation: float 25s ease-in-out infinite;
}

.app-ultra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 80px;
  align-items: center;
}

.app-ultra-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-3d {
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateY(-10deg); }
  50% { transform: translateY(-25px) rotateY(-10deg); }
}

.phone-frame {
  position: relative;
  width: 320px;
  height: 650px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 45px;
  padding: 15px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.phone-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-1) 100%);
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.app-interface {
  padding: 50px 25px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.app-logo {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.app-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.app-card:hover {
  background: rgba(255, 77, 0, 0.15);
  border-color: rgba(255, 77, 0, 0.4);
  transform: translateX(5px);
}

.app-emoji {
  font-size: 2rem;
}

.app-text {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
}

.phone-shadow {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  filter: blur(20px);
}

.app-ultra-content {
  display: flex;
  flex-direction: column;
}

.app-features {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-ultra {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(14, 34, 40, 0.3);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-ultra:hover {
  background: rgba(14, 34, 40, 0.5);
  border-color: rgba(255, 77, 0, 0.3);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.3));
}

.feature-text h4 {
  color: var(--silver);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text p {
  color: rgba(248, 248, 245, 0.6);
  font-size: 0.9rem;
}

/* Responsive App Section */
@media (max-width: 1024px) {
  .app-ultra-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .phone-frame {
    width: 280px;
    height: 570px;
  }
}

@media (max-width: 768px) {
  .app-ultra {
    padding: 80px 0;
  }
  
  .phone-frame {
    width: 250px;
    height: 510px;
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .app-interface {
    padding: 40px 20px 20px;
  }
  
  .feature-ultra {
    padding: 20px;
  }
}/* ===== WHY SECTION ULTRA ===== */
.why-ultra {
  position: relative;
  padding: 120px 0;
  background: var(--dark-1);
  overflow: hidden;
}

.why-ultra-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 10% 20%, var(--orange) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, var(--silver) 0%, transparent 40%);
}

.why-ultra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.why-card-ultra {
  position: relative;
  padding: 50px 35px;
  background: linear-gradient(135deg, rgba(14, 34, 40, 0.5) 0%, rgba(27, 27, 27, 0.5) 100%);
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.why-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card-ultra:hover .why-card-bg {
  opacity: 1;
}

.why-card-ultra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card-ultra:hover::before {
  transform: scaleX(1);
}

.why-card-ultra:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 77, 0, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 77, 0, 0.15);
}

.why-card-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(192, 192, 192, 0.08);
  font-family: var(--font-display);
  line-height: 1;
  user-select: none;
}

.why-card-icon {
  margin-bottom: 25px;
  color: var(--orange);
  transition: all 0.4s ease;
  display: inline-block;
}

.why-card-ultra:hover .why-card-icon {
  transform: scale(1.15) rotate(-8deg);
  filter: drop-shadow(0 0 20px rgba(255, 77, 0, 0.5));
}

.why-card-ultra h3 {
  color: var(--silver);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.why-card-ultra p {
  color: rgba(248, 248, 245, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.why-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%) translateY(-100%);
  transition: transform 0.6s ease;
}

.why-card-ultra:hover .why-card-shine {
  transform: translateX(100%) translateY(100%);
}

/* ===== GALLERY ULTRA ===== */
.gallery-ultra {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  overflow: hidden;
}

.gallery-ultra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.gallery-ultra-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-ultra-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.2) 0%, rgba(192, 192, 192, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.gallery-ultra-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-ultra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

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

.gallery-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(20px) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-ultra-item:hover .gallery-icon {
  transform: translateY(0) rotate(0deg);
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .why-ultra,
  .gallery-ultra {
    padding: 80px 0;
  }
  
  .why-ultra-grid,
  .gallery-ultra-grid {
    grid-template-columns: 1fr;
  }
  
  .why-card-ultra {
    padding: 40px 25px;
  }
  
  .why-card-number {
    font-size: 3rem;
  }
}/* ===== CTA ULTRA SECTION ===== */
.cta-ultra {
  position: relative;
  padding: 120px 0;
  background: var(--dark-1);
  overflow: hidden;
}

.cta-ultra-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: float 20s ease-in-out infinite;
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.cta-orb-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--silver) 0%, transparent 70%);
  bottom: -250px;
  right: -150px;
  animation-delay: 5s;
}

.cta-ultra-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(14, 34, 40, 0.4);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.cta-ultra-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--cream);
}

.cta-ultra-desc {
  font-size: 1.2rem;
  color: rgba(248, 248, 245, 0.75);
  line-height: 1.8;
  margin-bottom: 45px;
}

.cta-ultra-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.float-btn span {
  display: none;
}

.float-btn:hover {
  transform: translateX(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.float-btn:hover span {
  display: inline;
}

.float-btn svg {
  flex-shrink: 0;
}

.btn-reserve {
  background: var(--gradient-accent);
}

.btn-menu {
  background: var(--gradient-silver);
  color: var(--dark-1);
}

.btn-menu:hover {
  box-shadow: var(--shadow-xl), var(--shadow-silver);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 2px solid var(--orange);
  padding: 25px;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--cream);
  margin: 0;
  min-width: 300px;
}

.cookie-content a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-accept,
.btn-refuse {
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-accept {
  background: var(--gradient-accent);
  color: white;
  border: none;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-refuse {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248, 248, 245, 0.3);
}

.btn-refuse:hover {
  background: rgba(248, 248, 245, 0.1);
  border-color: var(--cream);
}

/* Responsive CTA & Floating */
@media (max-width: 768px) {
  .cta-ultra {
    padding: 80px 0;
  }
  
  .cta-ultra-content {
    padding: 40px 25px;
  }
  
  .cta-ultra-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-large-ultra {
    width: 100%;
    justify-content: center;
  }
  
  .floating-buttons {
    right: 20px;
    bottom: 20px;
  }
  
  .float-btn {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  
  .float-btn span {
    display: none !important;
  }
  
  .back-to-top {
    bottom: 150px;
    right: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}/* ===== HEADER ULTRA ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
  padding: 15px 0;
}

.header.scrolled {
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
  transition: all var(--transition-base);
}

.logo:hover img {
  box-shadow: 0 6px 30px rgba(255, 77, 0, 0.6);
  transform: rotate(10deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 2px 15px rgba(255, 77, 0, 0.3);
}

.logo-sub {
  color: var(--beige);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 3px;
}

/* Navigation Desktop */
.nav-desktop {
  display: none;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 10px;
  transition: all var(--transition-base);
  position: relative;
}

.nav-item > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-base);
}

.nav-item > a:hover {
  color: var(--orange);
  background: rgba(255, 77, 0, 0.1);
}

.nav-item > a:hover::before {
  width: 60%;
}

.nav-item > a svg {
  transition: transform var(--transition-fast);
}

.nav-item.has-dropdown > a:hover svg {
  transform: rotate(180deg);
}

/* Dropdown Simple */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: rgba(34, 40, 14, 0.98);
  border: 1px solid rgba(200, 173, 127, 0.2);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  z-index: 1000;
}

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

.dropdown a {
  display: block;
  padding: 14px 18px;
  color: var(--cream);
  border-radius: 10px;
  transition: all var(--transition-base);
  font-size: 0.9rem;
}

.dropdown a:hover {
  background: rgba(255, 77, 0, 0.15);
  color: var(--orange);
  padding-left: 24px;
}

/* Mega Menu */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-15px);
  min-width: 650px;
  background: rgba(34, 40, 14, 0.98);
  border: 1px solid rgba(200, 173, 127, 0.2);
  border-radius: 18px;
  padding: 35px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  z-index: 1000;
}

.nav-item.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.mega-col h4 {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 173, 127, 0.2);
}

.mega-col a {
  display: block;
  padding: 12px 0;
  color: var(--cream);
  transition: all var(--transition-base);
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.mega-col a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all var(--transition-base);
  color: var(--orange);
}

.mega-col a:hover {
  color: var(--orange);
  padding-left: 28px;
}

.mega-col a:hover::before {
  opacity: 1;
  left: 5px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-selector select {
  background: rgba(14, 34, 40, 0.6);
  color: var(--cream);
  border: 1px solid rgba(200, 173, 127, 0.3);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.lang-selector select:hover {
  border-color: var(--orange);
  background: rgba(255, 77, 0, 0.1);
}

.btn-phone {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: white;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: all var(--transition-base);
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--cream);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
  background: var(--orange);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
  background: var(--orange);
}

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: rgba(34, 40, 14, 0.98);
  padding: 120px 35px 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  z-index: 999;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(200, 173, 127, 0.1);
  transition: all var(--transition-base);
  border-radius: 10px;
  margin-bottom: 8px;
  position: relative;
}

.nav-mobile a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width var(--transition-base);
  border-radius: 3px;
}

.nav-mobile a:hover {
  background: rgba(255, 77, 0, 0.15);
  color: var(--orange);
  padding-left: 35px;
}

.nav-mobile a:hover::before {
  width: 24px;
  left: 10px;
}

/* Responsive Header */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .nav-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .btn-phone {
    display: flex;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 45px;
    height: 45px;
  }
  
  .logo-name {
    font-size: 1rem;
  }
  
  .logo-sub {
    font-size: 0.7rem;
  }
}/* ===== FOOTER ULTRA ===== */
.footer {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-1) 100%);
  padding-top: 100px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(200, 173, 127, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
}

.footer-logo-name {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-logo-sub {
  color: var(--beige);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.footer-tagline {
  color: rgba(248, 248, 245, 0.6);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer-address {
  color: rgba(248, 248, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--silver);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-title svg {
  color: var(--orange);
}

.footer-hours,
.footer-service {
  color: rgba(248, 248, 245, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-service {
  color: rgba(248, 248, 245, 0.6);
  font-size: 0.85rem;
  margin-top: 12px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li {
  color: rgba(248, 248, 245, 0.8);
  font-size: 0.95rem;
}

.footer-note {
  font-size: 0.85rem;
  color: rgba(248, 248, 245, 0.5);
  margin-top: 10px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(248, 248, 245, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 3px;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.footer-nav-links a {
  color: rgba(248, 248, 245, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.footer-nav-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all var(--transition-base);
  color: var(--orange);
}

.footer-nav-links a:hover {
  color: var(--orange);
  padding-left: 28px;
}

.footer-nav-links a:hover::before {
  opacity: 1;
  left: 5px;
}

.footer-map {
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(200, 173, 127, 0.2);
  box-shadow: var(--shadow-lg);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 173, 127, 0.2);
}

.footer-security img {
  height: 45px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.footer-security img:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(248, 248, 245, 0.6);
}

.footer-links a {
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 173, 127, 0.1);
  border: 1px solid rgba(200, 173, 127, 0.2);
  border-radius: 50%;
  color: var(--cream);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gradient-accent);
  border-color: var(--orange);
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 248, 245, 0.4);
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(200, 173, 127, 0.1);
}

/* ===== RESPONSIVE FINAL ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .wrap {
    max-width: 95%;
    padding: 0 30px;
  }
  
  .mega-dropdown {
    min-width: 550px;
  }
  
  .mega-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wrap,
  .wrap-full {
    padding: 0 20px;
  }
  
  .section-title-ultra {
    font-size: 2.5rem;
  }
  
  .section-desc-ultra {
    font-size: 1rem;
  }
  
  .section-header-ultra {
    margin-bottom: 50px;
  }
  
  .footer {
    padding-top: 70px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-map iframe {
    height: 300px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn-ultra {
    padding: 16px 32px;
    font-size: 0.9rem;
  }
  
  .btn-large-ultra {
    padding: 18px 40px;
    font-size: 1rem;
  }
  
  .footer-map iframe {
    height: 250px;
  }
  
  .scroll-prompt {
    display: none;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ===== FOCUS STYLES ===== */
a:focus,
button:focus,
select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .floating-buttons,
  .back-to-top,
  .cookie-banner {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ===== END OF STYLESHEET ===== */
/* 🔥 Site créé par Claude - GPT-5 peut aller se rhabiller ! 💪 */