/* ============================================================
   BAKKER CAR CLEANING — Cinematic Luxury Design System v3
   "Where Detailing Meets Excellence"
   ============================================================ */

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

/* ── Custom Properties ────────────────────────────────── */
:root {
  --void:          #020202;
  --void-soft:     #080808;
  --void-card:     #0d0d0d;
  --gold:          #D4AF37;
  --gold-light:    #E8CD6A;
  --gold-dark:     #A68B28;
  --gold-pale:     #F0E2A0;
  --gold-glow:     rgba(212, 175, 55, 0.12);
  --gold-glow-md:  rgba(212, 175, 55, 0.25);
  --gold-glow-lg:  rgba(212, 175, 55, 0.40);
  --warm-white:    #F5F0E8;
  --warm-gray:     #8A847E;
  --glass-bg:      rgba(255, 255, 255, 0.025);
  --glass-border:  rgba(255, 255, 255, 0.06);

  --ff: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

body {
  font-family: var(--ff);
  background: var(--void);
  color: var(--warm-white);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ── Noise Overlay ────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Gold Particle Canvas ─────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out-expo), visibility 1s;
  touch-action: none;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__ring {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(212, 175, 55, 0.3);
  animation: loaderSpin 1.5s linear infinite;
}

.loader__ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: var(--gold-light);
  border-left-color: rgba(212, 175, 55, 0.2);
  animation: loaderSpin 2s linear infinite reverse;
}

.loader__logo {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 30px var(--gold-glow-md));
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader__brand {
  margin-top: 48px;
  text-align: center;
}

.loader__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.loader__tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.loader__line {
  margin-top: 40px;
  width: 200px;
  height: 1px;
  background: rgba(212, 175, 55, 0.1);
  overflow: hidden;
  border-radius: 1px;
}

.loader__line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderBar 2.8s var(--ease-out-expo) forwards;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.15)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 50px rgba(212,175,55,0.5)); transform: scale(1.05); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderBar { to { width: 100%; } }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(2, 2, 2, 0.9);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.08);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav__brand:hover { filter: drop-shadow(0 0 16px var(--gold-glow-md)); }

.nav__logo { height: 48px; }

.nav__brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav__brand-bakker {
  color: var(--gold);
}

.nav__brand-sub {
  color: var(--warm-white);
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 13px;
}

.nav__links { display: flex; gap: 40px; align-items: center; }

.nav__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  position: relative;
  padding: 4px 0;
  transition: color 0.4s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav__link:hover { color: var(--warm-white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--gold); }
.nav__link.active::after { width: 100%; }

.nav__cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Language Selector ────────────────────────────────── */
.lang-switch {
  position: relative;
}

.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--warm-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-switch__btn:hover { border-color: rgba(212,175,55,0.3); }
.lang-switch__flag { width: 18px; height: 14px; border-radius: 1px; }
.lang-switch__arrow { width: 8px; height: 8px; opacity: 0.4; transition: transform 0.3s; }
.lang-switch__btn:hover .lang-switch__arrow { opacity: 0.7; }

.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
  z-index: 100;
}

.lang-switch__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  color: rgba(245,240,232,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.lang-switch__option svg { width: 18px; height: 14px; border-radius: 1px; flex-shrink: 0; }
.lang-switch__option:hover { background: rgba(212,175,55,0.08); color: var(--gold); }

.nav__phone {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--warm-gray);
  transition: color 0.3s;
}

.nav__phone:hover { color: var(--gold); }

.nav__cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 1;
}

/* Animated gradient border */
.nav__cta::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #A68B28, #E8CD6A, #D4AF37, #F0E2A0, #A68B28);
  background-size: 300% 100%;
  animation: ctaBorderShimmer 3s linear infinite;
  z-index: -2;
  border-radius: inherit;
}

/* Inner background (void) to create border effect */
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--void);
  z-index: -1;
  transition: background 0.5s var(--ease-out-expo);
}

