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

:root {
  --bg-page: #F4EEE3;
  --bg-card: #FFFFFF;
  --text-primary: #111111;
  --text-secondary: #5F5F5F;
  --text-muted: #7A7A7A;
  --accent: #F2B64A;
  --accent-dark: #A36A1B;
  --border-light: #E9E1D3;
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 54px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.12);
  --radius: 28px;
  --radius-md: 18px;
  --gradient: linear-gradient(135deg, rgba(17,17,17,0.95) 0%, rgba(68,68,68,0.85) 100%);
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Electromagnetic', 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

h1, h2, h3, .logo {
  font-family: 'Electromagnetic', 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
.h1-hero { font-size: clamp(3.5rem, 7vw, 6.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 span, h1 span { color: var(--accent); }
.logo span:not(.id-part):not(.digicom-part) { color: var(--accent); }

.id-part {
  color: #111;
}
.digicom-part { color: var(--accent); }


.brand-name {
  display: inline;
}

.digicom-part {
  color: #e6a817; /* ton orange */
}


.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-dark);
  display: inline-block;
  margin-bottom: 1rem;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 225, 211, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-sm);
}

header .container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  height: 90px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
}

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

nav ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 0.8rem;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 999px;
}

nav ul li a:hover {
  color: #111;
  background: rgba(242, 182, 74, 0.15);
}

nav ul li a.active {
  color: #111;
  background: rgba(242, 182, 74, 0.18);
}


