/* ============================================================
   NYASA LUXURY SPA — Main Stylesheet
   Fonts: Cinzel (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* === VARIABLES === */
:root {
  --bg:          #FAF9F6;
  --fg:          #1C2B33;
  --gold:        #C9A227;
  --gold-light:  #E8D5A3;
  --gold-pale:   #F5EDD5;
  --charcoal:    #1C2B33;
  --charcoal-2:  #243542;
  --white:       #FFFFFF;
  --muted:       #6B7280;
  --border:      #E8D5A3;
  --card-bg:     #FFFFFF;
  --green-wa:    #25D366;
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --shadow:      0 4px 24px rgba(28,43,51,0.08);
  --shadow-gold: 0 4px 16px rgba(201,162,39,0.25);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
.font-display { font-family: 'Cinzel', serif; }
h1, h2, h3, h4 { font-family: 'Cinzel', serif; line-height: 1.2; color: var(--fg); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--muted); }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 3rem; font-weight: 600; font-size: 0.9375rem;
  transition: all 0.2s ease; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: #b38f20; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,162,39,0.35); }
.btn-outline { background: transparent; color: var(--fg); border: 2px solid var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.25); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--fg); }
.btn-white:hover { background: var(--gold); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-full { width: 100%; }
.btn svg, .btn i { flex-shrink: 0; }

/* === HEADER === */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--bg); padding: 1rem 0;
  transition: all 0.3s ease; border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  padding: 0.5rem 0; box-shadow: var(--shadow);
  border-bottom-color: var(--border); background: rgba(250,249,246,0.97);
  backdrop-filter: blur(8px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo-wrap { display: inline-flex; align-items: center; }
.logo-pill {
  background: var(--charcoal); border-radius: var(--radius);
  padding: 0.5rem 1rem; transition: opacity 0.2s;
}
.logo-pill:hover { opacity: 0.88; }
.logo-pill img { height: 2.75rem; width: auto; }

nav.desktop-nav { display: none; }
@media (min-width: 1024px) { nav.desktop-nav { display: flex; align-items: center; gap: 1.75rem; } }
nav.desktop-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--fg);
  transition: color 0.2s; position: relative;
}
nav.desktop-nav a:hover, nav.desktop-nav a.active { color: var(--gold); }
nav.desktop-nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 1px;
}

.header-ctas { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .header-ctas { display: flex; } }
.header-icon-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--fg);
  transition: all 0.2s; background: transparent;
}
.header-icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.header-wa-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-wa); color: var(--white);
  transition: background 0.2s; box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.header-wa-btn:hover { background: #1da851; }
.header-call-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.25rem; border-radius: 3rem;
  background: var(--gold); color: var(--white); font-weight: 600; font-size: 0.875rem;
  transition: all 0.2s; box-shadow: var(--shadow-gold);
}
.header-call-btn:hover { background: #b38f20; transform: translateY(-1px); }

/* Hamburger */
.menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; color: var(--fg);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn svg { width: 1.5rem; height: 1.5rem; }
#close-icon { display: none; }

/* Mobile Menu */
#mobile-menu {
  display: none; flex-direction: column; padding: 1rem 1.25rem 1.5rem;
  background: var(--bg); border-top: 1px solid var(--border);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  padding: 0.75rem 1rem; border-radius: var(--radius); font-weight: 500; font-size: 0.95rem;
  color: var(--fg); transition: all 0.15s;
}
#mobile-menu a:hover, #mobile-menu a.active { background: var(--gold-pale); color: var(--gold); }
.mobile-menu-ctas { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* === HERO === */
.hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  background: var(--charcoal); overflow: hidden; padding-top: 5rem;
}
.hero-full { min-height: 90vh; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,43,51,0.82) 0%, rgba(28,43,51,0.55) 60%, rgba(28,43,51,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 3rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(201,162,39,0.5); color: var(--gold);
  padding: 0.375rem 1rem; border-radius: 3rem; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 2rem; max-width: 560px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* === TRUST STRIP === */
.trust-strip {
  background: var(--charcoal); padding: 1rem 0; overflow: hidden;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.2); display: none; }
@media (min-width: 768px) { .trust-sep { display: block; } }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block; color: var(--gold); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }
.gold-line { width: 3.5rem; height: 3px; background: var(--gold); margin: 1rem auto 0; border-radius: 2px; }

/* === SERVICE CARDS === */
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,43,51,0.12);
  border-color: var(--gold);
}
.service-card-img {
  height: 13rem; overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(4px);
  font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 3rem;
  color: var(--fg);
}
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover .service-card-body h3 { color: var(--gold); }
.service-card-body p { font-size: 0.9rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.service-card-meta { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.service-card-arrow {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.service-card:hover .service-card-arrow { background: var(--gold); color: var(--white); }

/* === SERVICE PAGE === */
.service-page-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) { .service-page-grid { grid-template-columns: 1fr 380px; align-items: start; } }

.service-content h2 { margin-bottom: 0.5rem; }
.gold-underline { width: 3.5rem; height: 3px; background: var(--gold); margin-bottom: 1.5rem; border-radius: 2px; }
.service-desc { font-size: 1.0625rem; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }

.benefits-card {
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2rem;
}
.benefits-card h3 { font-size: 1.1875rem; margin-bottom: 1.25rem; }
.benefit-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.875rem; }
.benefit-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.1rem;
}
.benefit-check svg { color: var(--white); }
.benefit-item span { font-weight: 500; color: var(--fg); }

