/* Espaço Regina Estética - CSS Pure */
/* Fichier CSS principal pour toutes les pages */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;600;700&display=swap');

/* === VARIABLES DE COULEURS === */
:root {
  /* Couleurs principales */
  --lilac: hsl(300, 40%, 70%);
  --lilac-dark: hsl(300, 35%, 55%);
  --soft-purple: hsl(300, 25%, 60%);
  --gold: hsl(45, 100%, 50%);
  --gold-dark: hsl(45, 95%, 45%);
  --light-gold: hsl(45, 100%, 80%);
  
  /* Fond et texte */
  --background: #ffffff;
  --foreground: hsl(300, 20%, 12%);
  --foreground-muted: hsl(300, 18%, 35%);
  --foreground-light: hsl(300, 15%, 50%);
  
  /* Cartes et sections */
  --card-bg: hsl(300, 5%, 98%);
  --card-border: hsl(300, 6%, 92%);
  
  /* Bordures */
  --border-color: hsl(300, 8%, 88%);
  
  /* Ombres */
  --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.12), 0 3px 6px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px -4px rgba(0, 0, 0, 0.15), 0 4px 8px -4px rgba(0, 0, 0, 0.10);
  
  /* Typographie */
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', Georgia, serif;
}

/* === RESET ET BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }

p { margin-bottom: 1rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* === NAVIGATION === */
.navbar {
  position: relative;
  z-index: 50;
  background: transparent;
  border-bottom: none;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--lilac) 10%, 
    var(--gold) 30%, 
    var(--lilac) 50%, 
    var(--gold) 70%, 
    var(--lilac) 90%, 
    transparent 100%
  );
  opacity: 0.4;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar-logo {
  height: 4.5rem;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(202, 158, 91, 0.3));
  transition: all 0.4s ease;
}

.navbar-logo:hover {
  filter: drop-shadow(0 0 20px rgba(202, 158, 91, 0.7));
  transform: scale(1.05);
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.navbar-link {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--lilac) 50%, var(--gold) 100%);
  width: 0;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px;
}

.navbar-link:hover {
  color: var(--gold);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-link.active {
  color: var(--gold);
  font-weight: 600;
}

.btn-whatsapp-nav {
  background: linear-gradient(135deg, #FFDF00 0%, #FFD700 25%, #DAA520 50%, #FFD700 75%, #FFDF00 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-whatsapp-nav:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--card-bg);
}

.mobile-menu-icon {
  width: 1.375rem;
  height: 1.375rem;
  stroke: var(--foreground);
  stroke-width: 2;
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 40;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-link {
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background: var(--card-bg);
  color: var(--gold);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.6;
  animation: dots-fade 4s ease-in-out infinite;
}

@keyframes dots-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  background: linear-gradient(110deg, #B8860B 0%, #DAA520 25%, #FFD700 35%, #FFF8DC 45%, #FFD700 55%, #DAA520 75%, #B8860B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: gold-shimmer 3s ease-in-out infinite;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--foreground-muted);
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
  padding: 0 0.5rem;
}

@keyframes gold-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FFDF00 0%, #FFD700 50%, #DAA520 100%);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-cta:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* === SECTIONS === */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 162, 200, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-light {
  background: white;
}

.section-pattern {
  background: var(--card-bg);
  position: relative;
}

.section-pattern.cta-section {
  background: linear-gradient(135deg, rgba(46, 46, 58, 0.95) 0%, rgba(64, 58, 74, 0.95) 100%);
  color: #ffffff;
}

.section-pattern.cta-section .section-title {
  color: #ffffff;
}

.section-pattern.cta-section .section-subtitle,
.section-pattern.cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

.section-compact-top {
  padding-top: 2.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--lilac) 50%, var(--gold) 80%, transparent 100%);
  border-radius: 10px;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: var(--foreground-muted);
  max-width: 42rem;
  margin: 0 auto;
}

