/* ==========================================================================
   Peaceful Path - Premium Design System, Layout & Animations
   Dr. Pooja Malode
   ========================================================================== */

/* 1. BRAND VARIABLES & THEME TOKENS */
:root {
  /* Brand Palette */
  --primary-indigo: #27206F;
  --secondary-purple: #403A8C;
  --leaf-green: #2F8C59;
  --soft-green: #74B66A;
  --golden-yellow: #E8D73C;
  --soft-lime: #C9D45A;
  --white: #FFFFFF;
  --black: #080712;
  --grey-bg: #F5F7FA;
  --dark-bg: #09081B;

  /* Accent Colors (Chakras) */
  --chakra-red: #E53935;
  --chakra-orange: #F6A623;
  --chakra-yellow: #F7E733;
  --chakra-green: #28A745;
  --chakra-blue: #20C5E8;
  --chakra-indigo: #27206F;
  --chakra-purple: #6C2BD9;

  /* Typography */
  --font-main: 'Outfit', 'Poppins', sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 4px 10px rgba(39, 32, 111, 0.03);
  --shadow-md: 0 10px 25px rgba(39, 32, 111, 0.05);
  --shadow-lg: 0 20px 45px rgba(39, 32, 111, 0.08);
  --shadow-premium: 0 30px 60px rgba(39, 32, 111, 0.12);
  --shadow-gold: 0 8px 25px rgba(232, 215, 60, 0.3);
}

/* 2. BASE RESET & INITIAL SETUP */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: #1F1D38;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Section Common Spacing */
section {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Alternating Section Backgrounds */
.bg-white {
  background-color: var(--white);
}

.bg-grey {
  background-color: var(--grey-bg);
}

.bg-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.sec-title {
  font-size: 2.35rem;
  color: var(--primary-indigo);
  text-align: center;
  margin-bottom: 3.5rem;
}

.bg-dark .sec-title {
  color: var(--white);
}

.sec-title span {
  color: #D32F2F;
}

/* 3. PREMIUM UI UTILITIES */
/* Glassmorphism Card System */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-fast);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(39, 32, 111, 0.12);
}

/* Background Glowing Aura shapes */
.glowing-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.aura-primary {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(39, 32, 111, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -200px;
  animation: floatAura 20s infinite alternate ease-in-out;
}

.aura-secondary {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 140, 89, 0.12) 0%, transparent 70%);
  bottom: -200px;
  right: -250px;
  animation: floatAura 25s infinite alternate ease-in-out;
}

@keyframes floatAura {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 40px) scale(1.08); }
}

/* Header logo container styling */
.brand-logo-container {
  text-align: center;
  padding: 1.75rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(39, 32, 111, 0.03);
}

.brand-logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo-img.zoomed {
  transform: scale(1.35);
}

/* Announcement Top Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-indigo) 0%, var(--secondary-purple) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Sticky Top Conversion Banner */
.sticky-top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFEB3B;
  color: #000000;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border-bottom: 1.5px solid #FBC02D;
  transition: transform 0.3s ease;
}

/* 4. BUTTONS & HOVER STATES */
.btn-yellow-cta {
  background: linear-gradient(180deg, #FFEB3B 0%, #FBC02D 100%);
  color: #000000;
  border: 1.5px solid #FBC02D;
  border-radius: 50px;
  padding: 0.95rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-gold);
}

.btn-yellow-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(251, 192, 45, 0.45);
}

.btn-yellow-cta:active {
  transform: translateY(-1px);
}

.btn-secondary-link {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.95rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.btn-secondary-link:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* 5. HERO SECTION */
.hero-realigned {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 5.5rem 0 7rem;
  position: relative;
}

.hero-main-title {
  font-size: 2.75rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  position: relative;
}

/* Soft Breathing heading aura glow effect */
.hero-main-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 80px;
  background: radial-gradient(circle, rgba(116, 182, 106, 0.2) 0%, transparent 60%);
  z-index: -1;
  filter: blur(25px);
  animation: breatheGlow 4s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes breatheGlow {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-sub-title-marathi {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--soft-green);
  text-align: center;
  margin-bottom: 2.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-emotional-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Left: Profile Frame with floating elements */
.hero-visual-frame {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.hero-visual-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: #0E0D24;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-visual-title-badge {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFEB3B;
  margin-bottom: 0.5rem;
}

.hero-visual-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.hero-visual-desc strong {
  color: var(--white);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

/* Hero Right: Booking Cards */
.hero-details-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-details-header {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFEB3B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.5rem;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.detail-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.detail-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.detail-card-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.detail-card-val.highlight {
  color: #FFEB3B;
}

.hero-action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* 6. CONVERSION CTA BAR */
.cta-conversion-bar {
  background-color: var(--white);
  padding: 1.5rem 0;
  border-top: 1px solid #E1E5ED;
  border-bottom: 1px solid #E1E5ED;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.cta-left {
  display: flex;
  flex-direction: column;
}

.cta-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.cta-original-price {
  font-size: 1.1rem;
  color: #8A88A5;
  font-weight: 500;
  display: none; /* Removed based on no cross pricing rule */
}

.cta-current-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-indigo);
}

.cta-seat-warning {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--leaf-green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}

/* 7. SECTION 2: WHO IS THIS FOR (Replaced Cards) */
.chk-list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.25rem;
}

.chk-item {
  background: var(--white);
  border: 1px solid rgba(39, 32, 111, 0.05);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.chk-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: rgba(64, 58, 140, 0.1);
}

.chk-icon-blue {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(39, 32, 111, 0.05);
  color: var(--primary-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F1D38;
  line-height: 1.55;
}

/* 8. SECTION 3: THIS WILL HELP YOU */
.changes-box {
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--secondary-purple) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-premium);
  margin: 0 auto;
  max-width: 940px;
}

