/* ============================================================
   AstroYogesha — Global Stylesheet
   Design: Midnight-and-Gold Celestial Theme
   Fonts: Cinzel (display) | Cormorant Garamond (accent) | Poppins (body)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --bg:        #0a0f2c;
  --bg-alt:    #10173f;
  --surface:   #141c4a;
  --gold:      #d4af37;
  --gold-light:#f0d97e;
  --gold-deep: #9c7a29;
  --ivory:     #f3eee0;
  --muted:     #b9b8d8;
  --maroon:    #5c1f2e;
  --liner:     rgba(212,175,55,0.25);

  --font-display: 'Cinzel', serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'Poppins', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --glow-gold:   0 0 18px rgba(212,175,55,0.35);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 600; }

p  { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--ivory); line-height: 1.8; }

.text-gold   { color: var(--gold); }
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted  { color: var(--muted); }
.text-ivory  { color: var(--ivory); }
.text-center { text-align: center; }

/* ── Starfield Canvas ─────────────────────────────────────── */
#starfield-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ── Section Spacing ──────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── Section Label ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ── Section Heading Block ────────────────────────────────── */
.section-heading {
  margin-bottom: 3.5rem;
}
.section-heading h2 { margin-bottom: 0.7rem; }
.section-heading p  { color: var(--muted); max-width: 56ch; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin-inline: auto; }

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  justify-content: center;
}
.gold-divider span {
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Wheel Divider (decorative motif) ────────────────────── */
.wheel-divider {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  opacity: 0.55;
}
.wheel-divider svg { width: 64px; height: 64px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.site-nav.scrolled {
  background: rgba(10,15,44,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--liner);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
  transition: filter var(--transition);
}
.nav-logo:hover img { filter: drop-shadow(0 0 14px rgba(240,217,126,0.55)); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA button */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg) !important;
  font-weight: 600;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  color: var(--bg) !important;
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,15,44,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 80px;
  padding-bottom: 2rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  border-bottom: 1px solid var(--liner);
}
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 1.5rem;
}
.nav-mobile-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--liner);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--gold); padding-left: 0.5rem; }
.nav-mobile-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg) !important;
  text-align: center;
  border-radius: 50px;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg);
}
.btn-primary:hover {
  box-shadow: var(--glow-gold), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--liner);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.14), var(--shadow-card);
  border-color: rgba(212,175,55,0.45);
}
.card:hover::before { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--liner);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.3));
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
  color: var(--muted);
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact-item a { color: var(--muted); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--liner);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   HERO SECTION (homepage)
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { z-index: 2; }
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s ease forwards;
}
.hero h1 {
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.55s ease forwards;
}
.hero-intro {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.8s ease forwards;
}
.hero .btn-group {
  opacity: 0;
  animation: fadeSlideUp 0.8s 1s ease forwards;
}

.hero-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: wheelReveal 1.2s 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

/* Zodiac Wheel */
.zodiac-wheel-outer {
  position: relative;
  width: clamp(300px, 42vw, 520px);
  height: clamp(300px, 42vw, 520px);
}
.zodiac-wheel-outer svg { width: 100%; height: 100%; }

.wheel-rotate {
  transform-origin: center;
  animation: wheelSpin 110s linear infinite;
}
.wheel-center-fixed {
  transform-origin: center;
  /* stays still via counter-rotation or separate layer */
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wheelReveal {
  from { opacity: 0; transform: scale(0.8) rotate(-30deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  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.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--liner);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.5);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--liner);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(212,175,55,0.12);
}
.testimonial-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.star-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--liner);
  border-bottom: 1px solid var(--liner);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 3rem 0;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-alt), var(--surface));
  border: 1px solid var(--liner);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 0.8rem; }
.cta-banner p  { color: var(--muted); margin-bottom: 2rem; }
.cta-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.cta-contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-weight: 500;
}
.cta-contact-info a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-wheel-wrap {
  width: clamp(240px, 35vw, 420px);
  height: clamp(240px, 35vw, 420px);
  position: relative;
}
.about-wheel-wrap svg { width: 100%; height: 100%; }

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.credential-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step-counter;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--liner);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  counter-increment: step-counter;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.process-step::before {
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  position: absolute;
  top: 0.75rem; right: 1rem;
  line-height: 1;
}
.process-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--liner);
}
.process-step-icon svg { width: 26px; height: 26px; color: var(--gold); }
.process-step h3 { font-size: 1rem; color: var(--gold); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--liner);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--liner);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-detail-text { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.contact-detail-text strong { display: block; color: var(--ivory); margin-bottom: 0.15rem; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-detail-text a { color: var(--muted); }
.contact-detail-text a:hover { color: var(--gold); }

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--liner);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  filter: invert(90%) hue-rotate(180deg);
  opacity: 0.85;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--liner);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
}
.contact-form-wrap h3 {
  color: var(--gold);
  margin-bottom: 1.8rem;
  font-size: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.3rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10,15,44,0.6);
  border: 1.5px solid var(--liner);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(185,184,216,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,0.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--surface);
  color: var(--ivory);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  font-size: 0.78rem;
  color: #e05c5c;
  margin-top: 0.35rem;
  display: none;
}
.form-error.visible { display: block; }
/* Honeypot – hidden */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; tab-index: -1; }

.form-submit-wrap { text-align: right; margin-top: 0.5rem; }
.btn-submit {
  min-width: 160px;
  justify-content: center;
  position: relative;
}
.btn-submit .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(10,15,44,0.4);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spinLoader 0.7s linear infinite;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { opacity: 0; position: absolute; }
@keyframes spinLoader { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pulse 2s ease infinite;
}
.form-success-icon svg { width: 36px; height: 36px; color: var(--gold); }
.form-success h3 { color: var(--gold); margin-bottom: 0.5rem; }
.form-success p  { color: var(--muted); }

.form-inline-error {
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.4);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #e05c5c;
  margin-bottom: 1rem;
  display: none;
}
.form-inline-error.visible { display: block; }

/* ============================================================
   PAGE HERO (non-home pages)
   ============================================================ */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 55ch;
  margin-inline: auto;
}

/* ============================================================
   ABOUT PHILOSOPHY
   ============================================================ */
.philosophy-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.philosophy-quote blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet: ≤ 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-wheel-wrap { order: -1; }
  .hero .btn-group { justify-content: center; }
  .hero-intro { margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Mobile: ≤ 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Small Mobile: ≤ 375px ────────────────────────────────── */
@media (max-width: 420px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.82rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .wheel-rotate { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   FOCUS STATES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.bg-alt-section { background: var(--bg-alt); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.divider-line {
  border: 0;
  height: 1px;
  background: var(--liner);
  margin: 0;
}
