:root {
  /* Colors - Spiritual Premium Palette */
  --wf-bg: #FFFFFF;
  --wf-bg-soft: #FCF9F5;
  --wf-primary: #E67E22; /* Saffron */
  --wf-primary-light: #FDF2E9;
  --wf-accent: #D4AF37; /* Gold */
  --wf-text-main: #2C3E50;
  --wf-text-muted: #7F8C8D;
  --wf-border: #EAECEE;
  --wf-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --wf-shadow-md: 0 10px 20px rgba(230, 126, 34, 0.08);
  --wf-radius: 16px;
  
  /* Spacing */
  --wf-space-xs: 8px;
  --wf-space-sm: 16px;
  --wf-space-md: 24px;
  --wf-space-lg: 48px;
  --wf-space-xl: 80px;
  
  /* Typography */
  --wf-font-family: 'Playfair Display', serif;
  --wf-font-body: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--wf-font-body);
  background-color: var(--wf-bg);
  color: var(--wf-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: var(--wf-font-family);
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Header & Nav */
header {
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--wf-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wf-primary);
}

.nav-links {
  display: flex;
  gap: var(--wf-space-md);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

.nav-link {
  font-weight: 500;
  color: var(--wf-text-main);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--wf-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 48px;
  font-family: var(--wf-font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--wf-primary), #D35400);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--wf-primary);
  color: var(--wf-primary);
}

.btn-outline:hover {
  background: var(--wf-primary-light);
}

.btn-ghost {
  background: var(--wf-primary-light);
  color: var(--wf-primary);
}

/* Hero Section */
.hero {
  padding: var(--wf-space-lg) 0;
  background: radial-gradient(circle at top right, #FFF5E6 0%, #FFFFFF 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: var(--wf-space-sm);
  color: #1A1A1A;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--wf-text-muted);
  margin-bottom: var(--wf-space-md);
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--wf-space-md);
}

.trust-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--wf-text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sections */
section {
  margin-top: var(--wf-space-xl);
  padding: var(--wf-space-lg) 0;
}

main > :first-child {
  margin-top: 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--wf-space-lg);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--wf-text-muted);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--wf-radius);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--wf-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--wf-primary);
  box-shadow: var(--wf-shadow-md);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--wf-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--wf-primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--wf-text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Trust Section */
.trust-bar {
  background: var(--wf-bg-soft);
  padding: 60px 0;
  border-top: 1px solid var(--wf-border);
  border-bottom: 1px solid var(--wf-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.trust-feature {
  text-align: center;
}

.trust-feature-icon {
  color: var(--wf-accent);
  margin-bottom: 12px;
}

.trust-feature h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-feature p {
  font-size: 0.85rem;
  color: var(--wf-text-muted);
}

/* How It Works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--wf-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

/* Packages */
.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px 0 40px;
  scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.package-card {
  min-width: 320px;
  background: white;
  border-radius: var(--wf-radius);
  overflow: hidden;
  border: 1px solid var(--wf-border);
  box-shadow: var(--wf-shadow-sm);
}

.package-img {
  height: 200px;
  width: 100%;
  background: #eee;
}

.package-content {
  padding: 24px;
}

.package-badge {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}

.package-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--wf-primary);
}

/* Grid for Pooja */
.pooja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pooja-card {
  background: white;
  border-radius: var(--wf-radius);
  padding: 24px;
  border: 1px solid var(--wf-border);
  display: flex;
  gap: 16px;
}

.pooja-thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 12px;
}

/* Kundali Promo */
.kundali-promo {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C3E50 100%);
  border-radius: 32px;
  padding: 80px;
  color: white;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 992px) {
  .kundali-promo {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
}

.kundali-content {
  flex: 1;
}

.kundali-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.astro-chart-placeholder {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--wf-border);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
footer {
  background: #1A1A1A;
  color: white;
  padding: 80px 0 40px;
  margin-top: var(--wf-space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  margin-bottom: 24px;
  color: var(--wf-primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
  color: #BDC3C7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #7F8C8D;
}

/* Placeholder Utility */
.placeholder-image {
  background: #F2F4F5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-image::after {
  content: attr(data-label);
  color: #95A5A6;
  font-size: 0.8rem;
  text-align: center;
}

.placeholder-image.square { aspect-ratio: 1/1; }
.placeholder-image.wide { aspect-ratio: 16/9; }

.placeholder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #BDC3C7;
}

/* Small UI Tweaks */
.rating {
  color: #F1C40F;
  margin-bottom: 10px;
}

/* Page Specific Components */
.form-container {
    max-width: 600px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--wf-shadow-md);
    border: 1px solid var(--wf-border);
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--wf-text-main);
}
.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--wf-border);
    border-radius: 12px;
    font-family: var(--wf-font-body);
    font-size: 1rem;
}
.form-input:focus {
    outline: none;
    border-color: var(--wf-primary);
}

.expert-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--wf-border);
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.status-badge {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
}
.expert-info { flex: 1; }
.expert-actions { text-align: right; }
.price-tag { font-weight: 700; font-size: 1.1rem; color: var(--wf-text-main); margin-bottom: 12px; }

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--wf-text-muted); }
.w-full { width: 100%; }
.mt-xl { margin-top: var(--wf-space-xl); }
.mb-lg { margin-bottom: var(--wf-space-lg); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-md { gap: 15px; }
.font-bold { font-weight: 700; }