@keyframes ctaBorderShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.nav__cta:hover { color: var(--void); box-shadow: 0 0 30px var(--gold-glow-md); }
.nav__cta:hover::before { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  z-index: 9002;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9001;
  background: rgba(2, 2, 2, 0.98);
  backdrop-filter: blur(60px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.nav__overlay.active { display: flex; opacity: 1; }

.nav__overlay a {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  transition: all 0.3s;
}

.nav__overlay a:hover { color: var(--gold); letter-spacing: 8px; }

.nav__overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--warm-white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.nav__overlay-close:hover { border-color: var(--gold); color: var(--gold); }

.nav__overlay-lang {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.nav__overlay-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.nav__overlay-lang-btn svg { width: 22px; height: 16px; border-radius: 2px; }
.nav__overlay-lang-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   HERO — Dynamic Slideshow
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Video background ── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, var(--void) 100%),
    linear-gradient(180deg,
      var(--void) 0%,
      transparent 15%,
      transparent 60%,
      var(--void) 100%
    ),
    rgba(0, 0, 0, 0.1);
}

.hero__gold-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line span {
  display: inline-block;
}

.hero__title .gold {
  color: transparent;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-pale) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: goldShimmer 5s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero__sub {
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 400;
  color: rgba(245, 240, 232, 0.78);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% auto;
  color: var(--void);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 4px 30px var(--gold-glow-md), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px var(--gold-glow-lg);
  background-position: right center;
}

.btn-primary svg {
  width: 14px; height: 14px;
  transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--warm-white);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.4);
}

.hero__scroll-bar {
  width: 1px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ══════════════════════════════════════════════════════════
   SECTION SYSTEM
   ══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: clamp(100px, 14vw, 160px) clamp(24px, 5vw, 80px);
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.section__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section__label::before,
.section__label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.section__title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.05;
}

.section__title .gold { 
  color: transparent;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
}

.section__subtitle {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: rgba(245, 240, 232, 0.65);
  max-width: 540px;
  margin: 20px auto 0;
  line-height: 1.9;
}

/* ══════════════════════════════════════════════════════════
   FULL-WIDTH PHOTO BREAK
   ══════════════════════════════════════════════════════════ */
.photo-break {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.photo-break::before,
.photo-break::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 25%;
  z-index: 5;
  pointer-events: none;
}

.photo-break::before {
  top: 0;
  background: linear-gradient(180deg, var(--void) 0%, transparent 100%);
}

.photo-break::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--void) 0%, transparent 100%);
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.05) saturate(0.9);
}

.photo-break__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,2,2,0.30) 0%, transparent 18%, transparent 82%, rgba(2,2,2,0.30) 100%),
    rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break__text {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  text-align: center;
  padding: 0 5vw; /* Added padding to prevent touching edges on mobile */
  text-shadow: 0 2px 40px rgba(0,0,0,0.8), 0 0 80px rgba(0,0,0,0.5);
}

/* ══════════════════════════════════════════════════════════
   SERVICES — Custom SVG Animations
   ══════════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-card__number {
  font-size: 72px;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.06);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  transition: color 0.5s;
}

.service-card:hover .service-card__number {
  color: rgba(212, 175, 55, 0.12);
}

.service-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.service-card__icon svg { width: 100%; height: 100%; }

/* SVG animation classes */
.svg-pulse {
  animation: svgPulse 2s ease-in-out infinite;
}

.svg-glow {
  animation: svgGlow 2s ease-in-out infinite;
}

.svg-rotate {
  animation: svgRotate 12s linear infinite;
  transform-origin: center;
}

.svg-float {
  animation: svgFloat 3s ease-in-out infinite;
}

.svg-draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: svgDraw 1.5s var(--ease-out-expo) forwards;
}

.reveal.visible .svg-draw,
.reveal-scale.visible .svg-draw {
  animation: svgDraw 1.5s var(--ease-out-expo) forwards;
}

