/* ═══════════════════════════════════════════════════════════
   DJ LE PRINCE – Feuille de style principale
   Palette : Noir profond · Or · Bleu/Cyan · Rouge-Orangé
═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold:      #d4a017;
  --gold-lt:   #f0c040;
  --blue:      #1a7fff;
  --cyan:      #00d4e8;
  --red:       #e84c2b;
  --orange:    #ff6b00;
  --dark:      #07071a;
  --dark2:     #0d0d2b;
  --dark3:     #12122e;
  --light:     #f0f0f8;
  --muted:     #9090b0;
  --radius:    8px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Typography helpers ── */
.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label.light { color: var(--gold-lt); }

h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
}
h2.light { color: #fff; }

h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.gold-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
  margin: 18px 0 36px;
  border-radius: 2px;
}
.gold-bar.centered { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  box-shadow: 0 4px 20px rgba(212,160,23,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,.6);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn.full-width { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(7,7,26,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.08); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(212,160,23,.35);
}
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.5); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7,7,26,.55) 0%,
    rgba(7,7,26,.35) 40%,
    rgba(7,7,26,.75) 80%,
    rgba(7,7,26,1)   100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  margin-bottom: 20px;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  padding: 12px;
  border: 2px solid rgba(212,160,23,.4);
  box-shadow: 0 0 40px rgba(0,212,232,.2), 0 0 80px rgba(212,160,23,.1);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(0,212,232,.2), 0 0 80px rgba(212,160,23,.1); }
  50%       { box-shadow: 0 0 60px rgba(0,212,232,.4), 0 0 120px rgba(212,160,23,.25); }
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-sub {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.06);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  80%       { top: 20px; opacity: 0; }
}

/* ═══════════════════════════════════════════════
   SERVICES BAR
═══════════════════════════════════════════════ */
.services-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(212,160,23,.2);
  border-bottom: 1px solid rgba(212,160,23,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 40px;
}
.sbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.sbar-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}
.sbar-item.sbar-phone a {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.sbar-item.sbar-phone a:hover { color: var(--gold-lt); }
.sbar-divider {
  width: 1px;
  height: 32px;
  background: rgba(212,160,23,.3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   À PROPOS
═══════════════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-photo { position: relative; }

.photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.photo-frame:hover img { transform: scale(1.04); }

.photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 3px solid var(--gold);
  border-radius: 12px;
  opacity: 0.35;
  z-index: 0;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   SERVICES (section)
═══════════════════════════════════════════════ */
#services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.services-bg-img {
  position: absolute;
  inset: 0;
}
.services-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark2) 0%, rgba(13,13,43,.9) 50%, var(--dark2) 100%);
}

#services .container { position: relative; z-index: 1; }
#services h2, #services .section-label { text-align: center; display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--cyan));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(212,160,23,.25);
}
.service-card.featured {
  background: rgba(212,160,23,.08);
  border-color: rgba(212,160,23,.3);
}
.service-card.featured::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212,160,23,.2), rgba(0,212,232,.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 12px 0 20px;
}
.service-card ul li {
  color: rgba(255,255,255,.65);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   ÉVÉNEMENTS
═══════════════════════════════════════════════ */
#events {
  padding: 100px 0;
  background: var(--dark);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.events-grid .event-card:nth-child(4) { grid-column: 1 / 2; }
.events-grid .event-card:nth-child(5) { grid-column: 2 / 4; }

.event-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.event-card:hover { transform: scale(1.02); }

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(7,7,26,.85) 100%
  );
  transition: background var(--transition);
}
.event-card:hover .event-overlay {
  background: linear-gradient(
    180deg,
    rgba(7,7,26,.3) 0%,
    rgba(7,7,26,.92) 100%
  );
}

.event-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 1;
}
.event-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}
.event-content h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}
.event-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.event-card:hover .event-content p {
  max-height: 80px;
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════ */
#gallery {
  padding: 100px 0 0;
  background: var(--dark2);
}
#gallery .container { text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 5px;
  margin-top: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,26,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay span {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(212,160,23,.6); }