.changes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
}

.change-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  color: var(--white);
}

.change-icon-star {
  color: #FFEB3B;
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
  animation: starPulse 2.5s infinite ease-in-out;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.change-text {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

/* 9. SECTION 4: SESSION ROADMAP */
.journey-roadmap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.day-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: stretch;
}

.day-badge-box {
  background-color: var(--secondary-purple);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.day-badge-num {
  font-size: 2.5rem;
  font-weight: 900;
}

.day-badge-lbl {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 0.35rem;
}

.day-details-card {
  background: var(--white);
  border: 1.5px solid #E1E5ED;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.day-details-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.day-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-indigo);
  margin-bottom: 0.35rem;
}

.day-subtitle {
  font-size: 1rem;
  color: var(--leaf-green);
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.day-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 2rem;
}

.day-chk-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.day-chk-icon-red {
  color: var(--leaf-green);
  font-size: 1.2rem;
  font-weight: bold;
}

.day-chk-text {
  font-size: 1.025rem;
  color: #383556;
  font-weight: 600;
}

/* 10. SECTION 5: TESTIMONIAL WHATSAPP GRID */
.review-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.review-screenshot-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid #E1E5ED;
  background-color: var(--white);
  aspect-ratio: 9/19;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-screenshot-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-premium);
}

.review-screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 11. SECTION 6: MEET THE GUIDE */
.guide-container-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.guide-profile-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 5px solid rgba(255,255,255,0.06);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(64,58,140,0.4) 0%, rgba(47,140,89,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-content-left {
  text-align: left;
}

.guide-name-h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #FFEB3B;
  margin-bottom: 1.5rem;
}

.guide-lead-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

.qualification-header {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFEB3B;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qualification-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.5rem;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.025rem;
  color: rgba(255,255,255,0.9);
}

.qual-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* 12. SECTION 7: SESSION INVESTMENT */
.investment-card {
  border: 3px solid var(--golden-yellow);
  border-radius: 28px;
  background-color: var(--white);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-premium);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.inv-header-price {
  font-size: 1.65rem;
  color: var(--primary-indigo);
  font-weight: 800;
  margin-bottom: 1rem;
}

.inv-offer-price-banner {
  font-size: 2.65rem;
  font-weight: 950;
  color: var(--primary-indigo);
  margin-bottom: 2.5rem;
}

.inv-features-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-indigo);
  margin-bottom: 1.75rem;
  text-align: left;
  border-bottom: 1.5px solid #E1E5ED;
  padding-bottom: 0.75rem;
}

.inv-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 3.5rem;
}

.inv-feat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
  color: #1F1D38;
  font-weight: 600;
}

.inv-feat-item i {
  color: var(--leaf-green);
}

.inv-center-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* 13. SECTION 8: FAQ ACCORDION */
.faq-box-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-row {
  border: 1.5px solid #E1E5ED;
  border-radius: 12px;
  background-color: var(--white);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-row:hover {
  border-color: var(--primary-indigo);
  box-shadow: var(--shadow-sm);
}

.faq-q-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: none;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-indigo);
  text-align: left;
  cursor: pointer;
}

.faq-q-btn i {
  color: #88889A;
  transition: transform var(--transition-normal);
}

.faq-row.active .faq-q-btn i {
  transform: rotate(45deg);
  color: #D32F2F;
}

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

.faq-ans-content {
  padding: 0 1.75rem 1.5rem;
  color: #4A4A6A;
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq-bottom-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* 14. SECTION 9: LIMITED WARNING */
.seats-warning-box {
  max-width: 780px;
  margin: 0 auto;
  border: 2px dashed #D32F2F;
  background-color: rgba(211, 47, 47, 0.01);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  text-align: center;
}

.seats-warning-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #D32F2F;
  margin-bottom: 2.25rem;
}

.warning-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.warning-bullet-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1F1D38;
}

/* 15. SECTION 10: CONTACT INFO */
.contact-detail-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-meta-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-indigo);
  margin-bottom: 1.75rem;
}

.contact-meta-row {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 2.5rem;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1F1D38;
}

.contact-meta-item i {
  color: var(--leaf-green);
}

