@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Lora:ital,wght@0,400;0,500;1,400&family=Tiro+Devanagari+Sanskrit:ital@0;1&display=swap');

:root {
  --bg-primary: #061321;
  --bg-secondary: #0a1e33;
  --text-primary: #E9E4D6;
  --text-muted: rgba(233, 228, 214, 0.7);
  --text-light: #ffffff;
  --accent-gold: #C8A046;
  --accent-light-gold: #E3CD9A;
  --accent-teal: #1F6F6B;
  --accent-teal-light: #2E9D98;
  --border-gold: rgba(200, 160, 70, 0.25);
  --font-serif: 'Lora', serif;
  --font-heading: 'Cinzel', serif;
  --font-italic: 'Cormorant Garamond', serif;
  --font-sanskrit: 'Tiro Devanagari Sanskrit', serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--bg-primary);
  overflow-x: hidden; /* Prevent horizontal scroll at root level */
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(200, 160, 70, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 160, 70, 0.5);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-serif);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Stars/Sparks Effect */
.bg-sparks {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(1px 1px at 10% 20%, rgba(232,221,180,0.5), transparent), 
    radial-gradient(1px 1px at 80% 10%, rgba(232,221,180,0.4), transparent), 
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(232,221,180,0.4), transparent), 
    radial-gradient(1px 1px at 30% 85%, rgba(232,221,180,0.35), transparent), 
    radial-gradient(1px 1px at 90% 60%, rgba(232,221,180,0.3), transparent), 
    radial-gradient(1.5px 1.5px at 45% 40%, rgba(232,221,180,0.3), transparent);
  background-repeat: repeat;
  background-size: 600px 600px;
  opacity: 0.6;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(6, 19, 33, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--accent-light-gold);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  background-color: rgba(200, 160, 70, 0.1);
  transform: rotate(360deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(6, 19, 33, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--accent-light-gold);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  background-color: rgba(200, 160, 70, 0.1);
  transform: rotate(360deg);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header-nav-links a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.header-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.header-nav-links a:hover,
.header-nav-links a.active {
  color: var(--accent-light-gold);
}

.header-nav-links a:hover::after,
.header-nav-links a.active::after {
  width: 100%;
}

/* Hamburger Button */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex; /* Always visible to let users open the side drawer */
  flex-direction: column;
  gap: 5px;
  width: 44px; /* Standard mobile touch target width */
  height: 44px; /* Standard mobile touch target height */
  justify-content: center;
  align-items: center; /* Center the spans within the hit target */
  z-index: 110;
  padding: 10px; /* Expanded hit area */
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--accent-light-gold);
  transition: var(--transition-smooth);
  transform-origin: left center;
}

.hamburger-btn:hover span {
  background-color: var(--accent-gold);
}

/* Nav Drawer (Slide-out Overlay) */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 280px;
  max-width: 100%;
  height: 100vh;
  z-index: 1000;
  background: rgba(6, 19, 33, 0.96);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-gold);
  padding: 90px 30px 30px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  visibility: hidden; /* Hide when closed to prevent browser calculating horizontal overflow */
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
}

.nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 10px; /* Expanded touch target area */
  line-height: 1;
}

.drawer-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.drawer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.drawer-links {
  list-style: none;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-links li {
  width: 100%;
}

.drawer-links a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.drawer-links a:hover,
.drawer-links a.active {
  color: var(--accent-light-gold);
  padding-left: 8px;
}

.drawer-divider {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin: 15px 0 5px;
  opacity: 0.7;
  border-bottom: 1px solid rgba(200, 160, 70, 0.15);
  padding-bottom: 6px;
}

.drawer-links .section-link a {
  font-size: 0.88rem;
  text-transform: capitalize;
  font-family: var(--font-serif);
  color: rgba(233, 228, 214, 0.6);
  padding: 4px 0;
}

.drawer-links .section-link a:hover {
  color: var(--accent-light-gold);
}

.drawer-cta {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

/* Page Overlay backdrop when drawer open */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(4px);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}


/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 160, 70, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.section-label span {
  opacity: 0.7;
  font-family: var(--font-italic);
  text-transform: none;
  font-size: 0.95rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-light);
  margin: 0 auto 20px;
  max-width: 900px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-light-gold);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* Page Sections */
section.content-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

