/* ===================================================================
   SRIVALLI NURTURES — WARM LUXURY DESIGN SYSTEM
   Theme: Warm Terracotta Coral (#E07A5F), Sage Green (#81B29A), Warm Cream (#FFFBF6), Charcoal (#2B2D42), Gold (#F2CC8F)
   =================================================================== */

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

:root {
  --bg-primary: #FFFBF6;
  --bg-cream: #FAF4ED;
  --bg-card: #FFFFFF;
  --bg-dark-card: #2B2D42;
  
  --text-main: #2B2D42;
  --text-secondary: #4A4E69;
  --text-muted: #7E849B;
  
  --color-coral: #E07A5F;
  --color-coral-dark: #C55D42;
  --color-coral-light: #FCECE9;
  --color-coral-glow: rgba(224, 122, 95, 0.25);
  
  --color-sage: #81B29A;
  --color-sage-dark: #5B8D76;
  --color-sage-light: #F0F6F3;
  
  --color-charcoal: #2B2D42;
  --color-gold: #F2CC8F;
  --color-gold-dark: #D4A359;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --border-subtle: rgba(43, 45, 66, 0.08);
  --border-coral: rgba(224, 122, 95, 0.3);

  --shadow-sm: 0 4px 14px rgba(43, 45, 66, 0.05);
  --shadow-md: 0 12px 30px rgba(43, 45, 66, 0.08);
  --shadow-lg: 0 20px 45px rgba(43, 45, 66, 0.12);
  --shadow-coral: 0 12px 30px rgba(224, 122, 95, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Resets & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.modal-open {
  overflow: hidden !important;
}

/* Background Ambient Orbs */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow-orb-1 {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.12) 0%, rgba(242, 204, 143, 0.1) 40%, rgba(255, 251, 246, 0) 70%);
  filter: blur(90px);
}

.bg-glow-orb-2 {
  position: absolute;
  top: 45%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(129, 178, 154, 0.12) 0%, rgba(224, 122, 95, 0.06) 50%, rgba(255, 251, 246, 0) 70%);
  filter: blur(100px);
}

.app-wrapper {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(0.85rem, 4vw, 2rem);
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #E07A5F 0%, #C55D42 50%, #81B29A 100%);
  color: #FFFFFF;
  padding: 0.65rem 1rem;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 10px rgba(224, 122, 95, 0.2);
}

.announcement-bar .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 10px #FFFFFF;
  animation: pulse 1.5s infinite;
}

/* Navbar Logo Brand */
.navbar {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 900;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-coral-light);
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--color-coral);
}

/* Hero Section */
.hero-section {
  padding: clamp(1.75rem, 5vw, 3.5rem) 0 2rem;
  text-align: center;
}

.glow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-coral-light);
  color: var(--color-coral-dark);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(224, 122, 95, 0.2);
  line-height: 1.3;
}

.glow-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-coral);
  box-shadow: 0 0 8px var(--color-coral);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 5.2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--color-charcoal);
}

.hero-title .highlight {
  color: var(--color-coral);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.7vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* VSL Video Container Card */
.vsl-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: clamp(16px, 4vw, 24px);
  padding: clamp(0.4rem, 2vw, 0.75rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.vsl-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
  border-radius: clamp(12px, 3vw, 18px);
  overflow: hidden;
}

.vsl-video-wrapper iframe,
.vsl-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Custom Video Cover Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(43, 45, 66, 0.45) 0%, rgba(43, 45, 66, 0.88) 100%),
              url('assets/srivalli_sitting.jpg') center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s ease;
  padding: 1rem;
  text-align: center;
}

.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn-pulse {
  width: clamp(68px, 12vw, 88px);
  height: clamp(68px, 12vw, 88px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.7);
  animation: pulseBig 1.8s infinite;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  padding-left: 5px;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.video-overlay:hover .play-btn-pulse {
  transform: scale(1.08);
}

.play-overlay-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.95rem, 3vw, 1.4rem);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.play-overlay-sub {
  font-size: clamp(0.75rem, 2.2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.3rem;
}

/* Sticky Video Mini Player */
.vsl-video-wrapper.is-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  padding-top: 180px;
  z-index: 999;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), var(--shadow-coral);
  border: 3px solid var(--color-coral);
  animation: floatIn 0.4s ease;
}

.sticky-close-btn {
  display: none;
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  border: 2px solid #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.vsl-video-wrapper.is-sticky .sticky-close-btn {
  display: flex;
}

/* Video Control Meta Bar */
.video-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
  border-radius: 0 0 calc(var(--radius-lg) - 6px) calc(var(--radius-lg) - 6px);
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-coral);
  box-shadow: 0 0 8px var(--color-coral);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