.contact-sub-text {
  font-size: 1rem;
  color: #64648C;
}

/* 16. SECTION 11: TWO PATHS DECISION (Updated content) */
.paths-title {
  font-size: 2.15rem;
  font-weight: 900;
  text-align: center;
  color: var(--primary-indigo);
  margin-bottom: 0.75rem;
}

.paths-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #4A4A6A;
  margin-bottom: 4rem;
  font-weight: 600;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.path-option-card {
  border-radius: 20px;
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.path-option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.path-option-card.card-danger {
  border: 1.5px solid #E1E5ED;
  background-color: var(--white);
  border-top: 5px solid #88889A;
}

.path-option-card.card-success {
  border: 2px solid var(--primary-indigo);
  background-color: rgba(39, 32, 111, 0.02);
  border-top: 5px solid var(--primary-indigo);
}

.path-card-title {
  font-size: 1.45rem;
  font-weight: 850;
  margin-bottom: 1.5rem;
}

.card-danger .path-card-title {
  color: #64648C;
}

.card-success .path-card-title {
  color: var(--primary-indigo);
}

.path-card-body {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 600;
  color: #4A4A6A;
}

/* 17. FOOTER STYLES */
/* Footer Layout - Updated Background & Fixed SVG Icons */
footer {
  background-color: #09090e; /* अधिक गडद आणि प्रीमियम नाईट-ब्लॅक बॅकग्राउंड */
  color: #B4B1C5;
  padding: 3.5rem 0 2rem;
  text-align: center;
  border-top: 1.5px solid rgba(255, 235, 59, 0.15);
  overflow: hidden;
}

.footer-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-btn-row .btn-yellow-cta {
  padding: 0.95rem 2.75rem;
}

.footer-contact-and-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-call-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-call-container .call-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-social-icons {
  display: flex;
  gap: 1.2rem;
}

/* सोशल लिंक्ससाठीचे वर्तुळ आणि मूळ ओरिजिनल कलर्स */
.footer-soc-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

/* SVG आयकॉन्स आत व्यवस्थित सेंटर होण्यासाठी */
.footer-soc-link svg {
  transition: transform 0.3s ease;
}

/* फोन आयकॉन - पिवळा */
.footer-soc-link.phone-link {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.footer-soc-link.phone-link:hover {
  background-color: #FFEB3B;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255, 235, 59, 0.4);
}

/* १. Instagram - मूळ ब्रँड ग्रेडियंट कलर */
.footer-soc-link.insta-color {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(220, 39, 67, 0.2);
}
.footer-soc-link.insta-color:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.5);
}

/* २. Facebook - मूळ ब्रँड निळा कलर */
.footer-soc-link.fb-color {
  background-color: #1877F2;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}
.footer-soc-link.fb-color:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.5);
}

/* ३. YouTube - मूळ ब्रँड लाल कलर */
.footer-soc-link.yt-color {
  background-color: #FF0000;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}
.footer-soc-link.yt-color:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
}

.footer-soc-link:hover svg {
  transform: scale(1.1);
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}


/* 18. SCROLL REVEAL ANIMATIONS (Intersection Observer classes) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* 19. RESPONSIVE MEDIA STYLES (MOBILE-FIRST SCALE) */

@media (max-width: 991px) {
  .hero-content-grid,
  .guide-container-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-visual-frame {
    max-width: 520px;
    margin: 0 auto;
  }
  
  .guide-profile-card {
    max-width: 420px;
    margin: 0 auto;
    order: -1; /* Move profile image above details on mobile */
  }
  
  .chk-list-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .changes-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .day-checklist {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .review-screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  section {
    padding: 4.5rem 0;
  }
  
  .sec-title {
    font-size: 1.95rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-main-title {
    font-size: 2.15rem;
  }
  
  .hero-emotional-desc {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }
  
  .cta-conversion-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.75rem 0;
  }
  
  .cta-left {
    align-items: center;
  }
  
  .day-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .day-badge-box {
    padding: 1.25rem;
  }
  
  .day-badge-num {
    font-size: 2.15rem;
  }
  
  .day-details-card {
    padding: 1.75rem;
  }
  
  .paths-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-btn-row {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.75rem;
  }
  
  .hero-sub-title-marathi {
    font-size: 1.05rem;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .review-screenshots-grid {
    grid-template-columns: 1fr;
    max-width: 290px;
    margin: 0 auto;
  }
  
  .investment-card {
    padding: 2.5rem 1.5rem;
  }
  
  .inv-offer-price-banner {
    font-size: 2.15rem;
  }
  
  .faq-q-btn {
    padding: 1.15rem;
    font-size: 1rem;
  }
  
  .faq-ans-content {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.95rem;
  }
  
  .seats-warning-box {
    padding: 2.5rem 1.5rem;
  }
  
  .seats-warning-title {
    font-size: 1.45rem;
  }
  
  .contact-meta-row {
    flex-direction: column;
    gap: 1.15rem;
    align-items: center;
  }
}