/* =========================================================
   PEARL GOLD KAMPALA — STYLESHEET
   Palette: dark gold-luxe (espresso + antique gold + cream)
   Contents:
   1. Reset & Base
   2. Design Tokens
   3. Typography & Utilities
   4. Accessibility (skip link, focus, reduced motion)
   5. Preloader (gold ring + bar + counter)
   6. Ticker Bar (live rates)
   7. Header & Navigation
   8. Hero
   9. Image / Video Placeholder System
   10. About
   11. Why Choose Us
   12. Stats
   13. Calculator
   14. Services
   15. Process Timeline
   16. Products
   17. Gallery
   18. Video Section
   19. CTA Banner
   20. Contact & Booking Form
   21. Footer
   22. WhatsApp Float
   23. Scroll Reveal
   24. Responsive
   ========================================================= */

/* ---------- 1. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; margin: 0 0 0.6em; }
p { margin: 0 0 1em; color: var(--text-muted); }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  --bg-dark: #161210;
  --bg-darker: #0F0C09;
  --bg-card: #1F1A15;
  --bg-card-hover: #292119;
  --bg-input: #12100C;

  --gold-primary: #D4AF37;
  --gold-light: #F0DF9A;
  --gold-dark: #9C7A1E;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --pearl: #FBF6EA;

  --text-main: #F3ECDD;
  --text-muted: #B5A78F;
  --border-color: rgba(212, 175, 55, 0.22);
  --success: #4ECA84;
  --danger: #E2695F;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;

  --container-w: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;

  --ticker-h: 40px;
  --header-h: 76px;
}

/* ---------- 3. TYPOGRAPHY & UTILITIES ---------- */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-primary);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }

body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--bg-darker); }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #BF953F, #AA771C);
  border-radius: 6px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #1A1300;
}
.btn-gold:hover, .btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

main, section { position: relative; }

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 64px; height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}
.section-subtitle { color: var(--text-muted); font-size: 0.98rem; margin: 0; }

section[id] { scroll-margin-top: calc(var(--ticker-h) + var(--header-h) + 10px); }

.about, .why-us, .stats, .calculator-section, .services, .process,
.products, .gallery, .video-section, .cta-banner, .contact-section {
  padding: 90px 24px;
  max-width: var(--container-w);
  margin: 0 auto;
}
.stats, .cta-banner { max-width: none; }

/* ---------- 4. ACCESSIBILITY ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold-primary);
  color: #14110a;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 4000;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 5. PRELOADER ---------- */
body.is-loading { overflow: hidden; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 38%, #251D11 0%, #14100C 55%, #0A0806 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; padding: 0 20px; }

.preloader-ring {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}
.preloader-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.55);
  animation: ringSpin 16s linear infinite;
}
.preloader-ring::after {
  content: '';
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12) inset;
}
.preloader-image {
  width: min(200px, 56vw);
  height: min(200px, 56vw);
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg-darker);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55));
}

.gold-bar-track {
  width: min(280px, 74vw);
  height: 6px;
  margin: 0 auto 16px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.16);
  overflow: hidden;
  position: relative;
}
.gold-bar-fill {
  width: 0%;
  height: 100%;
  border-radius: 99px;
  background: var(--gold-gradient);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.65);
  transition: width 0.2s ease;
}

.preloader-percent {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}

.preloader-caption {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

@keyframes ringSpin { to { transform: rotate(360deg); } }

/* ---------- 6. TICKER BAR ---------- */
.ticker-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-color);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  overflow-x: auto;
  scrollbar-width: none;
}
.ticker-bar::-webkit-scrollbar { display: none; }

.ticker-container {
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  font-size: 0.78rem;
  white-space: nowrap;
}
.ticker-item { display: flex; align-items: center; gap: 8px; }
.ticker-label { color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; }
.ticker-value { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--text-main); }

.ticker-item--live .ticker-value { color: var(--success); font-weight: 600; }
.ticker-item--live .ticker-value.is-indicative { color: var(--gold-light); }

.ticker-time { color: var(--text-muted); font-size: 0.72rem; }

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(78, 202, 132, 0.6);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(78, 202, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 202, 132, 0); }
}

.ticker-item--tag { color: var(--gold-light); }