/* === CARTES DE SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.contact-grid .service-card {
  height: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.contact-info-column,
.contact-location-column {
  display: grid;
  gap: 1.5rem;
}

.contact-info-card {
  text-align: center;
}

.contact-info-card .feature-description {
  margin-bottom: 1.25rem;
}

.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 1.0625rem;
  color: var(--foreground-muted);
}

.contact-photo-card picture {
  display: block;
  margin: -2rem -2rem 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.contact-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.contact-map-card .map-embed {
  margin: 1rem 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(200, 162, 200, 0.2);
}

.contact-map-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-card-media picture {
  display: block;
  margin: -2rem -2rem 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.contact-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.contact-card-map .map-embed {
  margin: 1rem 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(200, 162, 200, 0.2);
}

.contact-card-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

.contact-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-price-card {
  padding: 0;
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

.service-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 162, 200, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lilac);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card * {
    transition: none !important;
    animation: none !important;
  }
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-card-description {
  color: var(--foreground-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(110deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.service-card-btn {
  display: inline-block;
  background: var(--lilac);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card-btn:hover {
  background: var(--lilac-dark);
  transform: translateY(-2px);
}

/* === POURQUOI NOUS CHOISIR === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  position: relative;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(200, 162, 200, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--foreground-muted);
  line-height: 1.6;
}

.why-grid-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.why-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: linear-gradient(135deg, hsl(300, 40%, 75%), hsl(300, 35%, 65%));
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--gold);
}

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

/* === BOUTON WHATSAPP FLOTTANT === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background: #128C7E;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  fill: white;
}

/* === RESPONSIVE === */
@media (min-width: 1024px) {
  .navbar-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .section {
    padding: 3rem 0;
  }

  .section .container > * + * {
    margin-top: 2.5rem;
  }

  .section-compact-top {
    padding-top: 1.75rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-column,
  .contact-location-column {
    gap: 1.25rem;
  }

  .why-grid-top,
  .why-grid-bottom {
    grid-template-columns: 1fr;
  }

  .why-grid-bottom {
    max-width: 100%;
  }

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

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .contact-card-media picture {
    margin: -1.5rem -1.5rem 1rem;
    border-radius: 1rem;
  }

  .contact-photo-card picture {
    margin: -1.5rem -1.5rem 1rem;
  }

  .contact-card-media img,
  .contact-card-map iframe {
    height: 200px;
  }

  .contact-photo-card img,
  .contact-map-card iframe {
    height: 200px;
  }
  
  .service-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-price-card {
    position: static;
  }
  
  .hero {
    min-height: 60vh;
    padding: 3rem 0;
  }
  
  .navbar-content {
    height: 4rem;
  }
  
  .navbar-logo {
    height: 3.5rem;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-btn {
    width: 3rem;
    height: 3rem;
  }
}

/* === UTILITAIRES === */
.text-center { text-align: center; }
.text-gold {
  background: linear-gradient(110deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* === GALERIE PHOTOS MODERNE === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(200, 162, 200, 0.3);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--light-gold);
}

.gallery-overlay p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
  }
}

/* === FOOTER MODERNE LUXUEUX 2026 === */
.footer-modern {
  position: relative;
  background: linear-gradient(135deg, #2D1B3D 0%, #1a0e26 100%);
  color: #f0e6f6;
  padding-top: 3rem;
  overflow: hidden;
  margin-top: 0;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--lilac) 20%, 
    var(--gold) 40%, 
    var(--lilac) 60%, 
    var(--gold) 80%, 
    transparent 100%
  );
  opacity: 0.6;
}

.footer-wave {
  display: none;
}

.footer-luxury-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 0 0 3rem;
  position: relative;
  z-index: 1;
}

.footer-luxury-grid::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 162, 200, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(200, 162, 200, 0.3));
}

.footer-brand-title {
  font-family: 'Montserrat', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--light-gold);
  letter-spacing: 0.5px;
}

.footer-brand-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
  color: #d4c4e0;
  font-style: italic;
}

.footer-brand-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  color: #c4b4d0;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-gold);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-social-link:hover {
  background: var(--light-gold);
  color: #1a0e26;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 16px rgba(230, 190, 138, 0.4);
}

.footer-title {
  font-family: 'Montserrat', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
  color: var(--light-gold);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--light-gold), transparent);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: #c4b4d0;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-list a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--light-gold);
  transition: width 0.3s ease;
}

.footer-list a:hover {
  color: var(--light-gold);
  transform: translateX(4px);
}