section.content-section.alt-bg {
  background: rgba(255, 255, 255, 0.012);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.section-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-grid.flip > div:first-child {
  order: 2;
}
.section-grid.flip > div:last-child {
  order: 1;
}

.system-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 2px;
}

.system-tag.teal {
  color: var(--accent-teal-light);
  border-color: var(--accent-teal-light);
}

.section-grid h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-light);
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.section-grid h2 em {
  font-style: italic;
  color: var(--accent-light-gold);
  font-family: var(--font-italic);
}

.sanskrit-sub {
  font-family: var(--font-sanskrit);
  font-size: 1.3rem;
  color: var(--accent-light-gold);
  opacity: 0.75;
  font-style: italic;
  margin-bottom: 24px;
}

.section-grid p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-grid p em {
  color: var(--accent-light-gold);
  font-style: normal;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.feature-list li span {
  color: var(--accent-gold);
  opacity: 0.8;
}

/* SVG Chart Designs */
.svg-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.svg-container::before {
  content: attr(data-number);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 10rem;
  color: var(--accent-gold);
  opacity: 0.08;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.astro-svg {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: block;
  background: rgba(6, 19, 33, 0.5);
  border: 1px solid var(--border-gold);
  padding: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.astro-svg:hover {
  border-color: rgba(200, 160, 70, 0.5);
  box-shadow: 0 10px 40px rgba(200, 160, 70, 0.05);
}

/* Process Section */
.process-intro {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 20px; /* Prevent text touching viewport edges on mobile */
}

.line-accent {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--accent-gold), transparent);
  margin: 0 auto 20px;
}

.process-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gold);
}

.process-card {
  background: var(--bg-primary);
  padding: 40px 30px;
  transition: var(--transition-smooth);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.015);
}

.process-num {
  font-family: var(--font-italic);
  font-size: 2.8rem;
  color: var(--accent-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.process-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Case Studies Section */
.cases-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-gold);
}

.case-card {
  background: var(--bg-primary);
  padding: 36px 30px;
  transition: var(--transition-smooth);
}

.case-card:hover {
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 0 15px rgba(200, 160, 70, 0.03);
}

.case-card .star-icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}

.case-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.case-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(31, 111, 107, 0.08), transparent 60%);
  border-bottom: 1px solid var(--border-gold);
}

.cta-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.cta-section h2 {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-light);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(233, 228, 214, 0.3);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-light-gold);
  transform: translateY(-2px);
}

/* Pricing Page Specifics */
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pricing-card {
  background: rgba(10, 30, 51, 0.4);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent-gold);
  background: rgba(200, 160, 70, 0.03);
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 160, 70, 0.4);
}

.pricing-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 24px;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-light-gold);
  font-weight: 600;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-serif);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✦';
  color: var(--accent-gold);
}

/* Footer Section */
footer {
  background-color: #030a12;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 440px;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: var(--accent-light-gold);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.footer-contact-info li span {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--accent-light-gold);
}

/* Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: hidden;
  will-change: transform, opacity;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Systems Ticker Section */
.ticker-section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.005);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.ticker-section h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.ticker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  white-space: nowrap;
}

.track-forward {
  animation: scrollForward 30s linear infinite;
}

.track-backward {
  animation: scrollBackward 30s linear infinite;
}

.ticker-item {
  background: rgba(6, 19, 33, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  padding: 14px 28px;
  border-radius: 40px;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ticker-item span {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--accent-gold);
  font-size: 1rem;
}

.ticker-item .sanskrit-tag {
  font-family: var(--font-sanskrit);
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.65;
}

@keyframes scrollForward {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-33.33% - 13px));
  }
}

@keyframes scrollBackward {
  0% {
    transform: translateX(calc(-33.33% - 13px));
  }
  100% {
    transform: translateX(0);
  }
}

/* Splash Screen / Preloader */
.splash-screen {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.splash-screen.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.splash-content {
  text-align: center;
}

.splash-logo-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  position: relative;
}

.splash-logo-svg {
  width: 100%;
  height: 100%;
}