.ideal-for-section { margin-bottom: 2rem; }
.ideal-for-section h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.review-quote {
  border-left: 4px solid var(--gold); padding: 1rem 1.5rem;
  font-style: italic; font-size: 1.0625rem; color: var(--fg);
  background: var(--card-bg); border-radius: 0 var(--radius) var(--radius) 0;
}

/* Sticky CTA Panel */
.sticky-cta { position: sticky; top: 5.5rem; }
.urgency-bar {
  display: flex; align-items: center; gap: 0.625rem;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: var(--radius); padding: 0.75rem 1rem; margin-bottom: 1rem;
  color: #B91C1C; font-size: 0.875rem; font-weight: 700;
}
.urgency-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #EF4444; flex-shrink: 0; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.booking-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 1rem;
}
.booking-card-head { background: var(--charcoal); padding: 1.5rem; text-align: center; }
.booking-card-head h3 { color: var(--white); font-size: 1.375rem; margin-bottom: 0.25rem; }
.booking-card-head p { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.booking-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem; }

.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.625rem 0.75rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--fg);
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

.address-box {
  background: var(--gold-pale); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.875rem 1rem;
  font-size: 0.8125rem; color: var(--muted); text-align: center; line-height: 1.5;
}

/* === GALLERY === */
.gallery-grid { display: grid; gap: 1rem; }
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr; } }

.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--charcoal);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-label {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(28,43,51,0.75) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; padding: 1.25rem;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-label span { color: var(--white); font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -2rem; right: 0;
  color: var(--white); font-size: 1.75rem; line-height: 1; background: transparent; border: none; cursor: pointer;
}

/* === PACKAGES PAGE === */
.package-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem; flex: 1;
}
.package-card-dark {
  background: var(--charcoal); border-color: var(--charcoal);
}
.package-card-dark h3,.package-card-dark h4 { color: var(--white); }
.package-card-dark p { color: rgba(255,255,255,0.7); }

.most-booked-badge {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gold); color: var(--charcoal);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1.25rem; border-radius: 3rem; width: fit-content; margin: 0 auto 1.5rem;
}

.package-feature { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.package-check { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }

.specialty-item {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.specialty-item:last-child { border-bottom: none; }
@media (min-width: 640px) {
  .specialty-item { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* === CTA SECTION === */
.cta-section {
  background: var(--charcoal);
  background-image: linear-gradient(135deg, var(--charcoal) 0%, #243542 100%);
  padding: 5rem 0; text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 2rem; font-size: 1.0625rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* === REVIEWS === */
.review-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.review-stars { display: flex; gap: 0.25rem; margin-bottom: 0.875rem; }
.star { color: var(--gold); font-size: 1.125rem; }
.review-text { font-size: 1rem; color: var(--fg); margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--fg); }
.review-verified { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.25rem; }
.review-verified svg { color: #22C55E; }

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 1rem;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; background: var(--card-bg);
  font-weight: 600; font-size: 1rem; color: var(--fg); gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; font-size: 1.25rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--muted); line-height: 1.7; background: var(--card-bg); }
.faq-item.open .faq-answer { display: block; }

/* === CONTACT === */
.contact-form { display: flex; flex-direction: column; gap: 1.125rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.375rem; color: var(--fg); }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.9375rem; color: var(--fg);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-control:focus { border-color: var(--gold); }
textarea.form-control { min-height: 7rem; resize: vertical; }

.contact-info-card {
  background: var(--charcoal); border-radius: var(--radius-lg); padding: 2rem; color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius); background: rgba(201,162,39,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { color: var(--gold); }
.contact-info-item h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.contact-info-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 280px; margin-top: 1.5rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* === ABOUT === */
.about-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-stat { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.about-stat .num { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 800; color: var(--gold); display: block; }
.about-stat .lbl { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* === FLOATING WHATSAPP === */
.float-wa {
  position: fixed; bottom: 5.5rem; right: 1.25rem; z-index: 900;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: var(--green-wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: wa-float 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
@keyframes wa-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@media (min-width: 768px) { .float-wa { bottom: 1.5rem; right: 1.5rem; } }

/* === MOBILE STICKY BAR === */
.mobile-sticky-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--charcoal); padding: 0.5rem 0.75rem; gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
@media (min-width: 768px) { .mobile-sticky-bar { display: none; } }
.sticky-bar-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; padding: 0.5rem; border-radius: var(--radius); font-size: 0.7rem;
  font-weight: 600; color: var(--white); transition: background 0.2s;
}
.sticky-bar-btn.call-btn  { background: var(--gold); }
.sticky-bar-btn.wa-btn    { background: var(--green-wa); }
.sticky-bar-btn.dir-btn   { background: rgba(255,255,255,0.1); }
.sticky-bar-btn svg { width: 1.2rem; height: 1.2rem; }

/* === FOOTER === */
footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { height: 3rem; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 0.85rem; transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.625rem; align-items: flex-start; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0; display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; text-align: center; font-size: 0.8125rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* === PAGE HEADER SPACING === */
.page-content { padding-top: 5.25rem; }

/* === UTILITY === */
.bg-gold-pale { background: var(--gold-pale); }
.bg-charcoal { background: var(--charcoal); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.border-gold { border: 1px solid var(--border); }

/* === FAQ JS === */
.faq-question { -webkit-user-select: none; user-select: none; }