.footer-list a:hover::before {
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #c4b4d0;
  font-weight: 300;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--light-gold);
}

.footer-contact-item a {
  color: #c4b4d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--light-gold);
}

.footer-hours {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border-left: 3px solid var(--light-gold);
}

.footer-hours p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: #c4b4d0;
  font-weight: 300;
}

.footer-hours strong {
  color: var(--light-gold);
  font-weight: 500;
}

.footer-bottom-modern {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-modern .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-modern p {
  margin: 0;
  font-size: 0.875rem;
  color: #b4a4c0;
  font-weight: 300;
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}

.footer-love svg {
  color: #ff6b9d;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-luxury-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-luxury-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding: 3rem 0 2rem;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
    grid-column: 1 / -1;
  }
  
  .footer-logo {
    width: 130px;
    height: 130px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-title {
    text-align: left;
  }
  
  .footer-title::after {
    left: 0;
    transform: none;
  }
  
  .footer-list {
    text-align: left;
  }
  
  .footer-list a:hover {
    transform: none;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
    max-width: 360px;
  }
  
  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }
  
  .footer-bottom-modern .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .footer-luxury-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-contact {
    grid-column: auto;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-list {
    text-align: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}

/* Améliorations globales luxueuses */
.section {
  transition: all 0.3s ease;
}

.section-header {
  position: relative;
  padding-bottom: 1rem;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--light-gold), transparent);
  border-radius: 2px;
}

/* === AMÉÉLIORATIONS LUXE 2026 === */

/* Transitions plus fluides globalement */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet glassmorphism pour les cartes hover */
.service-card:hover {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(200, 162, 200, 0.3);
}

/* Boutons avec effet de brillance */
.hero-cta,
.btn-whatsapp-nav {
  position: relative;
  overflow: hidden;
}

.hero-cta::before,
.btn-whatsapp-nav::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.hero-cta:hover::before,
.btn-whatsapp-nav:hover::before {
  animation: shine 1.5s ease-in-out infinite;
  opacity: 1;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Ombres plus douces et réalistes */
.service-card {
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(200, 162, 200, 0.1),
    0 4px 6px -2px rgba(200, 162, 200, 0.05);
}

.service-card:hover {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px -5px rgba(200, 162, 200, 0.15),
    0 10px 10px -5px rgba(200, 162, 200, 0.08);
}

/* Cartes avec bordure brillante au hover */
.service-card {
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), var(--lilac), var(--soft-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  opacity: 1;
}

/* Footer avec plus de profondeur */
.footer-modern {
  box-shadow: 0 -10px 30px -10px rgba(200, 162, 200, 0.1);
}

/* Amélioration du WhatsApp float */
.whatsapp-float {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-btn {
  box-shadow: 
    0 4px 6px rgba(37, 211, 102, 0.15),
    0 10px 15px rgba(37, 211, 102, 0.1);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 8px 12px rgba(37, 211, 102, 0.25),
    0 15px 25px rgba(37, 211, 102, 0.15);
}

/* Animation de pulse subtile pour les CTA */
@keyframes pulse-soft {
  0%, 100% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 8px 16px rgba(218, 165, 32, 0.2);
  }
}

.hero-cta {
  animation: pulse-soft 3s ease-in-out infinite;
}

/* Navbar avec effet de profondeur */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(200, 162, 200, 0.08);
}

/* Footer links avec transition fluide */
.footer-list a {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
}

.footer-list a::before {
  content: '→';
  position: absolute;
  left: -1.25rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-list a:hover {
  padding-left: 1.5rem;
  color: var(--gold);
}

.footer-list a:hover::before {
  opacity: 1;
  left: 0;
}

/* Images avec effet de zoom doux */
.service-card-image,
.gallery-image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image,
.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Boutons avec effet de profondeur */
.service-card-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-btn:hover::after {
  opacity: 1;
}

/* Scrollbar personnalisée (Chrome/Edge/Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--card-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lilac), var(--soft-purple));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--soft-purple), var(--lilac-dark));
}

/* Selection de texte personnalisée */
::selection {
  background: var(--gold);
  color: white;
}

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

/* Effet de focus accessible et élégant */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* Amélioration des transitions de page */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  * {
    transition-duration: 0.3s;
  }
}

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