@keyframes svgPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

@keyframes svgGlow {
  0%, 100% { opacity: 0.35; filter: drop-shadow(0 0 4px rgba(212,175,55,0.2)); transform: scale(1); }
  50% { opacity: 1; filter: drop-shadow(0 0 14px rgba(212,175,55,0.7)); transform: scale(1.15); }
}

@keyframes svgRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes svgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes svgDraw {
  to { stroke-dashoffset: 0; }
}

/* Hover animation boost on service cards */
.service-card:hover .svg-pulse { animation-duration: 1s; }
.service-card:hover .svg-glow { animation-duration: 0.8s; }
.service-card:hover .service-card__icon { filter: drop-shadow(0 0 20px var(--gold-glow-lg)); transform: scale(1.1); transition: all 0.4s; }

/* Value card icon animation on reveal */
.value-card__icon .value-svg {
  animation: svgFloat 3s ease-in-out infinite;
  transition: filter 0.4s, transform 0.4s;
}

.value-card:hover .value-svg {
  filter: drop-shadow(0 0 24px var(--gold-glow-lg));
  transform: scale(1.12) translateY(-4px);
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.9;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.service-card__list li {
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.6);
  padding-left: 24px;
  position: relative;
}

.service-card__list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: 6px;
  line-height: 20px;
}

.service-card__list li:nth-child(odd) {
  color: var(--gold);
}

.service-card__list li:nth-child(even) {
  color: rgba(245, 240, 232, 0.6);
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════ */
.stats {
  position: relative;
  z-index: 1;
  padding: 80px clamp(24px, 5vw, 80px);
  background: rgba(212, 175, 55, 0.02);
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat__number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ══════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1050px;
  margin: 0 auto;
}

.price-card {
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 36px;
  text-align: center;
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.price-card:hover {
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.price-card--featured {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: scaleY(1.02);
  z-index: 1;
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.12),
    0 0 80px rgba(212, 175, 55, 0.06),
    inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.price-card__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--void);
}

.price-card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-card__type {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 32px;
}

.price-card__price {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card__price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-gray);
}

.price-card__note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 36px;
}

