:root {
  /* Mode Sobre (Dark Mode) par défaut */
  --primary-gold: #F5E050;
  --secondary-gold: #D4AF37;
  --dark-gold: #B8860B;
  --light-gold: #F5E050;
  --charcoal: #F5F5DC;
  --charcoal-light: #4A4A4A;
  --sandwichomania-blue: #434A4B;
  --sandwichomania-blue-dark: #3B4142;
  --logo-bg: #2C2C2A;
  --logo-bg-dark: #262624;
  --cream: #252523;
  --cream-dark: #1F1F1D;
  --white: #1A1A18;
  --text-primary: #F5F5DC;
  --text-secondary: #D0D0B8;
  --text-light: #B8B8A0;
  
  /* Updated Design System - Mode Sobre */
  --primary-color: #E8C547;
  --secondary-color: #D4AF37;
  --secondary-hover: #F5E050;
  --accent-color: #B8860B;
  --text-color: #F5F5DC;
  --bg-color: #1A1A18;
  --bg-light: #252523;
  --bg-dark: #0F0F0E;
  --border-color: #3A3A38;
  
  /* Shadows & Effects - Mode Sobre */
  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(232, 197, 71, 0.3);
  
  /* Gradients - Mode Sobre */
  --gradient-primary: linear-gradient(135deg, #E8C547, #D4AF37);
  --gradient-hero: linear-gradient(135deg, rgba(26, 26, 24, 0.95), rgba(37, 37, 35, 0.9));
  --gradient-accent: linear-gradient(45deg, #F5E050, #E8C547);
  
  /* Design Tokens */
  --border-radius: 12px;
  --border-radius-small: 8px;
  --border-radius-large: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* Mode Sobre appliqué par défaut - ancien dark mode supprimé */

/* Styles spécifiques mode sobre appliqués directement */
.nav-link {
  color: #F5F5DC !important;
}

.nav-link:hover {
  color: #F5E050 !important;
}

.logo-text {
  color: #F5E050 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  color: #F5F5DC !important;
  border-color: #E8C547;
}

.service-item {
  background: linear-gradient(135deg, #3A3A38, #2F2F2D) !important;
  color: #F5F5DC !important;
  border: 1px solid #4A4A48;
}

.service-item:hover {
  background: linear-gradient(135deg, #E8C547, #D4AF37) !important;
  color: #1A1A18 !important;
}

.title-main {
  color: #F5F5DC !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-form-container {
  background: var(--bg-light) !important;
  border: 1px solid var(--border-color);
}

.form-title {
  color: #F5F5DC !important;
}

.form-group input,
.form-group textarea {
  background: var(--bg-color) !important;
  color: #F5F5DC !important;
  border: 2px solid var(--border-color) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light) !important;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.1) !important;
}

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

*:not(html):not(body) {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

/* Typography Classes */
.font-serif {
  font-family: 'Playfair Display', serif;
}

.font-sans {
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Theme Toggle Styles supprimés - Mode sobre par défaut */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2C2C2A;
  backdrop-filter: blur(10px);
  border: none;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: #2C2C2A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

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

.nav-logo:hover .logo-text {
  color: var(--secondary-hover) !important;
}

.logo {
  height: clamp(40px, 8vw, 75px);
  width: auto;
  border: none;
  border-radius: 0;
  object-fit: contain;
  background: none;
  padding: 0;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  outline: none;
}

.logo-slogan {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  font-weight: 400;
  color: var(--primary-gold);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section - Modern & Elegant - Full Height Responsive */
.hero {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Hero Badges Container */
.hero-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: clamp(1rem, 2vh, 1.8rem);
  animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 500;
  box-shadow: var(--shadow-gold);
}

.hero-title {
  margin-bottom: clamp(1rem, 2vh, 1.8rem);
  animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.title-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: clamp(0.3rem, 1vh, 0.5rem);
  text-shadow: 0 2px 4px rgba(47, 47, 47, 0.1);
}

.title-subtitle {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--primary-gold);
  font-style: italic;
  margin-left: 0.5rem;
}

.hero-description {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: clamp(1rem, 2.5vh, 2rem);
  animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.hero-features {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-item i {
  font-size: 1.1rem;
  color: var(--primary-gold);
  opacity: 0.8;
}

/* Hours Badge */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
}

.hours-badge i {
  color: var(--primary-color);
  font-size: 1rem;
}

.hours-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}

.hours-label {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-time {
  font-size: 0.85rem;
  color: var(--text-color);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
}

.hero-visual {
  position: relative;
  height: clamp(300px, 40vh, 550px);
  animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 12px 50px rgba(47, 47, 47, 0.2);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transition: var(--transition);
}

.image-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--primary-gold);
  border-radius: var(--border-radius-large);
  z-index: -1;
  opacity: 0.6;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: var(--gradient-primary);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: 15%;
  animation-delay: -2s;
}

.element-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: -4s;
}

.element-3 {
  top: 60%;
  right: 5%;
  animation-delay: -1s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.hero-scroll:hover {
  color: var(--primary-gold);
  transform: translateX(-50%) translateY(-3px);
  text-decoration: none;
}

.scroll-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
  }
  66% {
    transform: translateY(5px) rotate(240deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.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: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  border: 2px solid transparent;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  border-color: var(--primary-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--primary-gold);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover::after,
.btn-secondary:focus-visible::after {
  transform: scaleX(1);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  display: block;
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* À Propos */
.about {
  padding: 5rem 0;
  background: var(--bg-light);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-text p strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  min-width: 60px;
}

.feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature p {
  color: var(--text-light);
  margin: 0;
}

.about-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Simple Before/After */
.before-after-simple {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.before-after-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.transition-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease-in-out;
  animation: imageSwitch 4s ease-in-out infinite;
}

.image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-dark);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-medium);
  transition: all 0.8s ease-in-out;
  border: 1px solid var(--border-color);
}

@keyframes imageSwitch {
  0% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}

/* Stats Section - Chiffres clés animés */
.stats-section {
  margin-top: 7.5rem;
  padding: 1rem 0 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.8);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}

.stat-number::after {
  content: '+';
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 2px;
}

.stat-item:nth-child(2) .stat-number::after,
.stat-item:nth-child(3) .stat-number::after {
  display: none;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.stat-icon {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  color: var(--primary-gold);
  opacity: 0.3;
  font-size: 1.3rem;
  z-index: 1;
}

/* Animation des chiffres */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-item.animate .stat-number {
  animation: countUp 0.8s ease-out;
}

/* Responsive pour les stats */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1.2rem 0.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
  .stat-icon {
    font-size: 1rem;
    top: 0.6rem;
    right: 0.6rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .stat-icon {
    font-size: 0.9rem;
    top: 0.5rem;
    right: 0.5rem;
  }
  
  /* Responsive badges */
  .hero-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .hero-badge {
    justify-content: center;
    width: 100%;
  }
  
  .hours-badge {
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
  }
  
  .hours-badge i {
    order: -1;
    margin-right: auto;
  }
  
  .hours-text {
    text-align: center;
    flex: 1;
    margin-right: 1rem;
  }
  
  .hours-label {
    font-size: 0.7rem;
  }
  
  .hours-time {
    font-size: 0.8rem;
  }
}

/* Services - Professional Design */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: visible;
  margin-top: 35px;
  text-align: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(212, 175, 55, 0.2);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream-dark), var(--white));
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 1.5rem auto;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-medium);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-gold);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--primary-gold);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.service-item {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  color: var(--charcoal);
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--primary-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, var(--primary-gold), #C9A96E);
  color: white;
}

