/* =============================================
   BOOK VEDA PUJA — Premium Landing Page CSS
   ============================================= */

/* --- CSS Variables --- */
:root {
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --gold-pale: #FFF3CC;
  --saffron: #E8651A;
  --saffron-light: #F57C2E;
  --maroon: #6B1B1B;
  --maroon-deep: #3D0C0C;
  --maroon-mid: #8B2222;
  --bg-dark: #0D0606;
  --bg-card: rgba(30, 8, 8, 0.85);
  --bg-card2: rgba(45, 12, 12, 0.7);
  --text-primary: #F5E6C8;
  --text-sub: #C8A87A;
  --text-muted: #8B6B4A;
  --border: rgba(212, 168, 67, 0.18);
  --border-bright: rgba(212, 168, 67, 0.4);
  --shadow-gold: 0 0 40px rgba(212, 168, 67, 0.15);
  --shadow-gold-strong: 0 0 80px rgba(212, 168, 67, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Jost', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- Particles Canvas --- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* --- Loader --- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-om {
  font-size: 72px;
  color: var(--gold);
  animation: om-pulse 1.5s ease-in-out infinite;
  display: block;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(212,168,67,0.8), 0 0 80px rgba(212,168,67,0.4);
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(212,168,67,0.2);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  border-radius: 2px;
  animation: loader-fill 2s ease forwards;
}
.loader-inner p {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
@keyframes om-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes loader-fill {
  from { width: 0; }
  to { width: 100%; }
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Padding --- */
.section-pad { padding: 100px 0; position: relative; }

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid var(--border-bright);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: rgba(212, 168, 67, 0.06);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
}
.section-sub {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #1a0a00;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212, 168, 67, 0.5);
}
.btn-outline {
  border: 1px solid var(--border-bright);
  color: var(--text-primary);
  background: rgba(212, 168, 67, 0.05);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.12);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.3s ease; }
.btn-outline:hover .btn-arrow { transform: translateY(3px); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--text-primary);
  white-space: nowrap;
}
.logo-om {
  font-size: 1.6rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,168,67,0.6);
  animation: logo-glow 3s ease-in-out infinite;
}
.logo-text em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
}
@keyframes logo-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(212,168,67,0.6); }
  50% { text-shadow: 0 0 40px rgba(212,168,67,1), 0 0 60px rgba(212,168,67,0.4); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-sub);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid var(--border-bright) !important;
  padding: 7px 18px;
  border-radius: 30px;
  color: var(--gold) !important;
  background: rgba(212, 168, 67, 0.07) !important;
}
.nav-cta:hover { background: rgba(212, 168, 67, 0.15) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #3D1010 0%, #1a0505 40%, var(--bg-dark) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(107, 27, 27, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 101, 26, 0.12) 0%, transparent 50%);
}
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: 50%;
  animation: mandala-spin 80s linear infinite;
}
.hero-mandala::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(212, 168, 67, 0.05);
  border-radius: 50%;
  animation: mandala-spin 60s linear infinite reverse;
}
.hero-mandala::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(212, 168, 67, 0.04);
  border-radius: 50%;
}
@keyframes mandala-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-float 6s ease-in-out infinite;
}
.hero-glow-1 {
  width: 400px; height: 400px;
  background: rgba(212, 168, 67, 0.08);
  top: 10%; left: 10%;
  animation-delay: 0s;
}
.hero-glow-2 {
  width: 300px; height: 300px;
  background: rgba(232, 101, 26, 0.07);
  bottom: 20%; right: 15%;
  animation-delay: 2s;
}
.hero-glow-3 {
  width: 500px; height: 500px;
  background: rgba(107, 27, 27, 0.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}
@keyframes glow-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
}
.hero-glow-3 { animation: glow-float3 8s ease-in-out infinite; }
@keyframes glow-float3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -53%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-bright);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(212, 168, 67, 0.07);
  backdrop-filter: blur(10px);
  animation: fade-up 0.8s ease 0.2s both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.title-line {
  display: block;
  animation: fade-up 0.8s ease both;
}
.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.45s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-gold {
  color: transparent;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--saffron) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fade-up 0.8s ease 0.7s both;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 0.8s ease 0.85s both;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fade-up 0.8s ease 1s both;
}
.trust-item {
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.trust-item span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 0.8s ease 1.2s both;
}
.hero-scroll span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(20, 6, 6, 0.8);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.marquee-track span:nth-child(odd) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  position: relative;
  z-index: 2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  animation: fade-up 0.6s ease both;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,67,0.08);
  background: var(--bg-card2);
}
.service-card:hover .card-glow { opacity: 1; }
.card-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 12px rgba(212,168,67,0.3));
  transition: transform 0.3s ease;
}
.service-card:hover .card-icon { transform: scale(1.1); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: gap 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover .card-link { gap: 10px; }

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(107, 27, 27, 0.06) 50%, transparent 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-frame {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  animation: glow-float 4s ease-in-out infinite;
}
.about-symbol {
  font-size: 7rem;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212,168,67,0.5), 0 0 120px rgba(212,168,67,0.2);
  animation: om-pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-spin 20s linear infinite;
}
.ring-1 {
  inset: 20px;
  border-color: rgba(212, 168, 67, 0.2);
  animation-duration: 25s;
}
.ring-2 {
  inset: 50px;
  border-color: rgba(232, 101, 26, 0.15);
  animation-direction: reverse;
  animation-duration: 20s;
}
.ring-3 {
  inset: 0;
  border-color: rgba(212, 168, 67, 0.1);
  animation-duration: 35s;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-content { padding-right: 20px; }
.about-content .section-title { text-align: left; }
.about-content .section-tag { display: block; text-align: left; width: fit-content; }
.about-content p {
  color: var(--text-sub);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(212, 168, 67, 0.03);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--border-bright);
  background: rgba(212, 168, 67, 0.06);
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 2px; }
.pillar p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =============================================
   FEATURES
   ============================================= */