.lb-close { top: 24px; right: 24px; font-size: 2rem; }
.lb-prev   { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next   { right: 16px; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════ */
#testimonials {
  padding: 100px 0;
  background: var(--dark);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(212,160,23,.25);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,26,.97) 0%, rgba(13,13,43,.94) 100%);
}

#contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p.light {
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
a.contact-item:hover {
  border-color: rgba(212,160,23,.35);
  background: rgba(212,160,23,.06);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(212,160,23,.2), rgba(0,212,232,.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.ci-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}
.ci-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 44px 36px;
}
.contact-form h3 {
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group select option { background: var(--dark2); color: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.5; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(212,160,23,.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}
.footer-text p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-text a {
  color: var(--gold);
  transition: color var(--transition);
}
.footer-text a:hover { color: var(--gold-lt); }
.footer-social { margin-left: auto; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  padding: 16px 24px;
}
.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════
   HERO WAVE VISUALIZER
═══════════════════════════════════════════════ */
.hero-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 24px;
}
.hero-wave span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  animation: waveBar 1.2s ease-in-out infinite;
  opacity: 0.7;
}
.hero-wave span:nth-child(1)  { height: 12px; animation-delay: 0.00s; }
.hero-wave span:nth-child(2)  { height: 24px; animation-delay: 0.06s; }
.hero-wave span:nth-child(3)  { height: 36px; animation-delay: 0.12s; }
.hero-wave span:nth-child(4)  { height: 20px; animation-delay: 0.18s; }
.hero-wave span:nth-child(5)  { height: 44px; animation-delay: 0.24s; }
.hero-wave span:nth-child(6)  { height: 28px; animation-delay: 0.30s; }
.hero-wave span:nth-child(7)  { height: 16px; animation-delay: 0.36s; }
.hero-wave span:nth-child(8)  { height: 40px; animation-delay: 0.42s; }
.hero-wave span:nth-child(9)  { height: 32px; animation-delay: 0.48s; }
.hero-wave span:nth-child(10) { height: 48px; animation-delay: 0.54s; }
.hero-wave span:nth-child(11) { height: 36px; animation-delay: 0.48s; }
.hero-wave span:nth-child(12) { height: 44px; animation-delay: 0.42s; }
.hero-wave span:nth-child(13) { height: 20px; animation-delay: 0.36s; }
.hero-wave span:nth-child(14) { height: 32px; animation-delay: 0.30s; }
.hero-wave span:nth-child(15) { height: 16px; animation-delay: 0.24s; }
.hero-wave span:nth-child(16) { height: 40px; animation-delay: 0.18s; }
.hero-wave span:nth-child(17) { height: 24px; animation-delay: 0.12s; }
.hero-wave span:nth-child(18) { height: 36px; animation-delay: 0.06s; }
.hero-wave span:nth-child(19) { height: 20px; animation-delay: 0.00s; }
.hero-wave span:nth-child(20) { height: 12px; animation-delay: 0.06s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1;   }
}

/* ═══════════════════════════════════════════════
   GALLERY FILTERS
═══════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 24px;
}
.gf-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.gf-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gf-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,160,23,.4);
}

/* Gallery item hidden state for filters */
.gallery-item.hidden {
  display: none;
}
.gallery-item.fade-in {
  animation: fadeInItem 0.4s ease both;
}
@keyframes fadeInItem {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.7);
}
.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS ON SCROLL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
  .events-grid .event-card:nth-child(4),
  .events-grid .event-card:nth-child(5) { grid-column: auto; }
  .testimonials-track { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .photo-frame img { height: 380px; }
  .photo-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(7,7,26,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(212,160,23,.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .nav-burger { display: flex; z-index: 1001; }

  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .events-grid .event-card:nth-child(4),
  .events-grid .event-card:nth-child(5) { grid-column: auto; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .services-bar { gap: 0; padding: 12px; }
  .sbar-divider { height: 20px; }
  .sbar-item { padding: 6px 16px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .gallery-filters { gap: 6px; }
  .gf-btn { padding: 8px 14px; font-size: 0.72rem; }
  .hero-logo { width: 120px; height: 120px; }
  .about-stats { gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social { margin-left: 0; }
}