/* Services Footer */
.services-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.services-footer p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.menu-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.menu-link:hover {
  color: var(--charcoal);
  border-bottom-color: var(--primary-gold);
}

.service-card li:hover {
  color: var(--charcoal);
  padding-left: 2.2rem;
}

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

.gallery-grid {
  position: relative;
  min-height: 600px;
  margin-bottom: 3rem;
}

.gallery-page {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeInGrid 0.6s ease-out;
}

.gallery-page.active {
  display: grid;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 47, 47, 0.7), rgba(212, 175, 55, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-content {
  text-align: center;
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition);
}

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

.gallery-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.gallery-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-weight: 400;
  color: white;
}

.gallery-content i {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: var(--transition);
  color: white;
}

.gallery-item:hover .gallery-content i {
  opacity: 1;
  transform: scale(1.2);
}

/* Gallery Pagination */
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-prev,
.gallery-next {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.gallery-prev:hover,
.gallery-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.gallery-prev:disabled,
.gallery-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-soft);
}

.gallery-dots {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.gallery-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 12px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-small);
  cursor: pointer;
  transition: var(--transition);
  min-width: 80px;
}

.gallery-dot.active {
  border-color: var(--primary-gold);
  background: var(--cream-dark);
}

.gallery-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  transition: var(--transition);
}

