@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors - Light Mode (Serene Warm Saffron & Royal Violet) */
  --color-primary: #FF9933;
  --color-primary-rgb: 255, 153, 51;
  --color-secondary: #E65100;
  --color-accent: #5E35B1;
  --color-accent-rgb: 94, 53, 177;
  --color-bg: #FFFDF8;
  --color-surface: #FFFFFF;
  --color-surface-tint: #FFF9F2;
  --color-surface-accent: #F4F1FB;
  --color-text: #2C2520;
  --color-text-muted: #6E655F;
  --color-border: rgba(230, 215, 195, 0.4);
  --color-border-accent: rgba(94, 53, 177, 0.1);
  --shadow-sm: 0 4px 12px rgba(230, 81, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(230, 81, 0, 0.05);
  --shadow-lg: 0 16px 40px rgba(94, 53, 177, 0.08);
  --shadow-glass: 0 8px 32px rgba(94, 53, 177, 0.04);
  
  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sanskrit: 'Noto Serif Devanagari', Georgia, serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing */
  --spacing-section: 120px;
  --spacing-section-mobile: 80px;
}

[data-theme="dark"] {
  /* Colors - Dark Mode (Deep Charcoal & Soft Warm Accents) */
  --color-primary: #FFA852;
  --color-primary-rgb: 255, 168, 82;
  --color-secondary: #FF7043;
  --color-accent: #B388FF;
  --color-accent-rgb: 179, 136, 255;
  --color-bg: #121214;
  --color-surface: #1B1B1E;
  --color-surface-tint: #232226;
  --color-surface-accent: #1D1926;
  --color-text: #F5EBE6;
  --color-text-muted: #ABA29B;
  --color-border: rgba(80, 75, 70, 0.4);
  --color-border-accent: rgba(179, 136, 255, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Base Settings */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Base Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--spacing-section) 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-section-mobile) 0;
  }
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

.section-header p {
  font-size: 1.1rem;
}

/* Sticky Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(var(--color-bg), 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-text);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dark Mode Toggle */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  background: var(--color-surface-tint);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface-tint);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), #7B2CBF);
  color: #FFFFFF;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(94, 53, 177, 0.3);
}

/* Responsive Menu Burger */
.burger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.burger-line {
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .burger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--color-bg);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.open {
    right: 0;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary) 50%, var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 600px;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  animation-fill-mode: both;
}

@media (max-width: 992px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  animation-fill-mode: both;
}

@media (max-width: 992px) {
  .hero-buttons {
    justify-content: center;
  }
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111111;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.app-store-badge:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.app-store-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-text span:first-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.badge-text span:last-child {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-headings);
}

/* Hero Mockup & Parallax Elements */
.hero-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 570px;
  border-radius: 40px;
  background: #000;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 4px #2b2b2b;
  z-index: 2;
  animation: floatMobile 6s ease-in-out infinite;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  border-radius: 10px;
  background: #000;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #FFFDF8;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-element {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.floating-card-1 {
  top: 20%;
  left: -40px;
  animation: floatLeft 8s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 25%;
  right: -30px;
  animation: floatRight 7s ease-in-out infinite;
}

.aura-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.2) 0%, rgba(var(--color-accent-rgb), 0.05) 50%, rgba(255,255,255,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-full);
  z-index: 1;
}

/* Card glassmorphism style */
.glass-panel {
  background: rgba(var(--color-surface-tint), 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-panel span {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
}

.glass-panel .icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
}

.glass-panel-purple .icon-box {
  background: var(--color-accent);
}

/* Value Propositions */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .props-grid {
    grid-template-columns: 1fr;
  }
}

.prop-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.prop-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--color-surface-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
  transition: all 0.3s ease;
}

.prop-card:hover .prop-icon {
  background: var(--color-primary);
  color: #FFFFFF;
}

.prop-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

.prop-card p {
  font-size: 1rem;
}

/* Interactive App Showcase Carousel */
.showcase-slider-container {
  position: relative;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.showcase-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 40px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.showcase-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.showcase-item {
  flex: 0 0 260px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.showcase-phone-frame {
  width: 100%;
  aspect-ratio: 9 / 18.5;
  border-radius: 36px;
  background: #000;
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 0 3px #333;
  margin-bottom: 16px;
  overflow: hidden;
}

.showcase-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.showcase-caption {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-text);
  margin-top: 8px;
}

/* Slide indicators / controls */
.showcase-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.control-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  min-height: 280px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.bento-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.bento-card-bg-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

/* Bento Sizes */
.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }

@media (max-width: 1200px) {
  .col-span-2, .row-span-2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.bento-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-surface-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bento-card.accent-card .bento-icon {
  background: var(--color-surface-accent);
  color: var(--color-accent);
}

.bento-card.primary-card {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border: none;
}

.bento-card.primary-card p {
  color: rgba(255, 255, 255, 0.9);
}

.bento-card.primary-card .bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: inherit;
}

.bento-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Interactive Panchang Preview */
.panchang-container {
  max-width: 800px;
  margin: 0 auto;
}

.panchang-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.panchang-tab {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.panchang-tab.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.panchang-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.panchang-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .panchang-card-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.panchang-card-header h3 {
  font-size: 1.6rem;
  color: var(--color-secondary);
}

.panchang-date {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.panchang-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .panchang-metrics {
    grid-template-columns: 1fr;
  }
}

.panchang-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface-tint);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.panchang-item-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.panchang-item-info {
  display: flex;
  flex-direction: column;
}

.panchang-item-info span:first-child {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.panchang-item-info span:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Auspicious / Inauspicious times */
.panchang-timings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .panchang-timings {
    grid-template-columns: 1fr;
  }
}

