:root {
  --bg: #080808;
  --bg-card: #111111;
  --bg-elevated: #181818;
  --fg: #f0ece6;
  --fg-muted: #8a8070;
  --gold: #c9a84c;
  --gold-bright: #e8c96d;
  --gold-dim: #7a5e28;
  --gold-glow: rgba(201,168,76,0.12);
  --radius: 12px;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

.text-gold { color: var(--gold-bright); }
.text-muted { color: var(--fg-muted); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta a {
  color: var(--bg);
  background: var(--gold);
  border-radius: 6px;
  padding: 0.5rem 1.1rem;
}
.nav-links .nav-cta a:hover { background: var(--gold-bright); }

.nav-coming-soon {
  font-size: 0.65rem;
  vertical-align: super;
  color: var(--gold-dim);
  margin-left: 2px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .mobile-cta {
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--bg) !important;
  text-align: center;
  border-radius: 8px;
  border-bottom: none !important;
  font-weight: 600;
}

/* ─── PAGE WRAPPER ───────────────────────────────────────── */
.page-content { padding-top: 62px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 900px;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--fg); border-color: rgba(255,255,255,0.2); }

.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.section-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}

/* ─── SERVICES OVERVIEW ──────────────────────────────────── */
.services-overview {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header { margin-bottom: 3.5rem; }

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

.service-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-coming-soon {
  opacity: 0.6;
  cursor: default;
}
.service-coming-soon:hover { transform: none; }

.service-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}

/* ─── WHY BR BOOKING ─────────────────────────────────────── */
.why-section {
  padding: 6rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text .section-desc { margin-bottom: 2.5rem; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.why-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.why-visual {
  position: relative;
}

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  min-width: 60px;
  text-align: right;
}

.why-card-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.why-card-text strong {
  display: block;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  padding: 3.5rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 2rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ─── CONTACT CTA ────────────────────────────────────────── */
.contact-cta {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta-inner { max-width: 700px; margin: 0 auto; position: relative; }

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem auto 0;
  max-width: 200px;
}

/* ─── COMING SOON PAGE ───────────────────────────────────── */
.coming-soon-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.coming-soon-inner { max-width: 600px; }

.coming-soon-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
}

.coming-soon-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.coming-soon-inner p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ─── DJ CARDS ───────────────────────────────────────────── */
.djs-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.djs-inner { max-width: 1100px; margin: 0 auto; }

.djs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.dj-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s, transform 0.2s;
}

.dj-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }

.dj-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--bg-elevated);
}

.dj-photo-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold-dim);
}

.dj-card-body { padding: 1.5rem; }

.dj-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dj-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.dj-genre-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
}

.dj-rating-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.dj-rating-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  width: 80px;
  flex-shrink: 0;
}

.dj-rating-track {
  flex: 1;
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.dj-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: 2px;
}

/* ─── MARIAGE PAGE ───────────────────────────────────────── */
.mariage-packs {
  padding: 5rem 2rem;
  background: var(--bg);
}

.mariage-inner { max-width: 1100px; margin: 0 auto; }

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pack-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pack-card.featured {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,76,0.04) 100%);
}

.pack-featured-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 8px 8px;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pack-subtitle {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

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

.pack-features li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  align-items: flex-start;
}

.pack-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid rgba(201,168,76,0.1);
  margin-top: 2.5rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.4);
}

.form-group select option { background: var(--bg-elevated); }

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

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--gold-bright); }

.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--gold-bright);
  font-size: 1.05rem;
  display: none;
}

/* ─── LOCATION MATÉRIEL ──────────────────────────────────── */
.materiel-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.materiel-inner { max-width: 1100px; margin: 0 auto; }

.materiel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.materiel-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.08);
}

.materiel-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.materiel-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.materiel-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

/* ─── RESTAURANTS ────────────────────────────────────────── */
.restaurants-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.restaurants-inner { max-width: 1100px; margin: 0 auto; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-block {}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 4rem;
}

.footer-nav-col {}

.footer-nav-col h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-copy span { color: var(--gold-dim); }

/* ─── ALERT / FLASH ──────────────────────────────────────── */
.flash-success {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #7de8a0;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.flash-error {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.25);
  color: #e08080;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .packs-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-nav { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .contact-form { padding: 2rem 1.5rem; }
}
