/* ============================================
   LUXBATH PRO — Premium Dark Theme
   ============================================ */

:root {
  --bg-primary:    #080c14;
  --bg-surface:    #0f1520;
  --bg-surface2:   #141b28;
  --bg-surface3:   #1a2235;
  --gold:          #d4a853;
  --gold-light:    #f0c060;
  --gold-dark:     #a07830;
  --gold-muted:    rgba(212,168,83,0.15);
  --gold-border:   rgba(212,168,83,0.25);
  --text-primary:  #f0f0f0;
  --text-secondary:#c0c8d8;
  --text-muted:    #8892a4;
  --white:         #ffffff;
  --error:         #e05555;
  --success:       #4caf82;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-gold:   0 4px 30px rgba(212,168,83,0.18);
  --shadow-dark:   0 8px 40px rgba(0,0,0,0.6);
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography ────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── Utility ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }

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

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,168,83,0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ─── Gold Shimmer Effect ───────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 400px 100%;
  animation: shimmer 3s infinite linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Header / Navigation ───────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(8,12,20,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--gold-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: var(--transition);
}
.header.scrolled .header-inner { padding: 14px 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { width: 160px; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-surface2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-dark);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.dropdown-link:hover {
  background: var(--gold-muted);
  color: var(--gold);
}
.dropdown-link svg { width: 16px; height: 16px; opacity: 0.7; }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  gap: 5px;
  transition: var(--transition);
  background: var(--gold-muted);
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100dvh;
  background: var(--bg-surface);
  border-left: 1px solid var(--gold-border);
  z-index: 1100;
  padding: 80px 30px 40px;
  transition: var(--transition);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
}
.mobile-nav-close:hover { background: var(--gold-muted); }
.mobile-nav-logo { margin-bottom: 30px; }
.mobile-nav-logo img { width: 140px; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold);
  background: var(--gold-muted);
  border-color: var(--gold-border);
}
.mobile-nav-link svg { width: 18px; height: 18px; }
.mobile-nav-divider {
  height: 1px;
  background: var(--gold-border);
  margin: 12px 0;
}
.mobile-nav-cta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { justify-content: center; }

/* ─── Hero Section ──────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.4) brightness(0.6);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,12,20,0.97) 0%,
    rgba(8,12,20,0.8) 50%,
    rgba(8,12,20,0.75) 100%
  );
}
.hero-bg-grid {
  display: none;
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle 8s infinite;
}
@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll svg { width: 20px; height: 20px; color: var(--gold); }

/* ─── Services Section ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
  filter: saturate(0.6) brightness(0.75);
}
.service-card:hover .service-card-img {
  transform: scale(1.05);
  filter: saturate(0.8) brightness(0.85);
}
.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.service-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, var(--bg-surface));
}
.service-card-body {
  padding: 24px;
}
.service-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card-icon svg { width: 22px; height: 22px; }
.service-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.service-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card-link:hover svg { transform: translateX(4px); }

/* ─── Features / Why Us ─────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(var(--gold-light), var(--gold-dark));
  transition: var(--transition);
  border-radius: 0 0 2px 2px;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Process Steps ─────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold-border), transparent);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bg-surface2);
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--gold-muted);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Gallery / Portfolio ───────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: saturate(0.5) brightness(0.7);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
  filter: saturate(0.8) brightness(0.85);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(8,12,20,0.9) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

/* ─── Testimonials ──────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: 0.5;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-surface3);
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-loc { font-size: 0.8rem; color: var(--text-muted); }

/* ─── CTA Section ───────────────────────────── */
.cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.06) 0%, transparent 70%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  max-width: 500px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.phone-display {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  text-decoration: none;
  transition: var(--transition);
}
.phone-display:hover { color: var(--gold-light); }
.phone-display svg { width: 28px; height: 28px; }

/* ─── Footer ────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-link:hover::before { background: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: 28px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

.footer-disclaimer {
  background: var(--bg-primary);
  border-top: 1px solid var(--gold-border);
  padding: 24px 0;
}
.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  opacity: 0.7;
}
.footer-disclaimer strong { color: var(--gold); opacity: 1; }

/* ─── Cookie Modal ──────────────────────────── */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--bg-surface2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.cookie-modal.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cookie-modal-icon svg { width: 20px; height: 20px; }
.cookie-modal-title {
  font-size: 1.05rem;
  font-weight: 700;
}
.cookie-modal-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cookie-modal-text a { color: var(--gold); text-decoration: underline; }
.cookie-modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-modal-actions .btn { flex: 1; justify-content: center; }

/* ─── Page Hero (Inner Pages) ───────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--bg-primary));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--gold-border); }

/* ─── Service Page ──────────────────────────── */
.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 36px 0 16px;
  color: var(--text-primary);
}
.service-body h2:first-child { margin-top: 0; }
.service-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-body ul {
  list-style: none;
  margin-bottom: 20px;
}
.service-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}
.service-body ul li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}
.service-contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 20px;
}
.service-contact-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-contact-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-contact-card .phone-display {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: block;
}
.service-contact-card .btn { width: 100%; justify-content: center; }

.other-services {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.other-services-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.other-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid transparent;
}
.other-service-link:hover {
  color: var(--gold);
  background: var(--gold-muted);
  border-color: var(--gold-border);
}
.other-service-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Policy Pages ──────────────────────────── */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}
.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 24px 0 10px;
}
.policy-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.policy-content ul, .policy-content ol {
  margin: 12px 0 20px 20px;
}
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.policy-content a { color: var(--gold); text-decoration: underline; }
.policy-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}
.policy-meta-item {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.policy-meta-item strong { color: var(--gold); margin-right: 4px; }

/* ─── Scroll animations extra ───────────────── */
[data-aos] { will-change: transform, opacity; }

/* ─── Floating Phone Button ─────────────────── */
.float-phone {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(212,168,83,0.5);
  z-index: 888;
  transition: var(--transition);
  animation: pulsePhone 2.5s ease-in-out infinite;
}
.float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(212,168,83,0.7);
}
.float-phone svg { width: 26px; height: 26px; color: #0a0a0a; }
@keyframes pulsePhone {
  0%,100% { box-shadow: 0 4px 24px rgba(212,168,83,0.5), 0 0 0 0 rgba(212,168,83,0.3); }
  50%      { box-shadow: 0 4px 24px rgba(212,168,83,0.5), 0 0 0 14px rgba(212,168,83,0); }
}

/* ─── Google Fonts imports ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .service-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 70px 0; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; }
  .cookie-modal { left: 12px; right: 12px; bottom: 12px; }
  .hero-stats { gap: 24px; }
  .float-phone { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .section-title { font-size: 1.9rem; }
}

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Selection ─────────────────────────────── */
::selection { background: rgba(212,168,83,0.25); color: var(--gold-light); }