.gallery-dot.active::before {
  background: var(--primary-gold);
}

.dot-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.gallery-dot.active .dot-label {
  color: var(--primary-gold);
  font-weight: 600;
}

.gallery-dot:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.gallery-dot:hover .dot-label {
  color: var(--primary-gold);
}

/* Section Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.scroll-animate.animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.scroll-animate.animate-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.scroll-animate.animate-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Gallery Animations */
@keyframes fadeInGrid {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Responsive */
@media (max-width: 968px) {
  .logo-text {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }
  
  .gallery-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-pagination {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  
  .gallery-dots {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .gallery-prev,
  .gallery-next {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .gallery-dot {
    min-width: 60px;
    padding: 6px 8px;
  }
  
  .dot-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .logo-text {
    font-size: 0.95rem;
  }
  
  .footer-logo .logo-text {
    font-size: 0.85rem;
  }
  
  .gallery-page {
    grid-template-columns: 1fr;
  }
  
  /* Lightbox mobile adjustments */
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 15px;
    right: 15px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-prev {
    left: -50px;
  }
  
  .lightbox-next {
    right: -50px;
  }
  
  .lightbox-counter {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    bottom: 25px;
  }
  
  /* Hero buttons tablet adjustments */
  .btn {
    font-size: 0.9rem;
    padding: 14px 26px;
  }
  
  .gallery-prev span,
  .gallery-next span {
    display: none;
  }
  
  .gallery-pagination {
    gap: 0.8rem;
    justify-content: space-between;
  }
  
  .gallery-prev,
  .gallery-next {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .gallery-dots {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.3rem;
  }
}

/* Google Rating Styles */
.google-rating {
  text-align: center;
  margin: 1rem auto 0;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  max-width: 600px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.rating-stars i {
  color: #FFD700;
  font-size: 1.25rem;
}

.rating-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.view-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: var(--border-radius-small);
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.9rem;
}

.view-all-reviews:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Responsive pour la note Google */
@media (max-width: 480px) {
  .mobile-break {
    display: block;
    margin-top: 0.25rem;
  }
}

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

.testimonials .section-title,
.testimonials .section-subtitle {
  color: white;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-item.visible {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.testimonial-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

/* Variation de couleurs cohérentes pour les avatars */
.testimonial-item:nth-child(2) .avatar-placeholder {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.testimonial-item:nth-child(3) .avatar-placeholder {
  background: #996F00;
  border-color: #996F00;
  color: white;
}

.testimonial-item:nth-child(4) .avatar-placeholder {
  background: #B8860B;
  border-color: #B8860B;
  color: var(--bg-dark);
}

.testimonial-item:nth-child(5) .avatar-placeholder {
  background: #D4AF37;
  border-color: #D4AF37;
  color: var(--bg-dark);
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.testimonial-text {
  opacity: 1 !important;
  visibility: visible !important;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: var(--accent-color);
}

.testimonial-text p {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonial-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-text span {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover,
.testimonial-prev:focus-visible,
.testimonial-next:focus-visible {
  background: white;
  color: var(--primary-color);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: white;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}

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

.google-map {
  margin-top: auto;
}

.google-map iframe {
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.5rem;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--secondary-hover);
  text-decoration: underline;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-title {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.form-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: #2C2C2A;
  color: white;
  padding: 2rem 0 1rem;
}

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-section ul li a:focus-visible {
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  border: none;
  outline: none;
}

.footer-logo .logo-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  outline: none;
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.footer-contact i {
  color: var(--primary-gold);
  width: 20px;
}

.footer-contact a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--charcoal);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

.dev-credit a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.lightbox-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  z-index: 2001;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}


#lightboxImage {
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.lightbox-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  z-index: 2002;
  white-space: nowrap;
}

.lightbox-caption {
  position: fixed;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: var(--primary-gold);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 2002;
  max-width: 80%;
  text-align: center;
  border: 1px solid rgba(232, 197, 71, 0.3);
  white-space: nowrap;
}

/* Force visibility for critical images */
img[data-force-visible] {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Hero Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
    gap: 60px;
  }
  
  .hero-features {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-visual {
    height: 450px;
    order: -1;
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .element-1 {
    top: 5%;
    right: 10%;
  }
  
  .element-2 {
    bottom: 25%;
    left: 5%;
  }
  
  .element-3 {
    top: 50%;
    right: 8%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero-container {
    gap: 30px;
    padding: 0 15px;
  }
  
  .hero-visual {
    height: 350px;
  }
  
  .title-main {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
  
  .title-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-image-wrapper {
    transform: rotate(0deg);
  }
  
  .hero-image-wrapper:hover {
    transform: scale(1.02);
  }
  
  .floating-elements {
    display: none;
  }
  
  .image-decoration {
    display: none;
  }
}

/* Desktop optimizations for lightbox */
@media (min-width: 821px) {
  .lightbox-prev {
    left: 30px;
  }
  
  .lightbox-next {
    right: 30px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Responsive Design */
@media (max-width: 820px) {
  html {
    font-size: 1.1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    padding: 1rem 0;
    width: 100%;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color) !important;
  }
  
  .nav-link:hover {
    color: var(--primary-gold) !important;
    background: var(--bg-light);
    padding-left: 1rem;
  }
  
  .nav-container {
    padding: 0 10px;
    width: 100%;
    max-width: 100vw;
  }
  
  .nav-logo {
    flex-shrink: 0;
    max-width: calc(100vw - 120px);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .nav-container > .hamburger {
    position: relative;
    z-index: 1003;
  }
  
  .logo {
    max-height: 35px;
  }
  
  .hamburger {
    display: flex;
    z-index: 1002;
    padding: 6px;
    margin-right: -6px;
    flex-shrink: 0;
  }
  
  .mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  
  .about-image {
    margin-top: 2rem; /* Espacement sur mobile */
  }
  
  .about-image .stats-section {
    margin-top: 1.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
  
  .contact-left {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
  }
  
  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
  
  .lightbox-counter {
    bottom: 20px;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .lightbox-caption {
    bottom: 60px;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  
  .footer-logo .logo-text {
    font-size: 0.75rem;
  }
  
  /* Extra small lightbox - maximize image space */
  .lightbox-close {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    top: 10px;
    right: 10px;
  }
  
  /* Move navigation buttons to bottom corners for more image space */
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 20px;
    transform: none;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }

  /* Counter in bottom center */
  .lightbox-counter {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  
  .lightbox-caption {
    bottom: 50px;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    max-width: 90%;
    white-space: normal;
    line-height: 1.2;
  }
  
  /* Maximize image size on mobile */
  #lightboxImage {
    max-width: 95vw;
    max-height: 82vh;
    object-fit: contain;
  }
  
  /* Hero buttons mobile adjustments */
  .btn {
    font-size: 0.85rem;
    padding: 12px 20px;
    gap: 0.5rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Gallery pagination adjustments for very small screens */
  .gallery-pagination {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .gallery-dots {
    gap: 0.2rem;
    flex-wrap: nowrap;
  }
  
  .gallery-dot {
    min-width: 45px;
    padding: 4px 6px;
    font-size: 0.75rem;
  }
  
  .dot-label {
    font-size: 0.6rem;
  }
}


/* Fullscreen lightbox optimization */
.lightbox:-webkit-full-screen {
  background: #000;
}

.lightbox:fullscreen {
  background: #000;
}

.lightbox:-webkit-full-screen #lightboxImage {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}

.lightbox:fullscreen #lightboxImage {
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
}

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

/* Press Link */
.press-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.press-link:hover {
  color: var(--charcoal);
  border-bottom-color: var(--primary-gold);
}

/* Press Modal */
.press-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.press-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid var(--border-color);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  color: var(--text-color);
  margin: 0;
  font-family: 'Cinzel', serif;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.modal-body > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: center;
}

.press-articles {
  display: grid;
  gap: 2rem;
}

.press-article {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.press-article:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
  background: var(--bg-color);
}

.press-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.press-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.press-info h3 {
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .press-article {
    flex-direction: column;
    text-align: center;
  }
  
  .press-image {
    width: 100%;
    max-width: 300px;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
}

/* Produits - pagination spéciale */
.gallery-page[data-page="3"].active {
  display: block !important;
  padding: 1rem;
}

.gallery-page[data-page="3"]:not(.active) {
  display: none !important;
}

/* Ensure products are visible when gallery page is active */
.gallery-page[data-page="3"].active .products-page.active {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-page[data-page="3"] .products-page {
  display: none !important;
}

.gallery-page[data-page="3"] .products-page.active {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Pagination des produits */
.products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0.8rem;
  background: rgba(37, 37, 35, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.products-nav-btn {
  background: var(--bg-light);
  border: 1px solid rgba(232, 197, 71, 0.2);
  color: var(--text-color);
  padding: 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.products-nav-btn:hover:not(:disabled) {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
}

.products-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.products-dots {
  display: flex;
  gap: 0.5rem;
}

.products-dot {
  background: var(--bg-light);
  border: 1px solid rgba(232, 197, 71, 0.2);
  color: var(--text-color);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.products-dot:hover {
  background: rgba(232, 197, 71, 0.1);
  border-color: rgba(232, 197, 71, 0.4);
}

.products-dot.active {
  background: var(--gradient-primary);
  border-color: var(--primary-gold);
  color: white;
  box-shadow: 0 3px 10px rgba(232, 197, 71, 0.3);
}

/* Pages des produits */
.products-page {
  display: none;
}

.products-page.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Force l'affichage de la première page par défaut pour debug */
.products-page[data-products-page="1"] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-page[data-page="3"] .gallery-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: none !important;
  border-radius: 0 !important;
  min-height: 140px !important;
  height: auto !important;
  width: auto !important;
  position: relative !important;
  padding: 0.8rem 0.5rem !important;
  margin: 0 !important;
  aspect-ratio: unset !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.gallery-page[data-page="3"] .gallery-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(232, 197, 71, 0.2);
  margin: 0 0 0.6rem 0;
  padding: 0;
}

.gallery-page[data-page="3"] .gallery-item:hover img {
  transform: scale(1.05);
  border-color: var(--primary-gold);
  box-shadow: 0 3px 12px rgba(232, 197, 71, 0.3);
}

.gallery-page[data-page="3"] .gallery-overlay {
  display: none;
}

.gallery-page[data-page="3"] .product-info {
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

.gallery-page[data-page="3"] .product-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .products-page.active {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .gallery-page[data-page="3"] .gallery-item img {
    width: 95px;
    height: 95px;
  }
  
  .gallery-page[data-page="3"] .product-info h4 {
    font-size: 0.85rem;
  }
  
  .products-pagination {
    padding: 0.6rem;
    gap: 0.8rem;
  }
  
  .products-nav-btn {
    width: 30px;
    height: 30px;
    padding: 0.5rem;
  }
  
  .products-dot {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
}

/* Mobile/Desktop text visibility */
.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

@media (max-width: 480px) {
  .gallery-page[data-page="3"] .products-page.active,
  .gallery-page[data-page="3"].active .products-page.active,
  .products-page.active {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8rem !important;
  }
  
  .gallery-page[data-page="3"] .gallery-item img {
    width: 75px;
    height: 75px;
  }
  
  .gallery-page[data-page="3"] .product-info h4 {
    font-size: 0.75rem;
  }
  
  .mobile-text {
    display: inline;
  }
  
  .desktop-text {
    display: none;
  }
}