/* ========================================================
   AurOnGold — Landing Page Styles
   ======================================================== */

:root {
  --gold: #c9a227;
  --gold-light: #d4af37;
  --gold-lighter: #f6e27a;
  --gold-dark: #9c7a1a;
  --cream: #fbf6ec;
  --cream-dark: #f3e9d3;
  --dark: #241d12;
  --dark-2: #362a15;
  --text-muted: #6b6053;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(156, 122, 26, 0.12);
  --shadow-strong: 0 20px 45px rgba(36, 29, 18, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fffdf9;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-text, .price-card h3, .emi-card-header h3 {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }

.text-gold-accent { color: var(--gold-dark); }
.text-light-70 { color: rgba(255,255,255,0.7) !important; }

.section { padding: 90px 0; }
.bg-cream { background: var(--cream); }
.bg-dark-gold { background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%); }

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold) 60%, var(--gold-dark));
  color: #2b2108;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.45);
  color: #2b2108;
}
.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold) 60%, var(--gold-dark));
  color: #2b2108;
  font-weight: 600;
  font-size: .85rem;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
}
.btn-gold-sm:hover { color: #2b2108; }
.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 10px 28px;
  transition: all .25s ease;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #2b2108;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar-left span { margin-right: 22px; }
.top-bar-left i { color: var(--gold-light); margin-right: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.social-link { color: rgba(255,255,255,0.75); }
.social-link:hover { color: var(--gold-light); }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #38c172; display: inline-block;
  box-shadow: 0 0 0 rgba(56,193,114,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,193,114,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(56,193,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,193,114,0); }
}

/* ---------- Navbar ---------- */
#mainNav {
  background: #fffdf9;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: padding .25s ease;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 54px; width: auto; display: block; }
.brand-text { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 6px;
  position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--gold-dark) !important; }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 40px;
  background: radial-gradient(circle at 85% 20%, rgba(212,175,55,0.12), transparent 55%), var(--cream);
}
.badge-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--cream-dark);
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
}
.hero-title {
  font-size: clamp(2rem, 1.35rem + 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 16px;
}
.hero-features .hf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.hero-features i { color: var(--gold-dark); font-size: 1.15rem; flex-shrink: 0; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.hv-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
}
.hv-card-main {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 30px;
  box-shadow: var(--shadow-strong);
  width: min(360px, 90%);
}
.hv-illustration { width: 100%; height: auto; }
.hv-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  font-size: .8rem;
}
.hv-badge i { color: var(--gold-dark); font-size: 1.3rem; }
.hv-badge strong { display: block; font-size: .82rem; }
.hv-badge span { color: var(--text-muted); font-size: .72rem; }
.hv-badge-top { top: 0; right: 5%; animation: floatY 3.5s ease-in-out infinite; }
.hv-badge-bottom { bottom: 5%; left: 0; animation: floatY 4s ease-in-out infinite reverse; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stats { border-top: 1px solid rgba(0,0,0,0.07); padding-top: 40px; }
.hero-stats h3 { color: var(--gold-dark); font-weight: 700; font-size: 2rem; margin-bottom: 2px; }
.hero-stats p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ---------- Section Heading ---------- */
.section-heading { max-width: 640px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.section-heading h2 { font-weight: 700; font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.2rem); margin-bottom: 12px; }
.section-heading p { color: var(--text-muted); }

/* ---------- Live Price ---------- */
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border: 1px solid transparent;
  transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card-featured {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.price-card-featured .price-market,
.price-card-featured .price-change { color: rgba(255,255,255,0.7) !important; }
.price-card-head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 14px; }
.price-card h3 { font-size: 2.1rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 6px; }
.price-card-featured h3 { color: var(--gold-lighter); }
.price-card h3 span { font-size: .9rem; font-weight: 400; color: var(--text-muted); }
.price-market { font-size: .85rem; color: var(--text-muted); margin-bottom: 4px; }
.price-change { font-size: .85rem; font-weight: 600; }
.price-note { color: var(--text-muted); font-size: .85rem; }

/* ---------- Product Cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
  transition: transform .25s ease;
}
.product-card:hover { transform: translateY(-6px); }
.purity-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--cream-dark);
  color: var(--gold-dark);
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.product-icon {
  width: 55px; height: 55px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.product-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.product-price { font-weight: 700; color: var(--gold-dark); font-size: 1.2rem; margin-bottom: 14px; }
.product-card-info {
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card-info i { font-size: 2rem; color: var(--gold-light); margin-bottom: 10px; }
.product-card-info p { font-size: .82rem; color: rgba(255,255,255,0.75); }

/* ---------- EMI Cards ---------- */
.emi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.emi-card-highlight { border: 2px solid var(--gold-light); }
.emi-tag {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold-dark));
  color: #2b2108;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}