/* ---------- 7. HEADER & NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: var(--ticker-h);
  z-index: 1000;
  background: rgba(15, 12, 9, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  background: rgba(15, 12, 9, 0.98);
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  min-height: var(--header-h);
}

.logo { display: flex; align-items: center; line-height: 1.1; }
.logo-image { width: 150px; height: 46px; object-fit: contain; object-position: left center; }
.logo-word {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.primary-nav ul { display: flex; gap: 30px; }
.primary-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-primary); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 10px 20px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--bg-darker);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  transition: max-height var(--transition-med) ease;
}
.mobile-menu.is-open { max-height: 480px; }
.mobile-menu ul { padding: 20px 24px 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.10);
  color: var(--text-main);
}
.mobile-menu a:hover { color: var(--gold-primary); }
.mobile-menu-cta { margin: 20px 24px 24px; text-align: center; }

/* ---------- 8. HERO ---------- */
.hero {
  max-width: none;
  min-height: min(760px, calc(100vh - var(--ticker-h) - var(--header-h)));
  margin: 0 auto;
  padding: 110px max(24px, calc((100vw - var(--container-w)) / 2 + 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 56px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(720px 440px at 80% 28%, rgba(212, 175, 55, 0.16), transparent 62%);
}
.hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video { z-index: -2; object-fit: cover; }
.hero-overlay {
  z-index: -1;
  background: linear-gradient(100deg, rgba(20, 15, 10, 0.96) 0%, rgba(38, 28, 16, 0.80) 46%, rgba(60, 42, 18, 0.36) 100%);
}
.hero-text { max-width: 680px; }
.hero-text h1 { color: var(--text-main); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.hero-text > p { font-size: 1.05rem; max-width: 46ch; margin-bottom: 32px; color: rgba(243, 236, 221, 0.85); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(243, 236, 221, 0.22);
  padding-top: 24px;
}
.badge-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(243, 236, 221, 0.72); }
.badge-icon { font-size: 1.2rem; }
.badge-item strong { display: block; color: var(--text-main); font-size: 0.88rem; }

.hero-visual { position: relative; }
.hero-visual-card {
  position: absolute;
  right: -12px;
  bottom: -28px;
  background: #241D15;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  max-width: 220px;
}
.hero-visual-card p { font-size: 0.78rem; margin: 8px 0 0; color: var(--text-muted); }

.gold-bar-graphic {
  width: 110px;
  height: 58px;
  margin: 0 auto;
  background: var(--gold-gradient);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(300px) rotateX(16deg) rotateY(-8deg);
  box-shadow: -8px 8px 18px rgba(0, 0, 0, 0.55), inset 2px 2px 5px rgba(255, 255, 255, 0.6);
  color: #5a4000;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* ---------- 9. IMAGE / VIDEO PLACEHOLDER SYSTEM ---------- */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
}
.img-frame .ph-img { width: 100%; height: 100%; object-fit: contain; background: var(--bg-card); }

.img-frame.img-broken { border: 1px dashed var(--border-color); }
.img-frame.img-broken .ph-img { display: none; }
.img-frame.img-broken::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #181b20, #0d0f12 60%);
}
.img-frame.img-broken::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #181b20, #0d0f12 60%);
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 9;
}
.brand-video { width: 100%; height: 100%; object-fit: contain; background: var(--bg-darker); }
.video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.video-fallback code { color: var(--gold-light); }
.video-fallback-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
}
.video-frame.video-broken .brand-video { display: none; }
.video-frame.video-broken .video-fallback { display: flex; }
.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.video-controls button:disabled { opacity: 0.4; cursor: not-allowed; }
.video-counter { min-width: 90px; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.5px; }

/* ---------- 10. ABOUT ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-media .img-frame { aspect-ratio: 4 / 3; }
.about-content h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.about-facts { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.about-facts li {
  padding-left: 20px;
  position: relative;
  color: var(--text-main);
  font-size: 0.92rem;
}
.about-facts li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--gold-gradient);
  border-radius: 50%;
}

/* ---------- 11. WHY CHOOSE US ---------- */
.trusted-certified-strip {
  max-width: var(--container-w);
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(184, 134, 34, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}
.trusted-certified-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-main);
}
.trusted-certified-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  flex: 0 0 auto;
}
.trusted-certified-copy {
  flex: 1;
}
.trusted-certified-kicker {
  display: block;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.trusted-certified-copy p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}
.trusted-certified-date {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
}

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.12);
}
.why-icon { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; margin: 0; }

/* ---------- 12. STATS ---------- */
.stats {
  background: linear-gradient(180deg, #1F1A15 0%, #181310 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 60px 24px;
}
.stats-grid { max-width: var(--container-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-variant-numeric: tabular-nums;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--text-muted); }

/* ---------- 13. CALCULATOR ---------- */
.calculator-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.form-group input, .form-group select {
  background: var(--bg-input);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.calc-result {
  background: rgba(212, 175, 55, 0.07);
  border: 1px dashed var(--gold-primary);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}
.calc-result > span { font-size: 0.85rem; color: var(--text-muted); }
.calc-result h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 6px 0; font-variant-numeric: tabular-nums; }
.calc-disclaimer { font-size: 0.74rem; color: var(--text-muted); margin: 8px 0 0; }

/* ---------- 14. SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  padding: 30px 26px;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.service-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.service-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; margin: 0; }

/* ---------- 15. PROCESS TIMELINE ---------- */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding-top: 46px; }
.process-step::before {
  content: '';
  position: absolute;
  top: 27px; left: 27px;
  width: calc(100% - 10px);
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), transparent);
}
.process-step:last-child::before { display: none; }
.process-num {
  position: absolute;
  top: 0; left: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.06);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; margin: 0; }

