*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
@media (min-width: 1024px) {
  html { font-size: 80%; }
}
body {
  background: #FDFAF5;
  color: #2C2418;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #F5E6B2;
  --gold-dark: #8B6508;
  --ivory: #FDFAF5;
  --ivory-dark: #F5EFE4;
  --charcoal: #2C2418;
  --charcoal-light: #4A3F2F;
  --warm-gray: #7A6E5F;
}

#progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #8B6508, #B8860B, #D4A017, #F5E6B2, #D4A017, #B8860B);
  z-index: 9999;
  transition: width 0.1s linear;
}

#navbar {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(184,134,11,0.15), 0 4px 24px rgba(44,36,24,0.06);
  padding: 0.75rem 0;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

#lang-toggle {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
#lang-toggle:hover {
  background: var(--gold);
  color: var(--ivory);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

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

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FDFAF5 0%, #F5EFE4 45%, #EDE4D3 100%);
}
#hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.hero-tagline .gold-word {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  line-height: 1.7;
  max-width: 520px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.3);
  padding: 0.4rem 1rem;
  border-radius: 1px;
  background: rgba(184,134,11,0.04);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,134,11,0.35); }
.btn-gold:hover::before { transform: translateX(200%); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
}
.btn-outline:hover { background: var(--gold); color: var(--ivory); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,134,11,0.25); }

@media (max-width: 639px) {
  .btn-gold, .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider-icon { color: var(--gold); font-size: 0.6rem; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4.2vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}
.section-title .italic { font-style: italic; color: var(--gold); }

.feature-card {
  background: white;
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 2px solid rgba(184,134,11,0.15);
  border-right: 2px solid rgba(184,134,11,0.15);
  transition: all 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(184,134,11,0.12), 0 4px 20px rgba(44,36,24,0.06);
  border-color: rgba(184,134,11,0.3);
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover::after { width: 60px; height: 60px; border-color: rgba(184,134,11,0.4); }

.card-icon {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(184,134,11,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  background: rgba(184,134,11,0.04);
}
.feature-card:hover .card-icon {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.card-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.75;
  font-weight: 300;
}
.card-badge {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184,134,11,0.3);
  padding-bottom: 2px;
}

#process { background: #2C2418; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(184,134,11,0.28);
  line-height: 1;
  transition: color 0.6s ease, text-shadow 0.6s ease;
  will-change: color;
}
.step-card.visible .step-number {
  color: rgba(184,134,11,0.72);
  text-shadow: 0 0 40px rgba(184,134,11,0.22);
}
.step-card:hover .step-number {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(184,134,11,0.45);
}

.step-card {
  border-left: 1px solid rgba(184,134,11,0.2);
  padding-left: 2rem;
  padding-bottom: 3rem;
  position: relative;
  transition: all 0.3s;
}
.step-card::before {
  content: '';
  position: absolute;
  left: -5px; top: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #2C2418;
  transition: all 0.3s;
}
.step-card:hover::before { transform: scale(1.5); box-shadow: 0 0 12px rgba(184,134,11,0.5); }

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(253,250,245,0.55);
  line-height: 1.75;
  font-weight: 300;
}

#contact {
  background: linear-gradient(135deg, #F5EFE4 0%, #EDE4D3 50%, #E4D8C5 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.btn-wa {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #25D366; color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(37,211,102,0.45);
  background: #1ebe5d;
}
.btn-wa:hover::before { transform: translateX(120%); }
.btn-wa:active { transform: translateY(-1px) scale(0.99); }

.btn-call {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--charcoal); color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(44,36,24,0.2);
}
.btn-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(184,134,11,0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(44,36,24,0.35), 0 0 0 3px rgba(184,134,11,0.18);
  background: #1a1510;
}
.btn-call:hover::before { transform: translateX(120%); }
.btn-call:active { transform: translateY(-1px) scale(0.99); }

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.btn-wa { animation: waPulse 2.5s ease infinite; }
.btn-wa:hover { animation: none; }

