/* ==========================================================================
   LT Events 360 - Design System Haute Couture
   Palette de Couleurs & Typographie Prestige (Cormorant Garamond & Jost)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Palette de couleurs de Référence */
  --noir: #08070A;
  --noir-2: #100E14;
  --or: #C9A227;
  --champagne: #E8D9A0;
  --ivoire: #F3EFE6;
  --gris: #8C8879;
  --bg: var(--noir);
  --fg: var(--ivoire);
  --ligne: rgba(201, 162, 39, .28);

  /* Mapping Système & Composants */
  --bg-main: var(--noir);
  --bg-surface: var(--noir-2);
  --bg-card: #0c0a10;
  --bg-card-hover: #14111a;
  --bg-glass: rgba(8, 7, 10, 0.86);
  --bg-glass-heavy: rgba(8, 7, 10, 0.94);

  /* Nuances d'Or & Champagne */
  --gold-primary: var(--or);
  --gold-light: var(--champagne);
  --gold-dark: #A17F1A;
  --gold-gradient: linear-gradient(135deg, #E8D9A0 0%, #C9A227 50%, #A17F1A 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(232, 217, 160, 0.05) 100%);
  --gold-glow: 0 0 25px rgba(201, 162, 39, 0.25);
  --gold-border: var(--ligne);
  --gold-border-bright: var(--or);

  /* Identité Visuelle Or & Champagne Prestige (Branding LT Events 360) */
  --brand-gold: #C9A227;
  --brand-champagne: #E8D9A0;
  --brand-gold-glow: 0 0 24px rgba(201, 162, 39, 0.4);
  --brand-gold-border: rgba(201, 162, 39, 0.45);

  /* Typographie Haute Couture */
  --text-white: var(--ivoire);
  --text-pure: var(--ivoire);
  --text-muted: rgba(243, 239, 230, 0.74);
  --text-dim: var(--gris);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Espacements & Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --container-max: 1280px;
  --transition-smooth: all 0.3s ease;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "lnum" 1;
  -moz-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "lnum" 1;
  -moz-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-pure);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "lnum" 1;
  -moz-font-feature-settings: "lnum" 1;
  font-feature-settings: "lnum" 1;
}

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

a:hover {
  text-decoration: none;
}

/* Typographie Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
}

em {
  font-style: italic;
  color: var(--champagne);
  font-family: var(--font-heading);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #E8D9A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Normal & Uniform Lining Numerals for all Prices, Numbers, and Stats */
.pack-price,
.matrix-number,
.stat-number,
.hero-stat-number,
.item-price,
.service-price,
.rental-price,
.price-tag,
.item-card-price,
.cart-counter,
.cart-item-price,
.badge-price,
.review-score,
[class*="price"],
[class*="prix"],
[class*="tarif"] {
  font-family: var(--font-body) !important;
  font-variant-numeric: lining-nums proportional-nums !important;
  -webkit-font-feature-settings: "lnum" 1 !important;
  -moz-font-feature-settings: "lnum" 1 !important;
  font-feature-settings: "lnum" 1 !important;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-py {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 750px;
}

.section-header.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Top Announcement Bar */
.top-bar {
  background: rgba(14, 16, 24, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.top-bar-link:hover {
  color: var(--gold-light);
}

/* Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F3E5AB 0%, #C9A227 50%, #8A6816 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08070A;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.35), 0 4px 12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(232, 217, 160, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.6), 0 6px 18px rgba(0, 0, 0, 0.7);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-360,
.logo-title .brand-360,
.logo-title .gold-360,
.brand-gold-text {
  color: var(--gold-light) !important;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: inline-block;
  text-shadow: 0 0 14px rgba(201, 162, 39, 0.3);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

/* Utilitaires Or Premium */
.text-gold-accent {
  color: var(--gold-light) !important;
}

.badge-gold-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Desktop Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-pure);
  padding: 0.5rem 0.2rem;
  position: relative;
  transition: var(--transition-smooth);
}

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

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

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

/* Navigation Dropdown Minimalist */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item-dropdown .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
  stroke: currentColor;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu-simple {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(12px);
  min-width: 250px;
  background: rgba(14, 12, 18, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--ligne);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 162, 39, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 150;
  display: flex;
  flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu-simple {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(4px);
}

.dropdown-link-simple {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-pure);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-link-simple:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--champagne);
  padding-left: 1.5rem;
}

.mobile-sublink {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.92rem;
  color: var(--text-pure);
  border-radius: 4px;
  transition: background 0.2s;
}