.emi-card-header h3 { font-size: 1.6rem; margin-bottom: 4px; }
.emi-card-header p { color: var(--text-muted); margin-bottom: 20px; }
.emi-feature-list { list-style: none; padding: 0; margin: 0 0 24px; }
.emi-feature-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .92rem; }
.emi-feature-list i { color: var(--gold-dark); margin-top: 3px; }
.emi-policy-note {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: rgba(255,255,255,0.85);
  font-size: .9rem;
}
.emi-policy-note i { color: var(--gold-light); font-size: 1.4rem; flex-shrink: 0; }
.emi-policy-note p { margin: 0; }

/* ---------- Calculator ---------- */
.calculator-wrap { max-width: 950px; margin: 0 auto; }
.nav-pills .nav-link {
  border-radius: 50px;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 10px 22px;
  margin: 4px;
}
.nav-pills .nav-link.active {
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold-dark));
  color: #2b2108 !important;
}
.calc-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.calc-result {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.calc-result p { margin-bottom: 4px; color: var(--text-muted); font-size: .85rem; }
.calc-result h3 { font-weight: 700; font-size: 1.6rem; }
.calc-result hr { margin: 14px 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.form-label { font-weight: 500; font-size: .88rem; }
.form-control, .form-select {
  border-radius: 10px;
  border: 1px solid #e6ddc8;
  padding: 10px 14px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 .2rem rgba(212,175,55,0.2);
}
.form-success {
  background: #eafaf1;
  color: #1e7e45;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .9rem;
}
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li { margin-bottom: 12px; font-size: .95rem; }
.check-list i { color: var(--gold-dark); margin-right: 10px; }

/* ---------- Feature Tiles ---------- */
.feature-tile {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 12px;
  height: 100%;
  transition: transform .25s ease, background .25s ease;
}
.feature-tile:hover { transform: translateY(-6px); background: #fff; box-shadow: var(--shadow-soft); }
.feature-tile i { font-size: 1.9rem; color: var(--gold-dark); margin-bottom: 12px; display: block; }
.feature-tile h5 { font-size: .92rem; font-weight: 600; margin: 0; }

/* ---------- Timeline ---------- */
.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.timeline-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  width: 150px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.timeline-icon {
  width: 50px; height: 50px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.timeline-item h6 { font-size: .82rem; font-weight: 600; margin: 0; }

/* ---------- Testimonial Videos ---------- */
.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .25s ease;
  height: 100%;
}
.video-card:hover, .video-card:focus-visible { transform: translateY(-6px); }
.video-card:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; }
.video-thumb {
  height: 210px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--gold-dark) 130%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.thumb-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #2b2108;
  background: linear-gradient(135deg, var(--c1, #f6e27a), var(--c2, #9c7a1a));
  box-shadow: 0 0 0 6px rgba(255,255,255,0.12);
}
.play-icon {
  position: absolute;
  font-size: 3.2rem;
  color: rgba(255,255,255,0.92);
  transition: transform .25s ease;
}
.video-card:hover .play-icon, .video-card:focus-visible .play-icon { transform: scale(1.12); }
.video-duration {
  position: absolute;
  bottom: 12px; right: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.video-info { padding: 20px; }
.stars { color: var(--gold-light); font-size: .85rem; margin-bottom: 8px; }
.video-info h6 { font-weight: 700; margin-bottom: 2px; }
.video-role { display: block; font-size: .74rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.video-info p { font-size: .88rem; color: var(--text-muted); margin: 0; font-style: italic; }

/* ---------- Testimonial Player Modal ---------- */
.testimonial-player {
  text-align: center;
  padding: 10px 20px 34px;
}
.tp-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #2b2108;
  background: linear-gradient(135deg, var(--c1, #f6e27a), var(--c2, #9c7a1a));
  box-shadow: var(--shadow-soft);
}
.tp-waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin: 0 auto 22px;
}
.tp-waveform span {
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-lighter), var(--gold-dark));
  animation: waveBounce 1.1s ease-in-out infinite;
}
.tp-waveform.paused span { animation-play-state: paused; opacity: .4; }
.tp-waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.tp-waveform span:nth-child(2) { height: 65%; animation-delay: .05s; }
.tp-waveform span:nth-child(3) { height: 90%; animation-delay: .1s; }
.tp-waveform span:nth-child(4) { height: 45%; animation-delay: .15s; }
.tp-waveform span:nth-child(5) { height: 75%; animation-delay: .2s; }
.tp-waveform span:nth-child(6) { height: 100%; animation-delay: .25s; }
.tp-waveform span:nth-child(7) { height: 55%; animation-delay: .3s; }
.tp-waveform span:nth-child(8) { height: 35%; animation-delay: .35s; }
.tp-waveform span:nth-child(9) { height: 80%; animation-delay: .4s; }
.tp-waveform span:nth-child(10) { height: 60%; animation-delay: .45s; }
.tp-waveform span:nth-child(11) { height: 90%; animation-delay: .5s; }
.tp-waveform span:nth-child(12) { height: 40%; animation-delay: .55s; }
.tp-waveform span:nth-child(13) { height: 70%; animation-delay: .6s; }
.tp-waveform span:nth-child(14) { height: 50%; animation-delay: .65s; }
.tp-waveform span:nth-child(15) { height: 85%; animation-delay: .7s; }
@keyframes waveBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.tp-name { font-weight: 700; margin-bottom: 2px; }
.tp-role { display: block; font-size: .8rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 18px; }
.tp-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  max-width: 520px;
  margin: 0 auto 26px;
  min-height: 4.5em;
}
.tp-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.tp-play-btn {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold-dark));
  color: #2b2108;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tp-progress {
  flex: 1;
  height: 6px;
  background: var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
}
.tp-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-lighter), var(--gold-dark));
  transition: width .08s linear;
}

