/**
 * Narayanika Astro Reader - Page-Specific & Section Styling
 */

/* ─────────────────────────────────────────────
   1. Homepage Hero
 ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 75% 30%, #17253D 0%, #0C1322 55%, #070B14 100%);
  color: var(--text-inverse);
  padding: clamp(60px, 9vw, 120px) 0 clamp(50px, 7vw, 90px);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Dynamic Animated Canvas for Vedic Universe */
.hero-cosmic-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Atmospheric Cosmic Nebula Glows */
.cosmic-nebula-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.28;
  z-index: 1;
  animation: nebulaBreathe 12s ease-in-out infinite alternate;
}

.cosmic-nebula-top {
  top: -120px;
  right: -80px;
  width: min(650px, 90vw);
  height: min(650px, 90vw);
  background: radial-gradient(circle, rgba(217, 119, 6, 0.35) 0%, rgba(147, 51, 234, 0.15) 50%, transparent 75%);
}

.cosmic-nebula-bottom {
  bottom: -100px;
  left: -80px;
  width: min(500px, 75vw);
  height: min(500px, 75vw);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(197, 154, 76, 0.15) 50%, transparent 75%);
  animation-delay: -6s;
}

/* Astrological Planetary Orbital Rings System */
.cosmic-orbit-system {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%);
  width: min(600px, 85vw);
  height: min(600px, 85vw);
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.cosmic-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(216, 170, 91, 0.28);
  border-radius: 50%;
}

.cosmic-orbit-ring.ring-1 {
  width: 100%;
  height: 100%;
  animation: cosmicRotateSlow 120s linear infinite;
}

.cosmic-orbit-ring.ring-2 {
  width: 75%;
  height: 75%;
  border-style: dotted;
  border-color: rgba(245, 158, 11, 0.22);
  animation: cosmicRotateReverse 90s linear infinite;
}

.cosmic-orbit-ring.ring-3 {
  width: 50%;
  height: 50%;
  border: 1px solid rgba(216, 170, 91, 0.18);
  animation: cosmicRotateSlow 60s linear infinite;
}

@keyframes nebulaBreathe {
  0% { transform: scale(1) translate(0, 0); opacity: 0.22; }
  50% { transform: scale(1.08) translate(15px, -10px); opacity: 0.35; }
  100% { transform: scale(0.95) translate(-10px, 15px); opacity: 0.25; }
}

@keyframes cosmicRotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cosmicRotateReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.hero-text-col {
  width: 100%;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 154, 76, 0.18);
  border: 1px solid rgba(216, 170, 91, 0.5);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  max-width: 100%;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F3D188;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(243, 209, 136, 0.8);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-title-accent {
  color: #F3D188;
  font-style: italic;
  display: block;
}

.hero-lead {
  font-size: clamp(1.025rem, 1.6vw, 1.16rem);
  color: #F1F5F9;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  width: 100%;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #F8FAFC;
  font-weight: 600;
}

.hero-trust-item svg {
  width: 17px;
  height: 17px;
  color: #F3D188;
  flex-shrink: 0;
}

/* Hero Visual — Celestial Card */
.hero-visual {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.hero-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 170, 91, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-lg), 3.5vw, var(--space-2xl));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 40px rgba(197, 154, 76, 0.08);
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Decorative corner ornaments */
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-top: 1.5px solid rgba(216, 170, 91, 0.5);
  border-right: 1.5px solid rgba(216, 170, 91, 0.5);
  pointer-events: none;
}

.hero-visual-card::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-bottom: 1.5px solid rgba(216, 170, 91, 0.5);
  border-left: 1.5px solid rgba(216, 170, 91, 0.5);
  pointer-events: none;
}

.hero-mandala {
  width: 240px;
  height: 240px;
  max-width: 100%;
  margin: 0 auto var(--space-md);
  opacity: 0.98;
  filter: drop-shadow(0 0 24px rgba(197, 154, 76, 0.22));
  animation: mandala-float 10s ease-in-out infinite alternate;
  display: block;
}

@keyframes mandala-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-5px); }
}

.hero-visual-quote {
  font-family: var(--font-heading);
  font-size: 1.025rem;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-visual-author {
  font-size: 0.76rem;
  color: #F3D188;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 0;
}

/* Hero service pills */
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  width: 100%;
  box-sizing: border-box;
}

.hero-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 170, 91, 0.4);
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero-service-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #F3D188;
}