.splash-logo-svg circle {
  animation: drawCircle 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.splash-logo-svg text {
  opacity: 0;
  animation: fadeInText 1s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, pulseGlow 2.5s infinite ease-in-out;
  transform-origin: center;
}

.splash-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFade 1s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-subtitle {
  font-family: var(--font-italic);
  color: var(--accent-gold);
  font-size: 1rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFade 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(227, 205, 154, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(227, 205, 154, 0.8));
    fill: var(--text-light);
  }
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Consultation Form Styling */
.booking-container {
  max-width: 1100px;
  width: calc(100% - 40px);
  margin: 0 auto;
  background: rgba(6, 19, 33, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-header h2 {
  margin-top: 10px;
  margin-bottom: 5px;
}

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

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 30, 51, 0.6);
  border: 1px solid rgba(200, 160, 70, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(200, 160, 70, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-light);
}

.booking-footer {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.booking-footer .note {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 450px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .booking-container {
    padding: 30px 20px;
  }
}

/* AI Chat Widget Styling */
.ai-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.ai-chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 1px solid var(--accent-light-gold);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(200, 160, 70, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-bubble:hover {
  transform: scale(1.08);
}

.ai-bubble-icon {
  font-size: 1.4rem;
  color: var(--bg-primary);
}

.ai-bubble-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  opacity: 0;
  animation: pulseGold 2s infinite;
  pointer-events: none;
}

@keyframes pulseGold {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.ai-chat-window {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 500px;
  background: rgba(6, 19, 33, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 1000;
}

.ai-chat-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  padding: 16px 20px;
  background: rgba(10, 30, 51, 0.8);
  border-bottom: 1px solid rgba(200, 160, 70, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-header-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200, 160, 70, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-light-gold);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ai-profile-info h4 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.ai-profile-info span {
  font-size: 0.7rem;
  color: var(--accent-gold);
}

.ai-chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ai-chat-close:hover {
  color: var(--text-light);
}

.ai-chat-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
}

.ai-message {
  display: flex;
  width: 100%;
}

.ai-message.assistant {
  justify-content: flex-start;
}

.ai-message.user {
  justify-content: flex-end;
}

.ai-message-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.ai-message.assistant .ai-message-bubble {
  background: rgba(10, 30, 51, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-top-left-radius: 2px;
}

.ai-message.user .ai-message-bubble {
  background: rgba(200, 160, 70, 0.15);
  border: 1px solid rgba(200, 160, 70, 0.3);
  color: var(--accent-light-gold);
  border-top-right-radius: 2px;
}

.ai-chat-footer {
  padding: 16px 20px;
  background: rgba(10, 30, 51, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-quick-options {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.ai-quick-options::-webkit-scrollbar {
  display: none;
}

.ai-quick-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 160, 70, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.ai-quick-btn:hover {
  background: rgba(200, 160, 70, 0.08);
  color: var(--accent-light-gold);
}

.ai-chat-input-form {
  display: flex;
  gap: 8px;
}

.ai-chat-input-form input {
  flex-grow: 1;
  background: rgba(6, 19, 33, 0.8);
  border: 1px solid rgba(200, 160, 70, 0.2);
  border-radius: 24px;
  padding: 10px 16px;
  color: var(--text-light);
  font-size: 0.85rem;
  outline: none;
}

.ai-chat-input-form input:focus {
  border-color: var(--accent-gold);
}

.ai-chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: none;
  color: var(--bg-primary);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-action-btn {
  background: var(--accent-gold);
  border: none;
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
}

/* Typing Indicator */
.ai-typing-indicator {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.ai-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 480px) {
  .ai-chat-window {
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    border-radius: 0;
    border: none;
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .section-grid.flip > div:first-child {
    order: initial;
  }
  .section-grid.flip > div:last-child {
    order: initial;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
    max-width: 500px;
    margin: 30px auto 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    grid-column: span 2;
  }

  .header-nav-links {
    display: none; /* Hide header nav links on tablet and smaller to prevent collision */
  }

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

@media (max-width: 768px) {
  section.content-section {
    padding: 70px 0;
  }

  header {
    padding: 0 20px;
    height: 70px;
  }
  
  header.scrolled {
    height: 60px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  section.content-section {
    padding: 50px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .header-left {
    gap: 10px;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}

@media (max-width: 375px) {
  .logo-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  
  header {
    padding: 0 12px;
  }
  
  .header-left {
    gap: 8px;
  }
}

/* Mobile Button Optimization */
@media (max-width: 480px) {
  .btn {
    padding: 14px 20px;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }
  
  .booking-footer .note {
    font-size: 0.75rem;
  }
}

/* About Ishan Section Styling */
.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: rgba(10, 30, 51, 0.4);
  border: 1px solid var(--border-gold);
  padding: 30px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 160, 70, 0.5);
  background: rgba(10, 30, 51, 0.6);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-icon {
  font-size: 1.5rem;
}

.about-card h3 {
  font-family: var(--font-heading);
  color: var(--accent-light-gold);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin: 0;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-root-list, .about-qualities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 10px;
}

.about-root-list li, .about-qualities-list li {
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-root-list li::before {
  content: '•';
  color: var(--accent-gold);
}

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

/* Payment Modal styling */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 440px;
  background: rgba(10, 30, 51, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-content {
  position: relative;
  padding: 32px 24px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--accent-light-gold);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin: 12px 0 8px;
  color: var(--text-light);
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.qr-container {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.payment-qr-img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.upi-details {
  margin-top: 10px;
  color: #061321;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  text-align: center;
}

.upi-details strong {
  font-family: var(--font-heading);
  color: #061321;
}

.upi-details p {
  margin: 2px 0;
}

.modal-footer {
  margin-top: 12px;
}

.modal-footer #modalProceedBtn {
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.3;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Payment Status styling for Option 1 */
.payment-status-box {
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 160, 70, 0.15);
  border-radius: 8px;
}

.status-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.spinner-ring {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(200, 160, 70, 0.2);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: status-spin 1s linear infinite;
}

.spinner-ring.success {
  border-color: #2e9d98 !important;
  background: #2e9d98;
  animation: none;
  position: relative;
}

.spinner-ring.success::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes status-spin {
  to { transform: rotate(360deg); }
}

.status-message {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.status-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.status-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.status-progress-fill.success {
  background: #2e9d98;
  width: 100% !important;
  transition: background 0.3s ease;
}

/* Booking Page Payment QR Layout Styling */
.booking-layout-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.booking-payment-card {
  background: rgba(10, 30, 51, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-payment-card h3 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.25rem;
  margin: 8px 0 12px;
  letter-spacing: 0.05em;
}

.payment-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}

.booking-qr-container {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 232px;
}

.booking-qr-img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.upi-info {
  margin-top: 10px;
  color: #061321;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  text-align: center;
}

.upi-info strong {
  font-family: var(--font-heading);
  color: #061321;
}

.upi-info p {
  margin: 2px 0;
}

.fees-list {
  text-align: left;
  border-top: 1px solid var(--border-gold);
  padding-top: 16px;
  margin-top: 10px;
}

.fees-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--accent-light-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.fees-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fees-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
}
.modal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.3;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Payment Status styling for Option 1 */
.payment-status-box {
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 160, 70, 0.15);
  border-radius: 8px;
}

.status-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.spinner-ring {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(200, 160, 70, 0.2);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: status-spin 1s linear infinite;
}

.spinner-ring.success {
  border-color: #2e9d98 !important;
  background: #2e9d98;
  animation: none;
  position: relative;
}

.spinner-ring.success::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes status-spin {
  to { transform: rotate(360deg); }
}

.status-message {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.status-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.status-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-gold);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.status-progress-fill.success {
  background: #2e9d98;
  width: 100% !important;
  transition: background 0.3s ease;
}

/* Booking Page Payment QR Layout Styling */
.booking-layout-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.booking-payment-card {
  background: rgba(10, 30, 51, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-payment-card h3 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.25rem;
  margin: 8px 0 12px;
  letter-spacing: 0.05em;
}

.payment-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}

.booking-qr-container {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 232px;
}

.booking-qr-img {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.upi-info {
  margin-top: 10px;
  color: #061321;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  text-align: center;
}

.upi-info strong {
  font-family: var(--font-heading);
  color: #061321;
}

.upi-info p {
  margin: 2px 0;
}

.fees-list {
  text-align: left;
  border-top: 1px solid var(--border-gold);
  padding-top: 16px;
  margin-top: 10px;
}

.fees-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--accent-light-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.fees-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fees-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
}

.fees-list li strong {
  color: var(--accent-light-gold);
}

@media (max-width: 992px) {
  .booking-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Booking Fees Summary strip styling */
.booking-fees-summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0 auto 36px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid var(--border-gold);
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fee-item {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-serif);
}

.fee-item strong {
  color: var(--accent-light-gold);
  margin-left: 4px;
}