.mobile-sublink:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0c10;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  filter: brightness(1.08);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--text-white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Call to Action Buttons Group */
.cta-buttons-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons-group .btn {
  padding: 0.68rem 1.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
}

/* Mobile Menu Trigger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-quote-desktop {
    display: none;
  }
}

/* Mobile Drawer & Backdrop Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: #0d0c12;
  border-left: 1px solid var(--gold-border);
  z-index: 1000;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem 1.5rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.95);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.drawer-close:hover {
  color: var(--gold-light);
  border-color: var(--gold-primary);
  background: rgba(201, 162, 39, 0.15);
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-pure);
  display: block;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
  padding-left: 0.85rem;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.98) contrast(1.02);
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(9, 10, 15, 0.75) 0%, rgba(9, 10, 15, 0.3) 42%, transparent 70%),
    linear-gradient(180deg, rgba(9, 10, 15, 0.5) 0%, transparent 20%, rgba(9, 10, 15, 0.95) 96%);
}

.hero-section .container {
  max-width: 1650px;
  padding-left: clamp(1.5rem, 5vw, 4.5rem);
  padding-right: 2rem;
  margin-left: 0;
  margin-right: auto;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
  margin-left: 0;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border-bright);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  color: #c0c5d6;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-feature-item svg {
  color: var(--gold-primary);
}

/* Key Metrics / Chiffres Clés */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

/* Luxury 2x2 Matrix & Editorial Typography Component */
.agency-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .agency-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.editorial-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.editorial-title em,
.editorial-title .editorial-italic {
  font-style: italic;
  font-weight: 400;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.editorial-para {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  color: #aeb5c6;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 560px;
}

.editorial-actions {
  margin-top: 2.2rem;
}

.btn-editorial-gold {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #dfbe6b;
  padding: 0.85rem 2.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-editorial-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #dfbe6b;
  color: #ffffff;
  transform: translateY(-2px);
}

.luxury-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: #090a0f;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.luxury-matrix-cell {
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease;
}

.luxury-matrix-cell:hover {
  background: rgba(212, 175, 55, 0.04);
}

.luxury-matrix-cell:nth-child(1) {
  border-right: 1px solid rgba(212, 175, 55, 0.32);
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
}

.luxury-matrix-cell:nth-child(2) {
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
}

.luxury-matrix-cell:nth-child(3) {
  border-right: 1px solid rgba(212, 175, 55, 0.32);
}

.matrix-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 3.8vw, 3.8rem);
  font-weight: 400;
  color: #dfbe6b;
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
}

.matrix-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(220, 225, 240, 0.65);
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: lowercase;
  font-weight: 300;
}

@media (max-width: 576px) {
  .luxury-matrix {
    grid-template-columns: 1fr;
  }

  .luxury-matrix-cell:nth-child(1),
  .luxury-matrix-cell:nth-child(2),
  .luxury-matrix-cell:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.32);
  }

  .luxury-matrix-cell {
    padding: 2rem 1.5rem;
  }
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--gold-glow);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   CARDS & GRIDS (Services, Location, Categories)
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

@media (max-width: 1024px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Category Hub Cards (Accueil) */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.category-card:hover,
.category-card:focus {
  text-decoration: none;
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.4) contrast(1.1);
  z-index: 1;
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
  filter: brightness(0.5) contrast(1.15);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 20%, rgba(9, 10, 15, 0.95) 100%);
  z-index: 2;
}

.category-card-content {
  position: relative;
  z-index: 3;
}

.category-card-tag {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}

.category-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Service & Rental Cards */
.item-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}

.item-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 15px 35px -10px rgba(212, 175, 55, 0.2);
}

.item-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #000;
}

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

.item-card:hover .item-card-img {
  transform: scale(1.06);
}

.item-badge-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(9, 10, 15, 0.85);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.item-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gold-gradient);
  color: #0b0c10;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item-card-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.item-card-title {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 1rem;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.item-card-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.item-card-footer {
  margin-top: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: none;
  width: 100%;
}

.item-card-footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 30px;
  line-height: 1.2;
}

/* Pack Cards */
.pack-card {
  background: var(--noir-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pack-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  transform: scale(1.02);
}

.pack-discount-tag {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--gold-gradient);
  color: #090a0f;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.pack-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.pack-subtitle {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.pack-price-box {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pack-price {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

.pack-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-pure);
}

.pack-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   INTERACTIVE SELECTION CART & FLOATING BAR
   ========================================================================== */