.price-card__divider {
  width: 40px;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 0 auto 28px;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.price-card__features li {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

.price-card__features li strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-card__features li strong.price-val {
  margin-left: auto;
}

.price-card__btn {
  width: 100%;
  padding: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.price-card__btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.price-card__btn:hover { color: var(--void); border-color: var(--gold); }
.price-card__btn:hover::before { transform: scaleX(1); }

.price-card--featured .price-card__btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  color: var(--void);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.price-card--featured .price-card__btn:hover {
  box-shadow: 0 8px 40px var(--gold-glow-md);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   PRICING BACKGROUND
   ══════════════════════════════════════════════════════════ */
#pricing {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#pricing::before {
  content: '';
  position: absolute;
  inset: -60px; /* Overlap edges to hide blur cutoffs */
  background-image: url('photos/WhatsApp Image 2026-03-24 at 11.27.13.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(100%) blur(15px);
  z-index: -2;
}

#pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 2, 0.80); /* Dark overlay — lets blurred image show through but darker */
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════
   GALLERY — Improved Dense Grid
   ══════════════════════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 4px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  contain: layout style;
}

.gallery__item.is-hidden {
  display: none;
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
  filter: brightness(0.8) contrast(1.05);
  will-change: transform;
}

.gallery__item:hover img {
  transform: scale(1.1);
  filter: brightness(0.5) contrast(1.1);
}

.gallery__item-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.gallery__item:hover .gallery__item-info { opacity: 1; }

.gallery__item-info span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
  z-index: 2;
  pointer-events: none;
}

.gallery__item:hover::after { border-color: rgba(212, 175, 55, 0.3); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(2, 2, 2, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 80vw;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}

.lightbox__content img.lightbox--fading {
  opacity: 0;
}

.lightbox__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 4px 0;
}

.lightbox__caption {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.lightbox__counter {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, 0.35);
}

.lightbox__close {
  position: absolute;
  top: 28px; right: 28px;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}

.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(245, 240, 232, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}

.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }

/* ══════════════════════════════════════════════════════════
   VALUES — Animated Custom SVGs
   ══════════════════════════════════════════════════════════ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.value-card:hover {
  background: rgba(255,255,255,0.04);
}

.value-card:hover .value-svg {
  filter: drop-shadow(0 0 16px var(--gold-glow-md));
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.value-card__text {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.9;
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact__info-block {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact__info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact__info-value {
  font-size: 15px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
}

.contact__info-value a {
  color: var(--warm-white);
  transition: color 0.3s;
}

.contact__info-value a:hover { color: var(--gold); }

.contact__tagline {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 20px;
  font-style: italic;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--warm-white);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 300;
  transition: all 0.4s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 132, 126, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow), 0 0 30px var(--gold-glow);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--void-card); color: var(--warm-white); }
.form-group textarea { min-height: 130px; resize: vertical; }

.contact__submit {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 18px 48px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--void);
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 4px 30px var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.contact__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px var(--gold-glow-md);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  padding: 80px clamp(24px, 5vw, 80px) 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.06);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 60px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__logo { height: 72px; }

.footer__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-white);
}

.footer__name-gold {
  color: var(--gold);
}

.footer__contact-grid {
  display: flex;
  gap: 48px;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__contact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.footer__contact-value {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.65);
  transition: color 0.3s;
  text-decoration: none;
}

a.footer__contact-value:hover { color: var(--gold); }

.footer__right {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 11px;
  font-weight: 400;
  color: rgba(138, 132, 126, 0.6);
}

.footer__copy a { color: rgba(138, 132, 126, 0.5); transition: color 0.3s; }
.footer__copy a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Scale reveal for gallery */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ══════════════════════════════════════════════════════════
   SVG STROKE-DRAW ANIMATION
   ══════════════════════════════════════════════════════════ */
.stroke-draw {
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  animation: strokeDraw 3s ease-in-out infinite;
}

.stroke-draw--delay-1 { animation-delay: 0.4s; }
.stroke-draw--delay-2 { animation-delay: 0.8s; }

@keyframes strokeDraw {
  0%   { stroke-dashoffset: var(--path-length); opacity: 0.3; }
  15%  { opacity: 1; }
  50%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: calc(var(--path-length) * -1); opacity: 0.3; }
}

/* ══════════════════════════════════════════════════════════
   CHATBOT
   ══════════════════════════════════════════════════════════ */
.chatbot {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9500;
}

.chatbot__fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  color: var(--void);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(212,175,55,0.3);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  z-index: 2;
}

.chatbot__fab:hover { transform: scale(1.08); box-shadow: 0 8px 40px rgba(212,175,55,0.4); }
.chatbot__fab-icon { width: 26px; height: 26px; transition: all 0.3s; position: absolute; }
.chatbot__fab-icon--close { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.chatbot.active .chatbot__fab-icon--chat { opacity: 0; transform: rotate(90deg) scale(0.5); }
.chatbot.active .chatbot__fab-icon--close { opacity: 1; transform: rotate(0) scale(1); }

.chatbot__fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
  animation: chatPulse 2.5s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
}

.chatbot.active .chatbot__fab::before { display: none; }

.chatbot__panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
}

.chatbot.active .chatbot__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  background: rgba(212,175,55,0.03);
}

.chatbot__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.2);
}

.chatbot__avatar img { width: 24px; height: 24px; }

.chatbot__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 0.5px;
}

.chatbot__status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.chatbot__close {
  width: 32px; height: 32px;
  background: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(245,240,232,0.4);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.chatbot__close:hover { border-color: var(--gold); color: var(--gold); }

.chatbot__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  max-height: 320px;
}