/* ---------- FAQ ---------- */
.faq-accordion { max-width: 850px; margin: 0 auto; }
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px 24px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--gold-light);
  color: #2b2108;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body { font-size: .92rem; color: var(--text-muted); }

/* ---------- Contact ---------- */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-item i {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .92rem; }
.contact-info-item span { color: var(--text-muted); font-size: .88rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 60%, var(--gold-lighter));
  padding: 70px 0;
  color: #2b2108;
}
.cta-banner h2 { font-weight: 700; margin-bottom: 10px; }
.cta-banner p { margin-bottom: 26px; font-size: 1.05rem; }
.cta-banner .btn-outline-light { color: #2b2108; border-color: #2b2108; }
.cta-banner .btn-outline-light:hover { background: #2b2108; color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
  font-size: .9rem;
}
.footer .brand-text { color: #fff; }
.footer-brand { display: inline-flex; }
.footer-logo {
  height: 120px;
  width: auto;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
}
.footer p { line-height: 1.7; }
.footer h6 { color: #fff; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,0.7); transition: color .2s ease; }
.footer ul a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold-dark); }
.footer hr { border-color: rgba(255,255,255,0.12); margin: 40px 0 20px; }

/* ---------- Floating Buttons ---------- */
.floating-cta {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
  z-index: 1040;
  animation: floatY 3s ease-in-out infinite;
}
.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: none;
  display: none;
  align-items: center; justify-content: center;
  font-size: 1.2rem;
  z-index: 1040;
  box-shadow: var(--shadow-soft);
}

/* ---------- Responsive ---------- */

/* Large / client desktop screens: keep content comfortably centered, not stretched thin */
@media (min-width: 1400px) {
  .container { max-width: 1260px; }
  .hero-visual { min-height: 420px; }
}

/* Tablets */
@media (max-width: 991px) {
  .section { padding: 60px 0; }
  .navbar-collapse { margin-top: 14px; }
  .hero-visual { min-height: 320px; margin-top: 10px; }
  .timeline { justify-content: center; }
}