/* ---------- 16. PRODUCTS ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.img-frame--product { aspect-ratio: 4 / 3; margin-bottom: 20px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.product-card p { font-size: 0.85rem; margin-bottom: 20px; }

/* ---------- 17. GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 4 / 3; }

/* ---------- 18. VIDEO SECTION ---------- */
.video-section { text-align: center; }

/* ---------- 19. CTA BANNER ---------- */
.cta-banner {
  text-align: center;
  background: radial-gradient(900px 420px at 50% 0%, #2A2118 0%, var(--bg-darker) 70%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  max-width: none;
  padding: 90px 24px;
}
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.cta-banner p { max-width: 46ch; margin: 0 auto 32px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- 20. CONTACT & BOOKING FORM ---------- */
.contact-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info {
  background: rgba(212, 175, 55, 0.045);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.contact-info h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 14px; }
.info-item { margin-bottom: 16px; display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(212,175,55,0.14); }
.info-item:last-child { border-bottom: none; }
.info-item strong { display: block; color: var(--gold-primary); font-size: 0.82rem; letter-spacing: 0.4px; margin-bottom: 4px; }
.info-item p { margin: 0; }
.info-item a { color: inherit; transition: color var(--transition-fast); }
.info-item a:hover { color: var(--gold-primary); }
.contact-ico { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--gold-primary); }
.telephone-item { background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.34); border-radius: var(--radius-sm); padding: 14px 16px; }
.phone-number { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 700; color: var(--gold-light); }
.phone-number a { color: var(--gold-light); }
.whatsapp-item { border-color: rgba(37, 211, 102, 0.26); }
.location-item { background: transparent; }

.booking-form {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.booking-form h3 { margin-bottom: 22px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  outline: none;
}
.form-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; pointer-events: none; }
.form-submit { width: 100%; margin-top: 4px; }
.form-success {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(78, 202, 132, 0.1);
  border: 1px solid rgba(78, 202, 132, 0.4);
  color: var(--success);
  font-size: 0.88rem;
}

/* ---------- 21. FOOTER ---------- */
.site-footer { background: var(--bg-darker); border-top: 1px solid rgba(212, 175, 55, 0.18); padding: 64px 24px 0; }
.footer-grid {
  max-width: var(--container-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p { margin-top: 12px; font-size: 0.85rem; }
.footer-links h4, .footer-contact h4 { font-size: 0.9rem; margin-bottom: 16px; color: var(--gold-light); letter-spacing: 0.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold-primary); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }

.footer-bottom {
  max-width: var(--container-w);
  margin: 0 auto;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-muted); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--gold-primary); }
.footer-disclaimer { max-width: 60ch; margin: 0; flex-basis: 100%; }

/* ---------- 22. WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 900;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}
.whatsapp-float svg { display: block; }

/* ---------- 22b. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 96px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  background: var(--bg-darker);
  color: var(--text-main);
  font-size: 1.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
  z-index: 900;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--gold-primary); color: #1A1300; }

/* ---------- 23. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- 24. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-step::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero, .about, .contact-section { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .hero-visual { order: -1; }
  .hero-visual-card { position: static; margin-top: 16px; max-width: none; }
  .about-media { order: -1; }
  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --ticker-h: 64px; }
  .why-grid, .services-grid, .product-grid, .gallery-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .ticker-item--secondary { display: none; }
  .ticker-bar { height: auto; min-height: var(--ticker-h); }
  .ticker-container {
    grid-template-columns: 1fr auto;
    display: grid;
    gap: 4px 12px;
    padding: 7px 14px;
    white-space: normal;
    line-height: 1.25;
  }
  .ticker-item { min-width: 0; gap: 5px; }
  .ticker-item--live { grid-column: 1 / -1; justify-content: center; }
  .ticker-item--tag { display: none; }
  .ticker-time { font-size: 0.65rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .back-to-top { right: 18px; bottom: 88px; }
  .about, .why-us, .stats, .calculator-section, .services, .process,
  .products, .gallery, .video-section, .cta-banner, .contact-section {
    padding: 64px 20px;
  }
}