.features {
  position: relative;
  z-index: 2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(5deg); }
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 27, 27, 0.5) 0%, rgba(61, 12, 12, 0.7) 50%, rgba(107, 27, 27, 0.5) 100%);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.stats-bg::before {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  color: rgba(212, 168, 67, 0.02);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 70px 24px;
  text-align: center;
  gap: 24px;
  position: relative;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212,168,67,0.4);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery { position: relative; z-index: 2; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
  cursor: pointer;
}
.gi-large { grid-column: span 2; aspect-ratio: 2/1; }
.gi-tall { grid-row: span 2; aspect-ratio: auto; }
.gi-wide { grid-column: span 2; aspect-ratio: 2/1; }

/* Decorative backgrounds */
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #3D1A0A 0%, #1A0A0A 100%); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #1A0A2A 0%, #0A0A1A 100%); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #0A1A0A 0%, #0A0A0A 100%); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #1A1A0A 0%, #0A0D0A 100%); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #1A0A0A 0%, #2A1A0A 100%); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #0A0A1A 0%, #1A0A2A 100%); }

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--border-bright);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.gallery-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  transition: var(--transition);
}
.gallery-content:hover { background: rgba(0,0,0,0.5); }
.gallery-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(212,168,67,0.5));
  animation: gallery-float 4s ease-in-out infinite;
}
.gallery-item:nth-child(2) .gallery-icon { animation-delay: 1s; }
.gallery-item:nth-child(3) .gallery-icon { animation-delay: 2s; }
@keyframes gallery-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.gallery-content span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 20px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(107,27,27,0.05) 50%, transparent 100%);
}
.testimonial-wrapper { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.test-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(212,168,67,0.4);
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border: 2px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.test-author span { font-size: 0.8rem; color: var(--text-muted); }
.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.test-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: rgba(212,168,67,0.05);
  line-height: 1;
}
.test-btn:hover {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
  transform: scale(1.1);
}
.test-dots {
  display: flex;
  gap: 8px;
}
.test-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-bright);
  transition: var(--transition);
  cursor: pointer;
}
.test-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(212,168,67,0.5);
}

/* =============================================
   FAQ
   ============================================= */
.faq { position: relative; z-index: 2; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-bright); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a a { color: var(--gold); text-decoration: underline; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  position: relative;
  z-index: 2;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(107,27,27,0.3) 0%, transparent 70%);
}
.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  backdrop-filter: blur(20px);
  position: relative;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,168,67,0.2), transparent 40%, rgba(232,101,26,0.1));
  pointer-events: none;
  z-index: -1;
}
.nl-icon {
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212,168,67,0.6);
  margin-bottom: 20px;
  animation: om-pulse 3s ease-in-out infinite;
}
.newsletter-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: var(--text-primary);
}
.newsletter-box h2 em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-serif);
}
.newsletter-box > p {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.nl-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.nl-form input {
  flex: 1;
  padding: 13px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.nl-form input:focus {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
}
.nl-form input::placeholder { color: var(--text-muted); }
.nl-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
}
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
  background: rgba(212,168,67,0.03);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-badge {
  margin-top: 20px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(212,168,67,0.04);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.9rem !important;
  opacity: 0.7;
}

/* =============================================
   WHATSAPP + BACK TO TOP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite 2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.back-top {
  position: fixed;
  bottom: 92px;
  right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  background: rgba(13, 6, 6, 0.9);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 48px; }
  .about-frame { width: 280px; height: 280px; }
  .about-symbol { font-size: 5rem; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-content .section-title,
  .about-content .section-tag { text-align: center; }
  .about-content { padding-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-large, .gi-wide, .gi-tall { grid-column: auto; grid-row: auto; aspect-ratio: 1; }
  .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(13, 6, 6, 0.97);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { border-bottom: none !important; text-align: center; }

  .hero-trust { gap: 20px; }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { min-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-box { padding: 40px 24px; }
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-form .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
}
