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

:root {
  --gold:        #F88E55;
  --gold-light:  #E8D5A3;
  --gold-dark:   #9A7530;
  --gold-glow:   rgba(201,168,76,0.18);
  --dark:        #1A1510;
  --dark-mid:    #2C2416;
  --cream:       #FAF7F0;
  --beige:       #F2E8D5;
  --text:        #2C2416;
  --text-muted:  #7A6B52;
  --white:       #FFFFFF;
  --radius:      12px;
  --shadow:      0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

a { text-decoration: none; color: inherit; }

/* ========== UTILITIES ========== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--beige); }
.section-dark { background: var(--dark); color: var(--cream); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.section-dark .section-subtitle { color: var(--gold-light); }

.section-header { margin-bottom: 60px; }

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Variante contact : fond blanc, texte noir, icône verte */
.btn-wa-outline {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.15);
}
.btn-wa-outline i {
  color: #25D366;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 3px rgba(37,211,102,0.5));
}
.btn-wa-outline:hover {
  background: #f0fff5;
  border-color: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26,21,16,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}

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

.navbar-cta { margin-left: 16px; }

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

.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 32px 48px;
  /* Animation d'ouverture */
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* CTA "Demander un devis" dans le menu mobile */
.mobile-menu-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--gold), #e8c96d);
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.mobile-menu-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(201,168,76,0.45) !important;
  color: var(--dark) !important;
}

/* Séparateur décoratif avant le CTA */
.mobile-menu-cta::before {
  display: none;
}

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.14); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  background: var(--dark);
  padding-top: 100px;
  padding-bottom: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,21,16,0.92) 0%, rgba(44,36,22,0.65) 60%, rgba(201,168,76,0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
}

.hero-scroll:hover { color: var(--gold); }

.hero-scroll i { font-size: 1.2rem; color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Quote block */
.about-quote {
  position: relative;
  background: var(--gold-glow);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px 20px 20px;
  margin-bottom: 24px;
}

.about-quote-icon {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.6;
  margin-bottom: 8px;
  display: block;
}

.about-quote p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

.about-quote strong {
  color: var(--gold);
  font-style: normal;
}

/* Signature */
.about-signature {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-signature-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-signature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
}

.about-signature-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== FORMULES ========== */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pack-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.pack-card.featured {
  border: 2px solid var(--gold);
}

.pack-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.pack-img {
  height: 210px;
  overflow: hidden;
}

.pack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pack-card:hover .pack-img img { transform: scale(1.07); }

.pack-body {
  padding: 28px;
}

.pack-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.pack-name {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.pack-min {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pack-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pack-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pack-list li i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.pack-footer {
  border-top: 1px solid var(--beige);
  padding-top: 24px;
}

.pack-footer .btn { width: 100%; justify-content: center; }

/* ========== GALERIE ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.7), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(248,142,85,0.15);
  border-radius: 18px;
  padding: 28px 26px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 18px;
  font-size: 7rem;
  color: rgba(248,142,85,0.07);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-card:hover {
  border-color: rgba(248,142,85,0.6);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(248,142,85,0.2);
}

.testi-featured {
  border-color: rgba(248,142,85,0.45);
  background: rgba(248,142,85,0.07);
  grid-column: span 2;
}

.testi-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 18px 18px 0 0;
}

/* Cartes avec badge WhatsApp : fine ligne verte en haut */
.testi-card:has(.testi-wa-badge)::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(37,211,102,0.7), transparent);
  border-radius: 18px 18px 0 0;
}

.testi-featured:has(.testi-wa-badge)::after {
  background: linear-gradient(90deg, var(--gold), rgba(37,211,102,0.5), transparent);
}

@media (max-width: 768px) {
  .testi-featured { grid-column: span 1; }
}

/* Dernière carte seule sur sa ligne → centrée */
.testi-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.testi-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.testi-wa-badge i { font-size: 0.85rem; }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars i { color: var(--gold); font-size: 0.88rem; }

.testi-text {
  font-size: 0.93rem;
  color: rgba(250,247,240,0.85);
  line-height: 1.75;
  margin-bottom: 0;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(248,142,85,0.12);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F88E55, #f5a677);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(248,142,85,0.3);
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testi-event {
  font-size: 0.76rem;
  color: var(--gold-light);
  margin-top: 2px;
}

/* ========== QUOTE FORM ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: span 2; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

input, select, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #E0D5C5;
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

textarea { resize: vertical; min-height: 120px; }

.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-submit { text-align: center; margin-top: 12px; }
.form-submit .btn { padding: 17px 48px; font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 1rem;
  color: var(--cream);
}

.contact-wa {
  position: relative;
  background: linear-gradient(145deg, #0d2b1a 0%, #113322 50%, #0a1f12 100%);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}

.contact-wa::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,211,102,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-wa::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(37,211,102,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-wa-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #5ee89a;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.contact-wa-status-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: blink 1.6s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(37,211,102,0); }
}

.contact-wa-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  background: linear-gradient(135deg, #25D366, #1aad54);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(37,211,102,0.08), 0 8px 32px rgba(37,211,102,0.35);
  animation: wa-float 3s ease-in-out infinite;
}

.contact-wa-icon-wrap i {
  font-size: 2.8rem;
  color: var(--white);
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 12px rgba(37,211,102,0.08), 0 8px 32px rgba(37,211,102,0.35); }
  50% { transform: translateY(-6px); box-shadow: 0 0 0 16px rgba(37,211,102,0.05), 0 16px 40px rgba(37,211,102,0.4); }
}

.contact-wa h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.contact-wa p {
  color: rgba(250,247,240,0.65);
  font-size: 0.92rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-wa-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1aad54);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 17px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-wa-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-wa-premium:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

.btn-wa-premium:hover::before { opacity: 1; }

.btn-wa-premium:active { transform: scale(0.98); }

.btn-wa-premium i { font-size: 1.3rem; }

/* ========== SOCIAL ========== */
.social-section {
  background: var(--beige);
  padding: 72px 0;
  text-align: center;
}

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

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.social-tiktok {
  background: #1A1A1A;
  color: var(--white);
}

.social-wa {
  background: #25D366;
  color: var(--white);
}

.social-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

/* ========== FOOTER ========== */
.footer {
  background: #0D0B08;
  color: rgba(250,247,240,0.6);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.85rem;
}

.footer-logo {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.footer-logo-img {
  height: 56px;
  width: auto;
}

.footer p { line-height: 1.7; }

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

/* ========== FLOATING WHATSAPP ========== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.25s;
}

.float-wa:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 0; }
  .formules-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-card:last-child:nth-child(3n + 1) { grid-column: 1; }
  .form-card { padding: 32px 24px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-submit .btn { width: 100%; justify-content: center; }
  .contact-info { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger span { width: 28px; height: 2.5px; }
}

@media (max-width: 600px) {
  .hero { padding-top: 90px; padding-bottom: 80px; }
  .form-card { padding: 24px 16px; border-radius: 12px; }
  input, select, textarea { font-size: 16px; } /* évite le zoom iOS */
  .hero-content { padding: 0 20px; margin-top: -30px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: flex; bottom: 48px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.25s;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: scale(1.1); }