.timing-box {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.timing-box.auspicious {
  background: rgba(76, 175, 80, 0.05);
  border-color: rgba(76, 175, 80, 0.2);
}

.timing-box.inauspicious {
  background: rgba(244, 67, 54, 0.05);
  border-color: rgba(244, 67, 54, 0.2);
}

.timing-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 12px;
}

.timing-box.auspicious .timing-box-title { color: #2E7D32; }
.timing-box.inauspicious .timing-box-title { color: #C62828; }

.timing-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 6px 0;
}

.timing-list-item span:first-child {
  color: var(--color-text-muted);
}

.timing-list-item span:last-child {
  font-weight: 600;
}

/* Festival Timeline */
.timeline-outer {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }
}

.timeline-node {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.timeline-node:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-node:nth-child(even) {
  justify-content: flex-end;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  border: 4px solid var(--color-primary);
  z-index: 5;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.4);
}

.timeline-node:nth-child(even) .timeline-dot {
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(94, 53, 177, 0.4);
}

.timeline-node:hover .timeline-dot {
  transform: translateX(-50%) scale(1.3);
  background: var(--color-primary);
}

.timeline-content-wrapper {
  width: 50%;
}

.timeline-node:nth-child(odd) .timeline-content-wrapper {
  padding-right: 48px;
  padding-left: 0;
}

.timeline-node:nth-child(even) .timeline-content-wrapper {
  padding-left: 48px;
  padding-right: 0;
}

@media (max-width: 768px) {
  .timeline-node {
    justify-content: flex-start !important;
  }
  
  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }
  
  .timeline-node:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
  }
  
  .timeline-content-wrapper {
    width: 100%;
    padding-left: 52px !important;
    padding-right: 0 !important;
  }
}

.timeline-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.timeline-date {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-node:nth-child(even) .timeline-date {
  color: var(--color-accent);
}

.timeline-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Featured Bhagavad Gita Verse Card */
.gita-verse-card {
  background: var(--color-surface-tint);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.gita-verse-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 10rem;
  font-family: serif;
  color: rgba(var(--color-primary-rgb), 0.1);
  line-height: 1;
}

.sanskrit-verse {
  font-family: var(--font-sanskrit);
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-secondary);
  margin-bottom: 24px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .sanskrit-verse {
    font-size: 1.4rem;
  }
}

.verse-transliteration {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.verse-translation {
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 30px;
}

.verse-citation {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--color-surface-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.benefit-info p {
  font-size: 0.95rem;
}

/* Product Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.roadmap-phase {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.roadmap-phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-border);
  border-radius: 4px 4px 0 0;
}

.roadmap-phase.completed::before { background: #4CAF50; }
.roadmap-phase.active::before { background: var(--color-primary); }
.roadmap-phase.upcoming::before { background: var(--color-accent); }

.roadmap-phase-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.roadmap-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.roadmap-phase.completed .roadmap-badge { background: rgba(76, 175, 80, 0.1); color: #2E7D32; }
.roadmap-phase.active .roadmap-badge { background: rgba(255, 153, 51, 0.1); color: var(--color-secondary); }
.roadmap-phase.upcoming .roadmap-badge { background: rgba(94, 53, 177, 0.1); color: var(--color-accent); }

.roadmap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roadmap-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.roadmap-list-item .check-icon {
  color: #4CAF50;
  font-weight: bold;
}

.roadmap-list-item .dot-icon {
  color: var(--color-primary);
  margin-right: 4px;
}

.roadmap-list-item .lock-icon {
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 24px;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-btn:hover {
  background: var(--color-surface-tint);
  color: var(--color-primary);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--color-text-muted);
}

.faq-item.open .faq-answer-panel {
  max-height: 300px;
}

.faq-item.open {
  border-color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

/* Final CTA Section */
.cta-section {
  padding: 60px 0 100px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-surface-tint), var(--color-surface-accent));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 2.2rem;
  }
}

.cta-banner p {
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Minimalist Footer */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-info p {
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-links-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--color-text-muted);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

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

/* Animations */
@keyframes floatMobile {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes floatLeft {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes floatRight {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll Fade In Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Jap Mala Interactive Widget Styling */
.mala-widget-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}

.mala-beads-circle {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 24px auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mala-bead {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #D7CCC8;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.2s ease;
}

.mala-bead.active {
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}

.mala-bead.completed-bead {
  background: var(--color-secondary);
}

.mala-center-counter {
  width: 120px;
  height: 120px;
  background: var(--color-surface-tint);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
  transition: transform 0.1s ease;
}

.mala-center-counter:active {
  transform: scale(0.95);
}

.mala-count {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.mala-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.mala-total-rounds {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* Bento Custom Layout for Jap Mala */
.mala-bento-layout {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-top: auto;
}

@media (max-width: 768px) {
  .mala-bento-layout {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }
}

.mala-bento-info {
  flex: 1.1;
  text-align: left;
}

@media (max-width: 768px) {
  .mala-bento-info {
    text-align: center;
  }
}

.mala-widget-wrapper {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 220px;
}

.mala-widget-wrapper .mala-beads-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 10px auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mala-widget-wrapper .mala-center-counter {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
  transition: transform 0.1s ease;
  cursor: pointer;
}

.mala-widget-wrapper .mala-center-counter:active {
  transform: scale(0.95);
}

.mala-widget-wrapper .mala-count {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.mala-widget-wrapper .mala-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.mala-widget-wrapper .mala-total-rounds {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
}

/* Wave animations for count */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 153, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0); }
}

.mala-center-counter.pulse {
  animation: pulseGlow 0.5s ease-out;
}