.selection-floating-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 960;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: slideUpFloating 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.btn-selection-cart {
  background: linear-gradient(135deg, #dfbe6b 0%, #c9a227 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #08070a;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.45), 0 4px 15px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-selection-cart:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #f3efe6 0%, #dfbe6b 100%);
  box-shadow: 0 14px 35px rgba(201, 162, 39, 0.6), 0 6px 20px rgba(0, 0, 0, 0.7);
}

.cart-counter {
  background: #08070a;
  color: #dfbe6b;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 4px;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.cart-counter:empty,
.cart-counter[data-count="0"] {
  display: none !important;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 5.2rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 940;
  transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Selection Cart Slide-over Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--gold-border);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
}

.cart-item-meta {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #ff5c5c;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 4px;
}

.cart-item-remove:hover {
  background: rgba(255, 92, 92, 0.15);
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   FORMS & INPUTS (Devis, Contact, Filters)
   ========================================================================== */
.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-pure);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(14, 16, 24, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(18, 20, 30, 0.95);
}

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

.filter-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #0b0c10;
  font-weight: 700;
}

/* Accordion FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
}

.faq-question svg {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #06070a;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 5rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--gold-primary);
  color: var(--text-white);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Admin Dashboard Specific Styles */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: #08090d;
  border-right: 1px solid rgba(212, 175, 55, 0.18);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.admin-main {
  flex-grow: 1;
  background: #0d0f17;
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.admin-table th {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem;
  text-align: left;
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.badge-status {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-status.nouveau {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: 1px solid #3b82f6;
}

.badge-status.en_cours {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid #f59e0b;
}

.badge-status.valide {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid #10b981;
}

/* Editorial & Statistics Matrix Section */
.agency-intro-section {
  background: var(--noir-2);
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
}

.agency-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

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

.editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--ivoire);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.editorial-title em {
  font-style: italic;
  color: var(--champagne);
}

.editorial-para {
  color: rgba(243, 239, 230, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.editorial-actions {
  margin-top: 2rem;
}

.btn-editorial-gold {
  display: inline-block;
  background: var(--or);
  color: var(--noir);
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn-editorial-gold:hover {
  background: var(--champagne);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.luxury-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ligne);
  border: 1px solid var(--ligne);
}

.luxury-matrix-cell {
  background: var(--noir-2);
  padding: 32px 26px;
  text-align: left;
}

.matrix-number {
  font-family: var(--font-body);
  font-size: 2.6rem;
  color: var(--champagne);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

.matrix-desc {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris);
  line-height: 1.4;
}

/* Wedding Poles 2-Column Grid & Cards */
.wedding-poles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .wedding-poles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.wedding-pole-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.wedding-pole-card:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 39, 0.12);
  transform: translateY(-3px);
}

.wedding-pole-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.wedding-pole-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.wedding-pole-card:hover .wedding-pole-img {
  transform: scale(1.06);
}

.wedding-pole-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wedding-pole-header {
  margin-bottom: 0.75rem;
}

.wedding-pole-tag {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.35rem;
}

.wedding-pole-title {
  font-size: 1.55rem;
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.25;
}

.wedding-pole-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.wedding-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.wedding-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  color: var(--ivoire);
  letter-spacing: 0.02em;
}

.wedding-pole-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  margin-top: auto;
}

/* Private Events Showcase Cards */
.private-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .private-events-grid {
    grid-template-columns: 1fr;
  }
}

.private-event-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.private-event-card:hover {
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 39, 0.12);
}

.private-event-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.private-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.private-event-card:hover .private-event-img {
  transform: scale(1.06);
}

.private-event-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 7, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--champagne);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.private-event-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.private-event-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.private-event-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.private-event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.private-event-pill {
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--ivoire);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.private-event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  margin-top: auto;
}

/* ==========================================================================
   Panier de Sélection / Quote Drawer & Floating Bar
   Touches d'Or et Turquoise #3BC7C4 Signature LT Events 360
   ========================================================================== */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--gold-border);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 7, 10, 0.95);
}