@keyframes btnShimmer {
  0%    { transform: translateX(-100%); }
  100%  { transform: translateX(100%);  }
}
.btn-wa::after,
.btn-insta::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(255,255,255,0.0)  35%,
    rgba(255,255,255,0.26) 50%,
    rgba(255,255,255,0.0)  65%,
    transparent 80%
  );
  border-radius: inherit;
  animation: btnShimmer 2.6s linear infinite;
  animation-delay: 0s;
  pointer-events: none;
}
.btn-wa:hover::after,
.btn-insta:hover::after { opacity: 0; animation-play-state: paused; }

@keyframes clickShimmer {
  0%   { transform: translateX(-100%); opacity: 1; }
  100% { transform: translateX(100%);  opacity: 0; }
}
.btn-call::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(255,255,255,0.0)  35%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0.0)  65%,
    transparent 80%
  );
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
}
.btn-call.shimmer-once::after {
  animation: clickShimmer 0.65s ease forwards;
}
.btn-call:hover { box-shadow: 0 10px 35px rgba(44,36,24,0.35), 0 0 0 3px rgba(184,134,11,0.18); }

.btn-insta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(131,58,180,0.3);
}
.btn-insta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.2) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-insta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(131,58,180,0.45);
  filter: brightness(1.08);
}
.btn-insta:hover::before { transform: translateX(120%); }
.btn-insta:active { transform: translateY(-1px) scale(0.99); }

.ribbon-wrap {
  overflow: hidden;
  background: var(--charcoal);
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  padding: 0.7rem 0;
  position: relative;
}
.ribbon-wrap::before,
.ribbon-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ribbon-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--charcoal), transparent); }
.ribbon-wrap::after  { right: 0; background: linear-gradient(270deg, var(--charcoal), transparent); }
.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonScroll 28s linear infinite;
}
.ribbon-track:hover { animation-play-state: paused; }
@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ribbon-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,230,178,0.55);
  white-space: nowrap; flex-shrink: 0;
}
.ribbon-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0; opacity: 0.7;
}
.ribbon-item-gold { color: var(--gold); font-weight: 700; }

footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,134,11,0.15);
}
.footer-social a {
  color: rgba(253,250,245,0.4);
  font-size: 1.1rem;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .fb-grid { grid-template-columns: 1fr !important; }
  #fb-doc { padding: 1.2rem !important; }
  #fb-doc > div { padding: 1.2rem !important; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.ornament-num {
  font-family: 'Playfair Display', serif;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(184,134,11,0.04);
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}

.stat-block {
  border-left: 2px solid rgba(184,134,11,0.3);
  padding-left: 1.2rem;
  min-width: 90px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.2rem;
  white-space: nowrap;
}

.elegant-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm-gray);
  font-weight: 300;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
}

[lang="hi"] .hero-tagline,
[lang="hi"] .section-title,
[lang="hi"] .card-title,
[lang="hi"] .step-title,
[lang="hi"] .contact-heading {
  line-height: 1.2;
}

:lang(hi) [data-hi],
:lang(hi) .location-badge,
:lang(hi) .nav-link,
:lang(hi) .section-label,
:lang(hi) .stat-label,
:lang(hi) .hero-subtitle,
:lang(hi) .card-body,
:lang(hi) .card-badge,
:lang(hi) .step-desc,
:lang(hi) .elegant-quote,
:lang(hi) .btn-gold,
:lang(hi) .btn-outline,
:lang(hi) .btn-wa span,
:lang(hi) .btn-call span,
:lang(hi) .btn-insta span,
:lang(hi) .ribbon-item,
:lang(hi) [style*="letter-spacing"] {
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

@media (max-width: 768px) {
  .hero-tagline { font-size: clamp(2.4rem, 10vw, 4.5rem); line-height: 1.05; }
  .ornament-num { font-size: 8rem; }
}
@media (max-width: 480px) {
  .ornament-num { font-size: 5.5rem; }
}