/* Video Chapters Navigation */
.chapters-container {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.chapter-chip {
  flex: 0 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.chapter-chip:hover, .chapter-chip.active {
  background: var(--color-coral-light);
  border-color: var(--color-coral);
  color: var(--color-coral-dark);
}

.chapter-chip .time {
  color: var(--color-coral);
  font-weight: 800;
}

/* Developer Mode Skip Button */
.dev-skip-bar {
  margin: 0.5rem 0 2rem;
  text-align: center;
}

.btn-dev-skip {
  background: #FFFFFF;
  border: 1px dashed var(--color-coral);
  color: var(--color-coral-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  line-height: 1.3;
}

.btn-dev-skip:hover {
  background: var(--color-coral-light);
}

/* Synchronized Transcript Accordion */
.transcript-section {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.transcript-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background: var(--bg-cream);
}

.transcript-body {
  padding: 1.25rem;
  display: none;
  max-height: 250px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-overflow-scrolling: touch;
}

.transcript-body.is-open {
  display: block;
}

.transcript-timestamp {
  color: var(--color-coral);
  font-weight: 700;
  cursor: pointer;
  margin-right: 0.4rem;
}

.transcript-timestamp:hover {
  text-decoration: underline;
}

/* Doctor Introduction Grid */
.doctor-intro-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: clamp(16px, 4vw, 24px);
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.doctor-img-box {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 0.85;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-coral-light);
  margin: 0 auto;
}

.doctor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-bio-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

/* DYNAMICALLY REVEALED OFFER SECTION */
.offer-section {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.offer-section.is-revealed {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Packages Section */
.pricing-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pricing-section-sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
}

/* Package Grid & Cards (Ultra Mobile Responsive) */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.package-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: clamp(16px, 4vw, 24px);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  width: 100%;
}

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

.package-card.popular {
  border: 2px solid var(--color-coral);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-warm) 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(224, 122, 95, 0.4);
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
}

.package-name {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  min-height: auto;
}

.package-price-box {
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.package-orig-price {
  font-size: 1.05rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.package-price {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 2.75rem);
  font-weight: 900;
  color: var(--color-coral);
  line-height: 1;
}

.package-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.package-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}

.package-features li i {
  color: var(--color-sage);
  font-size: 1.15rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Master CTA Buttons */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1rem 1.4rem;
  min-height: 52px;
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-coral);
  transition: all var(--transition-normal);
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(224, 122, 95, 0.45);
  background: linear-gradient(135deg, #E68A71 0%, var(--color-coral) 100%);
}

.btn-secondary-cta {
  background: #FFFFFF;
  color: var(--color-charcoal);
  border: 2px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary-cta:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
  background: var(--color-coral-light);
}

/* Free Downloadable Resources Grid */
.resources-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: clamp(16px, 4vw, 24px);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.resource-row {
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.resource-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.resource-icon-box {
  font-size: 1.7rem;
  color: var(--color-coral);
  flex-shrink: 0;
}

.btn-download-sm {
  background: var(--color-coral);
  color: #fff;
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-download-sm:hover {
  background: var(--color-coral-dark);
}

/* Testimonials Grid */
.proof-section {
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast);
}

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

.testimonial-tag {
  align-self: flex-start;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-coral);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-charcoal);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Guarantee Section */
.guarantee-card {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #FFFFFF 100%);
  border: 2px solid var(--color-coral-light);
  border-radius: clamp(16px, 4vw, 24px);
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: 4rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 0.75rem;
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: none;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

/* Modals (Fully Mobile Responsive) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43, 45, 66, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: clamp(16px, 4vw, 24px);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop.is-active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: clamp(0.82rem, 2.5vw, 0.9rem);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.1rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-charcoal);
}

.form-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg-cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--color-coral);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-coral);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 310px;
}

.toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.78rem;
  color: var(--color-charcoal);
  line-height: 1.3;
}

.toast-time {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Keyframes */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulseBig {
  0% { box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.7); }
  70% { box-shadow: 0 0 0 25px rgba(224, 122, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 122, 95, 0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 1.75rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  background: var(--bg-cream);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-coral);
}

/* ===================================================================
   LOADING ANIMATIONS & PRELOADER STYLES
   =================================================================== */

/* Page Entrance Preloader */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.preloader-logo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-coral-light);
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 20px var(--color-coral-glow);
  animation: pulseBig 2s infinite;
}

.preloader-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}

.preloader-brand span {
  color: var(--color-coral);
}

.preloader-spinner {
  width: 38px;
  height: 38px;
  border: 3.5px solid var(--color-coral-light);
  border-top-color: var(--color-coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 0.85rem;
}

.preloader-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Form Submission Progress Overlay */
.submission-loader-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43, 45, 66, 0.75);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.25rem;
}

.submission-loader-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.submission-loader-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: clamp(20px, 4vw, 28px);
  max-width: 460px;
  width: 100%;
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.submission-loader-backdrop.is-active .submission-loader-card {
  transform: scale(1);
}

.submission-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin: 1rem 0 0.5rem;
  line-height: 1.3;
}

.submission-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.progress-bar-container {
  width: 100%;
  height: 10px;
  background: var(--bg-cream);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

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

/* ===================================================================
   MOBILE & RESPONSIVE BREAKPOINTS SUITE
   =================================================================== */

@media (max-width: 900px) {
  .doctor-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .doctor-img-box {
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .package-card {
    padding: 1.75rem 1.4rem;
  }

  .package-price {
    font-size: 2.4rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vsl-video-wrapper.is-sticky {
    width: 220px;
    padding-top: 124px;
    bottom: 12px;
    right: 12px;
  }

  .toast-container {
    left: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }

  .toast {
    max-width: 100%;
  }

  .resource-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .resource-info {
    flex-direction: column;
    text-align: center;
  }

  .btn-download-sm {
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.85rem 0;
  }
  
  .logo-text {
    font-size: 1.15rem;
  }

  .video-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .modal-container {
    padding: 1.35rem 1.1rem;
    border-radius: 20px;
  }

  .popular-badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.75rem;
  }
}