.cart-drawer-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-drawer-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--gold-border);
  background: rgba(8, 7, 10, 0.98);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-price {
  color: var(--brand-turquoise);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.cart-item-remove:hover {
  opacity: 0.7;
}

/* Floating Selection Pill */
.selection-floating-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  animation: floatBounce 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-selection-cart {
  background: linear-gradient(135deg, #0f0d14 0%, #1a1622 100%);
  border: 1.5px solid var(--brand-turquoise);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(59, 199, 196, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-selection-cart:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 28px rgba(59, 199, 196, 0.55);
}

.btn-selection-cart .cart-counter {
  background: var(--brand-turquoise);
  color: #08070A;
  font-weight: 800;
  font-size: 0.78rem;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9980;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWhatsapp 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes floatBounce {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

/* ==========================================================================
   Luxury Testimonial Carousel (Avis Clients Carrousel Vedette)
   ========================================================================== */

.reviews-section {
  position: relative;
  overflow: hidden;
}

.luxury-testimonial-carousel {
  position: relative;
  background: rgba(16, 14, 20, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(201, 162, 39, 0.06);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .luxury-testimonial-carousel {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

.testimonial-slides-track {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.4s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-quote-icon {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.06);
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-main-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  line-height: 1.5;
  color: var(--ivoire);
  margin: 0 auto 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 680px;
  text-align: center;
}

.testimonial-author-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(201, 162, 39, 0.16);
  padding-top: 1.25rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.75rem;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25) 0%, rgba(59, 199, 196, 0.25) 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-client-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 0 0 2px;
  font-weight: 600;
  text-align: center;
}

.testimonial-event-type {
  font-size: 0.84rem;
  color: var(--gris);
  letter-spacing: 0.03em;
  text-align: center;
}

.testimonial-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: #3BC7C4;
  background: rgba(59, 199, 196, 0.08);
  border: 1px solid rgba(59, 199, 196, 0.22);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.btn-carousel-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-carousel-nav:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold-primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.3);
}

.testimonial-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--brand-turquoise) 100%);
  box-shadow: 0 0 12px rgba(59, 199, 196, 0.4);
}

/* ==========================================================================
   Luxury Scroll Animation Suite (Haute Couture Transitions & Reveal)
   ========================================================================== */

/* 1. Scroll Reveal Utility Classes */
.reveal-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.reveal-scale {
  transform: translateY(32px) scale(0.96);
}

.reveal-init.reveal-left {
  transform: translateX(-36px);
}

.reveal-init.reveal-right {
  transform: translateX(36px);
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* 3. Automatic Grid Card Stagger Delays */
.reveal-stagger-parent .reveal-child:nth-child(1),
.grid-3 > .reveal-init:nth-child(1),
.grid-4 > .reveal-init:nth-child(1),
.services-grid > .reveal-init:nth-child(1),
.categories-grid > .reveal-init:nth-child(1) {
  transition-delay: 0.06s;
}

.reveal-stagger-parent .reveal-child:nth-child(2),
.grid-3 > .reveal-init:nth-child(2),
.grid-4 > .reveal-init:nth-child(2),
.services-grid > .reveal-init:nth-child(2),
.categories-grid > .reveal-init:nth-child(2) {
  transition-delay: 0.16s;
}

.reveal-stagger-parent .reveal-child:nth-child(3),
.grid-3 > .reveal-init:nth-child(3),
.grid-4 > .reveal-init:nth-child(3),
.services-grid > .reveal-init:nth-child(3),
.categories-grid > .reveal-init:nth-child(3) {
  transition-delay: 0.26s;
}

.reveal-stagger-parent .reveal-child:nth-child(4),
.grid-3 > .reveal-init:nth-child(4),
.grid-4 > .reveal-init:nth-child(4),
.services-grid > .reveal-init:nth-child(4),
.categories-grid > .reveal-init:nth-child(4) {
  transition-delay: 0.36s;
}

/* 4. Luxury Card Hover & Subtle Parallax */
.item-card, .pack-card, .service-card, .stat-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.5);
}

.item-card-media {
  overflow: hidden;
}