/* ─────────────────────────────────────────────
   2. Trust Pillars
 ───────────────────────────────────────────── */
.trust-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0;
  width: 100%;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border-subtle);
  width: 100%;
  box-sizing: border-box;
}

.trust-card {
  background-color: var(--bg-surface);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: background-color var(--transition-fast);
  position: relative;
  box-sizing: border-box;
}

.trust-card:hover {
  background-color: var(--bg-alt);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-sm);
  background-color: var(--accent-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.trust-icon-box svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.trust-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   3. Service Cards
 ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  width: 100%;
  box-sizing: border-box;
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-card:hover::before { opacity: 1; }

.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-card:focus-within::before { opacity: 1; }

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: var(--accent-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-badge-mode {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
  color: var(--primary);
  font-weight: 700;
}

.service-card > p {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-card-actions {
  display: flex;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.service-price-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: auto;
}

.service-duration-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-left: auto;
  text-align: right;
}

/* ─────────────────────────────────────────────
   4. How It Works — Steps
 ───────────────────────────────────────────── */
.steps-wrapper {
  position: relative;
  width: 100%;
}

.steps-connector {
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-border) 20%, var(--accent-border) 80%, transparent);
  pointer-events: none;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.step-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  background: var(--primary);
  color: #F3D188;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(197, 154, 76, 0.4);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg-surface);
}

.step-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto var(--space-xs);
  color: var(--accent-dark);
  opacity: 0.8;
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}

.step-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   5. Why Narayanika
 ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-xl), 5vw, var(--space-3xl));
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.why-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  margin-bottom: var(--space-xs);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  width: 100%;
}

.why-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  width: 100%;
}

.why-item-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(197, 154, 76, 0.15) 100%);
  color: var(--accent-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--border-gold);
}

.why-item-icon svg {
  width: 20px;
  height: 20px;
}

.why-item-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--primary);
}

.why-item-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Ethics / Values Panel */
.ethics-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-lg), 3vw, var(--space-2xl));
  box-shadow: var(--shadow-md), 0 0 40px rgba(197, 154, 76, 0.06);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.ethics-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.ethics-panel-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3D188;
  flex-shrink: 0;
}

.ethics-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 700;
}

.ethics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ethics-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ethics-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────
   6. Consultation CTA Banner
 ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0F1B30 0%, #162238 60%, #0C1322 100%);
  border: 1px solid rgba(216, 170, 91, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-xl), 6vw, 70px) clamp(var(--space-md), 4vw, var(--space-3xl));
  text-align: center;
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #F1F5F9;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ─────────────────────────────────────────────
   7. Testimonials
 ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  gap: var(--space-xs);
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-service-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: right;
}

/* ─────────────────────────────────────────────
   8. Blog Cards
 ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  width: 100%;
  box-sizing: border-box;
}

.blog-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  width: 100%;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  box-sizing: border-box;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-wrap: wrap;
}

.blog-card-category {
  display: inline-flex;
  padding: 2px 8px;
  background: #FDF3DF;
  color: var(--accent-dark);
  border: 1px solid #E2B967;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.blog-card-dot { color: var(--border-light); }

.blog-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.blog-card h3 a { color: var(--primary); }
.blog-card h3 a:hover { color: var(--accent-dark); }

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  flex-grow: 1;
  color: var(--text-muted);
}

.blog-card-read-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.blog-card-read-more:hover { color: var(--accent); gap: 8px; }

/* ─────────────────────────────────────────────
   9. Interactive Booking Wizard
 ───────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-lg);
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.booking-wizard {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Progress Steps Header */
.wizard-steps-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
  box-sizing: border-box;
}

.wizard-step-tab {
  padding: 16px var(--space-xs);
  text-align: center;
  position: relative;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.wizard-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-surface);
  transition: all var(--transition-fast);
}

.wizard-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.wizard-step-tab.active .wizard-step-num {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.wizard-step-tab.active .wizard-step-label { color: var(--primary); font-weight: 700; }

.wizard-step-tab.completed .wizard-step-num {
  border-color: var(--status-confirmed);
  background: var(--status-confirmed);
  color: #fff;
}

.wizard-step-tab.completed .wizard-step-label { color: var(--text-muted); }

.wizard-step-content {
  padding: clamp(var(--space-md), 4vw, var(--space-xl));
  width: 100%;
  box-sizing: border-box;
}

.wizard-step-content h2 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  color: var(--primary);
  font-weight: 700;
}

