@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%;
}

.header-nav-links a.nav-booking-btn {
  border: 1.5px solid var(--accent-gold);
  padding: 8px 18px;
  border-radius: 4px;
  color: var(--accent-light-gold);
  background: rgba(200, 160, 70, 0.05);
}

.header-nav-links a.nav-booking-btn::after {
  display: none;
}

.header-nav-links a.nav-booking-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary) !important;
}

/* 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);
}

/* Prevent scrolling and interactions on the rest of the site when drawer is open */
body.drawer-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}
body.drawer-open > *:not(.nav-drawer):not(.drawer-backdrop) {
  pointer-events: none;
}

/* 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;
}

.hero-credibility {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent-light-gold);
  margin-top: 15px;
  margin-bottom: 24px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* 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.easy-step {
  border-color: var(--accent-gold);
  background: rgba(200, 160, 70, 0.03);
}

.pricing-card.easy-step::after {
  content: 'Easy First Step';
  position: absolute;
  top: 25px;
  right: -45px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  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 1fr 1fr 1.2fr 1fr;
  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 {
  display: none !important;
  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;
  }
}

/* ---------- ISHAN ASTROLOGY Consultation Assistant Chatbot ---------- */
#launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #0b1f3a 0%, #071527 100%);
  border: 1.5px solid #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#launcher:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(11, 31, 58, 0.45);
}
#launcher svg {
  width: 34px;
  height: 34px;
  animation: spin 40s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
#launcher.hidden {
  display: none !important;
}

#panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 48px);
  background: #faf6ec;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 20px 60px rgba(7, 21, 39, 0.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
#panel.open {
  display: flex !important;
}

#header {
  background: linear-gradient(135deg, #0b1f3a 0%, #071527 100%);
  padding: 18px 20px 16px;
  position: relative;
  border-bottom: 2px solid #c9a227;
}
#header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
}
#brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
#brand-row svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
#brand-title {
  font-family: 'Playfair Display', serif;
  color: #e4c869;
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 0;
}
#brand-tag {
  color: #1a6b64;
  font-size: 10.5px;
  letter-spacing: 2.2px;
  margin: 3px 0 0 32px;
  text-transform: uppercase;
  font-weight: 500;
}
#close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(228, 200, 105, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  font-family: 'Jost', sans-serif;
}
#close-btn:hover {
  color: #e4c869;
}

#messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#messages::-webkit-scrollbar {
  width: 5px;
}
#messages::-webkit-scrollbar-thumb {
  background: rgba(201, 162, 39, 0.35);
  border-radius: 3px;
}

.msg {
  max-width: 84%;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  border-radius: 12px;
  animation: rise 0.3s ease;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg.assistant {
  align-self: flex-start;
  background: #fff;
  border-left: 3px solid #c9a227;
  color: #16233a;
  border-radius: 4px 12px 12px 12px;
}
.msg.user {
  align-self: flex-end;
  background: #0b1f3a;
  color: #f4ede0;
  border-radius: 12px 4px 12px 12px;
}
.msg.typing {
  align-self: flex-start;
  background: #fff;
  border-left: 3px solid #c9a227;
  border-radius: 4px 12px 12px 12px;
  padding: 12px 16px;
}
.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a6b64;
  margin-right: 3px;
  animation: bounce 1.2s infinite;
}
.dot:nth-child(2) { animation-delay: 0.15s; }
.dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}

#quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 10px;
}
.chip {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  padding: 6px 11px;
  border-radius: 20px;
  border: 1px solid rgba(26, 107, 100, 0.4);
  background: rgba(26, 107, 100, 0.06);
  color: #1a6b64;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.chip:hover {
  background: rgba(26, 107, 100, 0.15);
}

#input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  background: #fff;
}
#text-input {
  flex: 1;
  border: 1px solid rgba(11, 31, 58, 0.15);
  border-radius: 20px;
  padding: 9px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  outline: none;
  background: #faf6ec;
  color: #16233a;
}
#text-input:focus {
  border-color: #c9a227;
}
#send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b1f3a;
  border: 1px solid #c9a227;
  color: #e4c869;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
#send-btn:hover {
  transform: scale(1.07);
}
#send-btn:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

#footer-note {
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 1.2px;
  color: rgba(11, 31, 58, 0.4);
  padding: 6px 0 10px;
  text-transform: uppercase;
  background: #fff;
}

/* 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;
}

.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;
}

/* Booking Grid Wrapper */
.booking-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  gap: 40px;
  align-items: start;
}

.booking-sidebar {
  background: rgba(10, 30, 51, 0.4);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--accent-light-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 12px;
  text-align: center;
}

.sidebar-testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-test-card {
  border-bottom: 1px dashed rgba(200, 160, 70, 0.15);
  padding-bottom: 16px;
}

.sidebar-test-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-test-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin: 6px 0;
}

.sidebar-test-card .client-name {
  font-size: 0.8rem;
  color: var(--accent-light-gold);
  display: block;
  text-align: right;
}

.star-rating {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

}

/* Home Testimonials Section */
.testimonials-grid {
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(10, 30, 51, 0.45);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 160, 70, 0.6);
  background: rgba(10, 30, 51, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(200, 160, 70, 0.2);
}

.testimonial-client {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent-light-gold);
  text-transform: uppercase;
}

.testimonial-tag {
  font-size: 0.75rem;
  color: var(--accent-teal-light);
  letter-spacing: 0.05em;
}

/* Hero Trust Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 18px;
  background: rgba(31, 111, 107, 0.15);
  border: 1px solid rgba(200, 160, 70, 0.4);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-light-gold);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.hero-trust-badge span.badge-icon {
  color: var(--accent-gold);
}

/* Horary Featured Lead Product Card */
.horary-featured-card {
  border: 2px solid var(--accent-gold) !important;
  background: linear-gradient(145deg, rgba(10, 30, 51, 0.85), rgba(31, 111, 107, 0.25)) !important;
  box-shadow: 0 0 25px rgba(200, 160, 70, 0.2);
  position: relative;
}

.easy-step-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #e4c869);
  color: #061321;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Calculator Promo Banner on Homepage */
.calculator-promo-section {
  max-width: 1140px;
  margin: 60px auto;
  padding: 0 28px;
}

.calculator-promo-card {
  background: radial-gradient(circle at top right, rgba(31, 111, 107, 0.3), rgba(10, 30, 51, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.calculator-promo-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-light-gold);
  margin-bottom: 10px;
}

.calculator-promo-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 650px;
}

/* Email Lead Opt-in Box */
.email-optin-section {
  max-width: 1140px;
  margin: 50px auto;
  padding: 0 28px;
}

.email-optin-box {
  background: rgba(10, 30, 51, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.email-optin-box h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent-light-gold);
  margin-bottom: 8px;
}

.email-optin-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.email-optin-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
}

.email-optin-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 25px;
  border: 1px solid var(--border-gold);
  background: rgba(6, 19, 33, 0.8);
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  outline: none;
}

.email-optin-input:focus {
  border-color: var(--accent-gold);
}

.email-optin-btn {
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  background: var(--accent-gold);
  color: #061321;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.email-optin-btn:hover {
  background: var(--accent-light-gold);
  transform: scale(1.03);
}

.optin-success-msg {
  display: none;
  color: var(--accent-teal-light);
  font-size: 0.88rem;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .booking-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .calculator-promo-card {
    flex-direction: column;
    text-align: center;
  }
  .email-optin-form {
    flex-direction: column;
  }
}