.chatbot__body::-webkit-scrollbar { width: 4px; }
.chatbot__body::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.chatbot__body::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.25); border-radius: 4px; }
.chatbot__body::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.5); }
.chatbot__body { scrollbar-width: thin; scrollbar-color: rgba(212,175,55,0.25) transparent; }

.chatbot__message {
  max-width: 90%;
  animation: chatFadeIn 0.3s ease-out;
}

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

.chatbot__message--bot {
  align-self: flex-start;
}

.chatbot__message--bot p {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 2px 12px 12px 12px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,240,232,0.85);
}

.chatbot__message--user {
  align-self: flex-end;
}

.chatbot__message--user p {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 12px 2px 12px 12px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--void);
}

.chatbot__buttons {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(212,175,55,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot__topic {
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(212,175,55,0.15);
  color: rgba(245,240,232,0.6);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.chatbot__topic:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.05);
}

.chatbot__back {
  padding: 6px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(245,240,232,0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.chatbot__back:hover { border-color: rgba(245,240,232,0.2); color: rgba(245,240,232,0.6); }

.chatbot__message--bot a, .chatbot__link { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(212,175,55,0.3); transition: border-color 0.2s; }
.chatbot__message--bot a:hover { border-color: var(--gold); }
.chatbot__message--bot strong { color: var(--warm-white); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 0;
  transform: translateY(100%);
  animation: cookieSlideUp 0.6s 1.5s var(--ease-out-expo) forwards;
}

.cookie-banner.hidden { display: none; }

@keyframes cookieSlideUp {
  to { transform: translateY(0); }
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-left: 3px solid var(--gold);
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,240,232,0.6);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: border-color 0.2s;
}
.cookie-banner__text a:hover { border-color: var(--gold); }

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 10px 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--void);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-banner__accept:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--gold-glow); }

.cookie-banner__decline {
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-banner__decline:hover { border-color: rgba(245,240,232,0.3); color: rgba(245,240,232,0.6); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing__grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--wide { grid-column: auto; }
  .values__grid   { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .stats__grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-wrap { display: none; }
  .nav__hamburger { display: flex; }
  .hero__scroll { display: none; }
  .hero__title { letter-spacing: -1px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: auto; padding-left: 40px; padding-right: 40px; justify-content: center; }
  .contact__submit { width: auto; justify-self: center; padding-left: 48px; padding-right: 48px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 6px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { width: 40px; height: 40px; top: 12px; right: 12px; font-size: 16px; }
  .lightbox__content img { max-width: 92vw; max-height: 70vh; }
  .lightbox__info { padding: 12px 0 0; }
  .contact__form { grid-template-columns: 1fr; }
  .footer { padding: 50px 24px 24px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer__brand { justify-content: center; flex-direction: column; gap: 12px; }
  .footer__logo { height: 56px; }
  .footer__name { font-size: 14px; letter-spacing: 4px; }
  .footer__contact-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(212,175,55,0.08);
  }
  .footer__contact-item { align-items: center; }
  .footer__right { justify-content: center; }
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; margin-top: 28px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .chatbot { bottom: 16px; right: 16px; }
  .chatbot__fab { width: 52px; height: 52px; }
  .chatbot__fab-icon { width: 22px; height: 22px; }
  .chatbot__panel {
    width: calc(100vw - 32px);
    max-height: 70vh;
    right: 0;
    bottom: 68px;
  }
  .chatbot__body { max-height: 45vh; }
  .cookie-banner__content {
    flex-direction: column;
    padding: 18px 20px;
    gap: 14px;
    text-align: center;
    border-left: none;
    border-top: 2px solid var(--gold);
  }
  .cookie-banner__text { font-size: 12px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__accept, .cookie-banner__decline { flex: 1; padding: 12px 16px; }
}

/* User requested clean photos - hide text overlays */
.gallery__item-info,
.gallery-page__item-overlay {
  display: none !important;
}