.item-card-img {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-card:hover .item-card-img {
  transform: scale(1.08);
}

/* 5. Section Tags Shimmer on Scroll */
.section-tag.reveal-visible {
  animation: tagShimmer 1.2s ease-out;
}

@keyframes tagShimmer {
  0% {
    box-shadow: 0 0 0 rgba(201, 162, 39, 0);
  }
  50% {
    box-shadow: 0 0 16px rgba(59, 199, 196, 0.4);
  }
  100% {
    box-shadow: 0 0 0 rgba(201, 162, 39, 0);
  }
}

/* Accessibility: respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .scroll-progress-bar {
    display: none;
  }
}

/* ==========================================================================
   Luxury FAQ Accordion (Before you write to us)
   ========================================================================== */
.luxury-faq-accordion {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-bottom-color: rgba(201, 162, 39, 0.45);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1.6rem 0.2rem;
  color: var(--ivoire);
  font-family: inherit;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  gap: 1.5rem;
}

.faq-question-btn:hover {
  color: var(--gold-light);
}

.faq-item.active .faq-question-btn {
  color: var(--champagne);
}

.faq-icon-toggle {
  font-size: 1.35rem;
  color: var(--gold-primary);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.35s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  color: var(--brand-turquoise);
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
  color: rgba(243, 239, 230, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  padding: 0 0.2rem 0;
}

.faq-item.active .faq-answer-body {
  max-height: 350px;
  opacity: 1;
  padding-bottom: 1.6rem;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Perfection (<= 768px & <= 480px)
   ========================================================================== */

@media (max-width: 900px) {
  .agency-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .private-events-grid {
    grid-template-columns: 1fr;
  }

  .private-event-card {
    grid-template-columns: 1fr;
  }

  .private-event-media {
    height: 240px;
  }
}

@media (max-width: 768px) {
  /* 1. Global Spacing & Typography */
  .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .section-py {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  /* 2. Navigation & Mobile Top Bar */
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .top-bar-links {
    justify-content: center;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .logo-title {
    font-size: 1.15rem;
  }

  .logo-sub {
    font-size: 0.62rem;
  }

  /* 3. Hero Section */
  .hero-section {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero-section .container {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* 4. Filter Pills Horizontal Smooth Scroll */
  .filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0.25rem 0.85rem;
    margin-bottom: 2rem;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
  }

  /* 5. Grids Single Column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* 6. Card Perfection on Mobile */
  .item-card {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .item-card-media {
    height: 200px;
  }

  .item-card-body {
    padding: 1.15rem 1rem 1.25rem;
  }

  .item-card-title {
    font-size: 1.1rem;
    min-height: auto;
    margin-bottom: 0.85rem;
  }

  .item-card-footer {
    padding-top: 0.25rem;
  }

  .item-card-footer .btn {
    padding: 0.45rem 1.4rem;
    font-size: 0.82rem;
  }

  .wedding-pole-card {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .wedding-pole-media {
    height: 200px;
  }

  .wedding-pole-body {
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .wedding-pole-title {
    font-size: 1.35rem;
  }

  /* 7. Pack Cards Mobile */
  .pack-card {
    padding: 1.75rem 1.25rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .pack-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .pack-title {
    font-size: 1.35rem;
  }

  .pack-price {
    font-size: 2rem;
  }

  .pack-features {
    margin-bottom: 1.5rem;
  }

  /* 8. Luxury Matrix Stats Mobile */
  .luxury-matrix {
    grid-template-columns: 1fr 1fr;
  }

  .luxury-matrix-cell {
    padding: 1.5rem 1rem;
  }

  .matrix-number {
    font-size: 2.2rem;
  }

  .matrix-desc {
    font-size: 0.78rem;
  }

  /* 9. Reviews Carousel Mobile */
  .luxury-testimonial-carousel {
    padding: 1.75rem 1.2rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .testimonial-main-quote {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .testimonial-quote-icon {
    font-size: 4rem;
    top: -1rem;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .testimonial-client-name {
    font-size: 1.05rem;
  }

  .testimonial-event-type {
    font-size: 0.78rem;
  }

  /* 10. FAQ Accordion Mobile */
  .faq-question-btn {
    padding: 1.2rem 0;
    font-size: 1.02rem;
    gap: 1rem;
  }

  .faq-answer-body {
    font-size: 0.92rem;
    line-height: 1.65;
    padding-bottom: 1.2rem;
  }

  .faq-icon-toggle {
    font-size: 1.2rem;
  }

  /* 11. Floating Widgets Alignment (Never Collide) */
  .whatsapp-float-btn {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
  }

  .selection-floating-bar {
    bottom: 16px;
    left: 16px;
    transform: none;
    width: calc(100% - 84px);
    max-width: 320px;
  }

  .btn-selection-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    gap: 0.6rem;
    justify-content: center;
  }

  .cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .mobile-nav-drawer {
    width: 88%;
    max-width: 340px;
  }

  /* 12. Contact Form Multi-Col to 1-Col */
  .contact-grid,
  .form-grid-2,
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* 13. Form Inputs Font Size 16px (Prevents iOS Safari auto-zoom) */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* 14. CTA Banner Buttons Mobile */
  .cta-buttons-group {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
  }

  .cta-buttons-group .btn {
    width: 100%;
    max-width: 275px;
    padding: 0.58rem 1.1rem;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .luxury-matrix {
    grid-template-columns: 1fr 1fr;
  }

  .luxury-matrix-cell {
    padding: 1.25rem 0.75rem;
  }

  .matrix-number {
    font-size: 1.85rem;
  }

  .matrix-desc {
    font-size: 0.72rem;
  }

  .cta-buttons-group .btn {
    max-width: 255px;
    padding: 0.52rem 0.95rem;
    font-size: 0.76rem;
  }
}