.btn-rdv {
  background: var(--text-primary);
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-rdv:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* BUTTONS */
.btn-primary {
  background: var(--gradient);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

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

/* HERO */
.hero {
  padding: 5rem 0 6rem;
  background: var(--bg-page);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -60px;
  background: rgba(242, 182, 74, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-copy p {
  margin: 2rem 0 2.5rem;
  color: var(--text-secondary);
  max-width: 560px;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-carousel {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #f4eee3;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255,255,255,0.8);
}

.hero-note {
  grid-column: 1 / span 2;
  align-self: end;
  padding: 1.2rem 1.4rem;
  background: #111;
  color: white;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  max-width: 360px;
  font-size: 0.95rem;
}

.hero-buttons .btn-outline {
  border-color: #111;
  color: #111;
}

.hero-buttons .btn-outline:hover {
  background: #111;
  color: white;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* PAGE HEADER */
.page-header {
  padding: 5rem 0 3rem;
}

.page-header h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-header p,
.section-header p {
  color: var(--text-secondary);
  max-width: 700px;
  font-size: 1rem;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* RECENT WORK */
.recent-work {
  padding: 5rem 0;
  background: var(--bg-page);
}

/* CTA SECTION */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(242, 182, 74, 0.08) 0%, rgba(244, 238, 227, 0.95) 100%);
  text-align: center;
}

/* SERVICES */
.services {
  background: var(--bg-page);
  padding: 6rem 0 5rem;
  position: relative;
  min-height: 660px;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.service-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  background: #f4eee3;
}

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

.service-content {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--accent);
}

.service-card p {
  margin-bottom: 1.5rem;
  max-width: 320px;
  line-height: 1.6;
}

/* GALLERY */
.gallery-section {
  padding: 4rem 0;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn svg {
  flex-shrink: 0;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

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

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  background: #f0ebe5;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  padding: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

#lbImage {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.lb-close { top: 20px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--accent);
  color: black;
}

/* ABOUT */
.about-story {
  padding: 0 0 4rem;
}

.team-section {
  padding: 4rem 0 3rem;
  background: var(--bg-page);
}

.philosophy {
  padding: 4rem 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-secondary);
}

.about-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.team-img img {
  height: 340px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-placeholder {
  background: var(--accent-light);
  border-radius: var(--radius);
  height: 450px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgODAwIDYwMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0iI2UyYzdiMSIvPjxjaXJjbGUgY3g9IjQwMCIgY3k9IjMwMCIgcj0iMTUwIiBmaWxsPSIjYjk3YzRlIiBmaWxsLW9wYWNpdHk9IjAuMTUiLz48L3N2Zz4=');
  background-size: cover;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.center-btn {
  text-align: center;
  margin-top: 3rem;
}

.recent-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
  aspect-ratio: 4 / 5;
}

.recent-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.contact-info {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--radius);
  color: white;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.contact-info * {
  position: relative;
  z-index: 1;
}

.contact-info h2,
.contact-info p,
.contact-info h3,
.contact-info .note {
  color: white;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 182, 74, 0.12);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button {
  width: auto;
  max-width: 320px;
  justify-self: start;
}

.success-message {
  display: none;
  margin-top: 0.5rem;
  color: #1a7f37;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-links-large {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-card {
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: transform 0.2s;
}

.social-card:hover { transform: translateY(-3px); }
.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.snapchat { background: #FFFC00; color: black; }
.facebook { background: #1877F2; }
.tiktok { background: #000000; }

/* RDV PAGE */
.rdv-section .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}

.rdv-info {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--radius);
  color: white;
  background-image: url('images/IMG_1995.JPG');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 420px;
}

.rdv-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.rdv-info * {
  position: relative;
  z-index: 1;
}

.rdv-info h2,
.rdv-info p {
  color: white;
}

.rdv-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.rdv-info > p {
  margin-bottom: 1.75rem;
  opacity: 0.9;
  line-height: 1.6;
}

.rdv-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: step;
}

.rdv-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.rdv-steps li::before {
  content: counter(step);
  min-width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.success-message {
  background: #e9f6ef;
  color: #2a6e4b;
  padding: 1rem;
  border-radius: 30px;
  margin-top: 1rem;
  display: none;
}

/* ── TARIFS ──────────────────────────────────────────── */
.tarifs-section {
  padding: 5rem 0;
}

.page-header + .tarifs-section {
  padding-top: 1.5rem;
}

.tarifs-section + .tarifs-section,
.tarifs-section + .tarifs-events {
  padding-top: 2.5rem;
}

.tarifs-cta .hero-buttons {
  justify-content: center;
}

.tarifs-events {
  background: var(--bg-page);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.tarif-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.tarif-card--wide {
  max-width: 520px;
}

.tarif-card-header {
  background: var(--text-primary);
  color: white;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tarif-card-header--alt {
  background: #2a2a2a;
}

.tarif-card-header h3 {
  color: white;
  font-size: 1.2rem;
  margin: 0;
}

.badge-location {
  background: var(--accent);
  color: #111;
  font-size: 0.72rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.tarif-rows {
  padding: 0.5rem 2rem 1rem;
}

.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
}

.tarif-row:last-child {
  border-bottom: none;
}

.tarif-row .quantity {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.tarif-row .price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-dark);
}

.tarif-row .currency {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 2px;
}

.tarif-addon {
  background: #f8f4ee;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--text-primary);
}

.tarif-addon .addon-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.tarif-addon .addon-price {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* Événements */
.events-block {
  margin-top: 3.5rem;
}

.events-block-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.events-block-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.events-reel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--text-primary);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.events-block--sans {
  margin-top: 3rem;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pack-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pack-header {
  padding: 1.75rem 1rem 1.5rem;
}

.pack-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pack-photos {
  font-size: 0.82rem;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.pack-price {
  padding: 1.5rem 1rem 1.75rem;
  background: white;
}

.pack-price .amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pack-price .fcfa {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.pack-bronze .pack-header { background: #8B4513; color: white; }
.pack-silver .pack-header { background: #607080; color: white; }
.pack-gold   .pack-header { background: var(--accent); color: #111; }
.pack-diamond .pack-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: white;
}

/* CTA Tarifs */
.tarifs-cta {
  padding: 2.5rem 0;
  background: var(--bg-page);
  text-align: center;
}

.tarifs-cta h2 {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.tarifs-cta h2 span {
  color: var(--accent-dark);
}

.tarifs-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.tarifs-contact-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.9rem;
}

.tarifs-contact-numbers svg {
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .tarifs-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
  .packs-grid { grid-template-columns: 1fr 1fr; }
}

/* ── VIDEO GALERIE ────────────────────────────────────── */
.gallery-item--video video {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  pointer-events: none;
  background: #111;
}

.video-overlay {
  opacity: 1 !important;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.2s ease;
}

.gallery-item--video:hover .play-icon {
  transform: scale(1.15);
}

/* FAQ ACCORDION */
.faq-section {
  padding: 5rem 0 6rem;
  background: var(--bg-page);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.3rem 1.75rem;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
  background: rgba(242, 182, 74, 0.06);
}

.faq-item.open .faq-question {
  background: rgba(242, 182, 74, 0.1);
  color: var(--accent-dark);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.75rem 1.3rem;
}

.testimonial {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

  .testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(242, 182, 74, 0.08), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03), transparent 40%);
    pointer-events: none;
  }

  .testimonial-header {
    position: relative;
    text-align: center;
    z-index: 1;
  }

  .testimonial-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
  }

  .testimonial-header h2 span {
    color: var(--accent);
  }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 420px;
  color: var(--text-primary);
}

.testimonial-card--highlighted {
  background: #111111;
  color: white;
  border: 1px solid rgba(242, 182, 74, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonial-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  margin-bottom: 1.5rem;
  background: #fff;
}

.testimonial-card--highlighted .testimonial-avatar {
  border-color: rgba(242, 182, 74, 0.9);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: #f2b64a;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.testimonial-card--highlighted p {
  color: rgba(255,255,255,0.9);
}

.testimonial-name {
  font-weight: 700;
  margin-top: auto;
  font-size: 1rem;
}

.testimonial-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #240860;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.testimonial-btn:hover {
  transform: translateY(-2px);
}

.testimonial-btn:focus {
  outline: 2px solid rgba(242, 182, 74, 0.7);
  outline-offset: 3px;
}
/* FOOTER */
footer {
  background: white;
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-col p {
  color: var(--text-secondary);
  line-height: 1.9;
}

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

.footer-col ul li {
  margin-bottom: 0.85rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-dark);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.social-card {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.social-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.social-card.instagram {
  background: linear-gradient(135deg, #e1306c 0%, #f77737 100%);
}

.social-card.facebook {
  background: #1877F2;
}

.social-card.whatsapp {
  background: #25D366;
}

.social-card.snapchat {
  background: #FFFC00;
  color: #000;
}

.social-card.snapchat .social-icon svg {
  fill: #000;
}

.social-card.tiktok {
  background: #000;
}

.contact-info-footer {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-line svg {
  width: 18px;
  height: 18px;
  fill: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--border-light);
  transition: color 0.2s;
  line-height: 0;
}
.admin-link:hover { color: var(--accent); }

@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 680px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Animation au scroll - classe visible */
.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 900px) {
  .hero .container, .about-grid, .contact-grid, .rdv-section .container, .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Lightbox mobile */
  .lightbox {
    padding: 60px 0 80px;
    align-items: center;
    justify-content: center;
  }

  #lbImage {
    max-width: 100vw;
    max-height: 70vh;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }

  .lb-prev, .lb-next {
    top: auto;
    bottom: 16px;
    transform: none;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .lb-prev { left: 50%; transform: translateX(-60px); }
  .lb-next { left: 50%; transform: translateX(12px); }

  .lb-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  nav ul {
    display: none;
  }

  .btn-rdv {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }

  .btn-rdv svg {
    width: 13px;
    height: 13px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}