/* Phones (landscape phones / small tablets) */
@media (max-width: 767px) {
  .hero { padding: 36px 0 16px; }
  .hero-sub { max-width: 100%; }
  .hv-badge { font-size: .72rem; padding: 8px 12px; }
  .hv-badge i { font-size: 1.05rem; }
  .hv-badge-top { top: -6px; right: 0; }
  .hv-badge-bottom { bottom: -6px; left: 0; }
  .hero-stats h3 { font-size: 1.6rem; }

  /* Timeline becomes a swipeable horizontal scroller on small screens */
  .timeline {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .timeline-item { flex: 0 0 auto; width: 128px; scroll-snap-align: start; }

  .calc-card { padding: 22px 16px; }
  .form-card { padding: 22px 18px; }
  .price-card, .emi-card { padding: 24px 20px; }
  .testimonial-player { padding: 6px 6px 26px; }
  .tp-quote { font-size: .95rem; }

  .floating-cta { width: 50px; height: 50px; font-size: 1.35rem; bottom: 16px; right: 16px; }
  .back-to-top { width: 40px; height: 40px; bottom: 16px; left: 16px; }
  .brand-logo { height: 44px; }
  .footer-logo { height: 96px; }
}

/* Small phones */
@media (max-width: 420px) {
  .section { padding: 44px 0; }
  .btn-gold, .btn-gold-outline { padding: 10px 20px; font-size: .92rem; }
  .hv-card-main { padding: 20px; }
  .hero-features .hf-item { font-size: .78rem; padding: 8px 10px; }
  .product-card { padding: 18px 12px; }
  .video-thumb { height: 175px; }
  .thumb-avatar { width: 68px; height: 68px; font-size: 1.4rem; }
  .hero-stats .col-6 { padding-left: 6px; padding-right: 6px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live-dot, .hv-badge-top, .hv-badge-bottom, .floating-cta, .tp-waveform span {
    animation: none !important;
  }
}

/* ========================================================
   Legal / Policy Pages (About, Contact, FAQ, T&C, etc.)
   ======================================================== */
.legal-hero {
  background: radial-gradient(circle at 85% 20%, rgba(212,175,55,0.14), transparent 55%), var(--cream);
  padding: 60px 0 40px;
  text-align: center;
}
.legal-hero .eyebrow { display: block; }
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem);
  margin: 8px 0 10px;
}
.legal-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.legal-meta { color: var(--text-muted); font-size: .85rem; margin-top: 10px; }

.legal-body { padding: 60px 0 90px; }
.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}
.legal-shell h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 34px 0 12px;
  padding-top: 10px;
  border-top: 1px solid var(--cream-dark);
}
.legal-shell > h2:first-child,
.legal-shell section:first-of-type h2 { margin-top: 0; padding-top: 0; border-top: none; }
.legal-shell h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 8px;
}
.legal-shell p { color: #3f382a; line-height: 1.75; margin-bottom: 14px; }
.legal-shell ul, .legal-shell ol { color: #3f382a; line-height: 1.75; margin-bottom: 14px; padding-left: 22px; }
.legal-shell li { margin-bottom: 6px; }
.legal-shell strong { color: var(--dark); }
.legal-shell a.inline-link { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }
.legal-shell hr { margin: 30px 0; border-color: var(--cream-dark); }

.legal-address {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.legal-address p { margin: 0; }

.legal-table-wrap { overflow-x: auto; margin-bottom: 18px; -webkit-overflow-scrolling: touch; }
.legal-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .92rem;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--cream-dark);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.legal-table th { background: var(--cream); font-weight: 700; color: var(--dark); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.legal-back i { font-size: 1.1rem; }

.legal-toc {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 30px;
  font-size: .9rem;
}
.legal-toc strong { display: block; margin-bottom: 8px; color: var(--dark); }
.legal-toc a { color: var(--gold-dark); }

.legal-quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.legal-quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}
.legal-quick-contact a:hover { background: var(--gold-light); color: #2b2108; }

.faq-list-item { margin-bottom: 22px; }
.faq-list-item h3 { color: var(--gold-dark); }

@media (max-width: 767px) {
  .legal-hero { padding: 40px 0 28px; }
  .legal-body { padding: 40px 0 60px; }
  .legal-shell { padding: 26px 18px; border-radius: var(--radius-md); }
  .legal-shell h2 { font-size: 1.15rem; }
}