.wizard-step-content > p {
  font-size: 0.925rem;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
}

/* Service Selection Cards */
.service-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  width: 100%;
  box-sizing: border-box;
}

.service-select-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background: var(--bg-surface);
  box-sizing: border-box;
  width: 100%;
}

.service-select-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.service-select-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(197, 154, 76, 0.15);
}

.service-select-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.service-select-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Mode Picker */
.mode-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  width: 100%;
  box-sizing: border-box;
}

.mode-option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  background: var(--bg-surface);
  box-sizing: border-box;
  width: 100%;
}

.mode-option-card:hover { border-color: var(--accent); }

.mode-option-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(197, 154, 76, 0.15);
}

.mode-option-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.mode-option-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Slot Grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  width: 100%;
  box-sizing: border-box;
}

.slot-btn {
  padding: 10px 8px;
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  line-height: 1.2;
  box-sizing: border-box;
  width: 100%;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--accent-dark);
  background-color: var(--accent-light);
  color: var(--accent-dark);
}

.slot-btn.selected {
  background-color: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.slot-btn:disabled {
  background-color: var(--bg-alt);
  border-color: var(--border-subtle);
  color: var(--text-light);
  cursor: not-allowed;
  opacity: 0.55;
  text-decoration: line-through;
}

/* Booking Sidebar Summary */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

.booking-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.booking-summary-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-subtle);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xs);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  width: 100%;
}

.booking-summary-row:last-child { border-bottom: none; }

.booking-summary-label { color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.booking-summary-value { color: var(--primary); font-weight: 700; text-align: right; }

/* ─────────────────────────────────────────────
   10. Booking Success Page
 ───────────────────────────────────────────── */
.booking-success-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-xl), 5vw, var(--space-3xl));
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: #14532D;
}

.booking-ref-display {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--primary);
  background: var(--bg-alt);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--border-gold);
  margin: var(--space-md) 0;
  letter-spacing: 0.05em;
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
}

/* ─────────────────────────────────────────────
   11. Contact Page
 ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.contact-info-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   12. Responsive Breakpoints & Mobile Overflow Protection
 ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .hero-visual-card { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero-mandala    { width: 210px; height: 210px; }
  .hero-lead       { margin-left: auto; margin-right: auto; }
  .hero-ctas       { justify-content: center; }
  .hero-trust-row  { justify-content: center; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid     { grid-template-columns: 1fr; }
  .steps-connector   { display: none; }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid         { grid-template-columns: 1fr 1fr; }

  .wizard-steps-header {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .booking-sidebar   { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-section       { padding: 48px 0 36px; }
  .hero-visual-card   { padding: var(--space-md); border-radius: var(--radius-lg); }
  .hero-mandala       { width: 170px; height: 170px; margin-bottom: var(--space-sm); }
  .hero-visual-quote  { font-size: 0.95rem; line-height: 1.55; }
  .hero-visual-author { font-size: 0.72rem; }
  .hero-service-pills { display: flex; gap: 4px; padding-top: var(--space-sm); margin-top: var(--space-sm); }
  .hero-service-pill  { padding: 4px 9px; font-size: 0.7rem; }
  .hero-service-pill svg { width: 12px; height: 12px; }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }

  .trust-grid         { grid-template-columns: 1fr 1fr; background: none; gap: var(--space-sm); }
  .trust-card         { border: 1px solid var(--border-light); border-radius: var(--radius-md); }
  .steps-grid         { grid-template-columns: 1fr; }
  .mode-picker-grid   { grid-template-columns: 1fr; }
  .service-selection-grid { grid-template-columns: 1fr; }
  .wizard-steps-header { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons-group { flex-direction: column; width: 100%; }
  .cta-buttons-group .btn { width: 100%; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-mandala { width: 150px; height: 150px; }
  .hero-badge { font-size: 0.68rem; padding: 5px 12px; }
  .slot-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
}

@media (max-width: 360px) {
  .hero-mandala       { width: 130px; height: 130px; }
  .hero-service-pills { gap: 3px; }
  .hero-service-pill  { padding: 3px 6px; font-size: 0.65rem; }
  .wizard-steps-header { grid-template-columns: 1fr; }
}

/* Reduced Motion Safety */
@media (prefers-reduced-motion: reduce) {
  .hero-mandala,
  .hero-visual-card {
    animation: none !important;
  }
}
