/* 
 * Kodyfier Notes Portal — Light Theme Corporate Stylesheet
 * Fully aligned with Kodyfier's design variables: Montserrat (headings) & Urbanist (body).
 * Matches Emerald Green (#059669), Mint (#f0fdf4), and Obsidian Slate (#0f172a).
 */

:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-mint: #f0fdf4;
  --surface-glass: rgba(255, 255, 255, 0.85);
  --border-color: rgba(16, 185, 129, 0.12);
  --border-glow: rgba(16, 185, 129, 0.35);
  
  --text-main: #0f172a;       /* Slate 900 */
  --text-muted: #475569;      /* Slate 600 */
  --text-dim: #64748b;        /* Slate 500 */
  
  /* Accents */
  --accent-primary: #059669;    /* Kodyfier Emerald Green */
  --accent-dark: #047857;       /* Hover Green */
  --accent-orange: #ea580c;     /* HTML Orange */
  --accent-green: #16a34a;
  --accent-yellow: #f59e0b;     /* Warning/Star Yellow */
  --yt-red: #ff0000;            /* YouTube Brand */
  
  /* Layout */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
/* Page adjustments */
body {
  background-color: var(--bg-primary);
  color: var(--text-muted);
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0.05rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main) !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 750 !important;
}

/* Symmetrical typography across all descriptive paragraphs */
.notes-desc, .leaf-desc, .lead {
  font-family: "Urbanist", sans-serif !important;
  font-size: 1.45rem !important;
  line-height: 1.9 !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.02rem !important;
}

.gradient-orange-text {
  background: linear-gradient(135deg, var(--text-main) 40%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Background Soft Glow orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}
.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: -100px;
  right: -50px;
}
.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-yellow);
  bottom: 100px;
  left: -100px;
}

/* Hero Section */
.hero-section-custom {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 60%, var(--bg-mint) 100%);
  padding: 6rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

/* Custom layout breadcrumbs */
.breadcrumb-custom {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.breadcrumb-custom a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-custom a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 1.3rem;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.badge-star {
  color: var(--accent-yellow);
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.15);
}

.badge-downloads {
  color: var(--accent-primary);
  background: rgba(5, 150, 105, 0.05);
  border-color: rgba(5, 150, 105, 0.15);
}

/* Widescreen Video Embed with Glowing Shadows */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
              0 25px 60px rgba(16, 185, 129, 0.2),
              0 0 50px rgba(16, 185, 129, 0.1);
  background-color: #000;
  transition: var(--transition-smooth);
}

.video-wrapper:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
              0 30px 80px rgba(16, 185, 129, 0.3),
              0 0 60px rgba(16, 185, 129, 0.15);
}

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

/* Premium Glass Cards styling */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.08);
  transform: translateY(-4px);
}

/* Symmetrical Horizontal Path Flow Section */
.path-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
}

.path-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.path-node {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.08);
  transition: var(--transition-smooth);
  margin-bottom: 16px;
  cursor: default;
}

.path-step:hover .path-node {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.2);
  background: var(--bg-mint);
}

.path-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.path-desc {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

.path-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(16, 185, 129, 0.35);
  z-index: 1;
}

@media (max-width: 767px) {
  .path-container {
    flex-direction: column;
    gap: 40px;
  }
  .path-line {
    top: 10%;
    bottom: 10%;
    left: 36px;
    right: auto;
    width: 2px;
    height: 80%;
    border-left: 2px dashed rgba(16, 185, 129, 0.35);
    border-top: none;
  }
}

/* Horizontal Course Notes Deck (Top Placement) */
.course-notes-deck {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px 24px 4px;
  scrollbar-width: thin;
}

.course-notes-deck::-webkit-scrollbar {
  height: 6px;
}

.course-notes-deck::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.15);
  border-radius: 4px;
}

.deck-card {
  flex: 0 0 240px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none !important;
  color: var(--text-main) !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  transition: var(--transition-smooth);
}

.deck-card:hover {
  transform: translateY(-2px);
}

.deck-card i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.deck-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Branded cards details and active state animations */
.course-html:hover { border-color: rgba(227, 76, 38, 0.4); background: rgba(227, 76, 38, 0.02); }
.course-css:hover { border-color: rgba(38, 77, 228, 0.4); background: rgba(38, 77, 228, 0.02); }
.course-bootstrap:hover { border-color: rgba(121, 82, 179, 0.4); background: rgba(121, 82, 179, 0.02); }
.course-javascript:hover { border-color: rgba(247, 223, 30, 0.4); background: rgba(247, 223, 30, 0.02); }
.course-react:hover { border-color: rgba(97, 218, 251, 0.4); background: rgba(97, 218, 251, 0.02); }

/* Active expensive pulse animation definitions */
@keyframes activeHtmlPulse {
  0% { transform: translateY(0); box-shadow: 0 6px 15px rgba(227, 76, 38, 0.08), 0 0 0 2px rgba(227, 76, 38, 0.15); }
  50% { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(227, 76, 38, 0.15), 0 0 0 4px rgba(227, 76, 38, 0.25); }
  100% { transform: translateY(0); box-shadow: 0 6px 15px rgba(227, 76, 38, 0.08), 0 0 0 2px rgba(227, 76, 38, 0.15); }
}

@keyframes activeCssPulse {
  0% { transform: translateY(0); box-shadow: 0 6px 15px rgba(38, 77, 228, 0.08), 0 0 0 2px rgba(38, 77, 228, 0.15); }
  50% { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(38, 77, 228, 0.15), 0 0 0 4px rgba(38, 77, 228, 0.25); }
  100% { transform: translateY(0); box-shadow: 0 6px 15px rgba(38, 77, 228, 0.08), 0 0 0 2px rgba(38, 77, 228, 0.15); }
}

@keyframes activeBootstrapPulse {
  0% { transform: translateY(0); box-shadow: 0 6px 15px rgba(121, 82, 179, 0.08), 0 0 0 2px rgba(121, 82, 179, 0.15); }
  50% { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(121, 82, 179, 0.15), 0 0 0 4px rgba(121, 82, 179, 0.25); }
  100% { transform: translateY(0); box-shadow: 0 6px 15px rgba(121, 82, 179, 0.08), 0 0 0 2px rgba(121, 82, 179, 0.15); }
}

@keyframes activeJsPulse {
  0% { transform: translateY(0); box-shadow: 0 6px 15px rgba(247, 223, 30, 0.08), 0 0 0 2px rgba(247, 223, 30, 0.15); }
  50% { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(247, 223, 30, 0.15), 0 0 0 4px rgba(247, 223, 30, 0.25); }
  100% { transform: translateY(0); box-shadow: 0 6px 15px rgba(247, 223, 30, 0.08), 0 0 0 2px rgba(247, 223, 30, 0.15); }
}

@keyframes activeReactPulse {
  0% { transform: translateY(0); box-shadow: 0 6px 15px rgba(97, 218, 251, 0.08), 0 0 0 2px rgba(97, 218, 251, 0.15); }
  50% { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(97, 218, 251, 0.15), 0 0 0 4px rgba(97, 218, 251, 0.25); }
  100% { transform: translateY(0); box-shadow: 0 6px 15px rgba(97, 218, 251, 0.08), 0 0 0 2px rgba(97, 218, 251, 0.15); }
}

.deck-card.active-course.course-html {
  border-color: rgba(227, 76, 38, 0.4);
  background: rgba(227, 76, 38, 0.05);
  color: #e34c26 !important;
  animation: activeHtmlPulse 3s infinite ease-in-out;
}

.deck-card.active-course.course-css {
  border-color: rgba(38, 77, 228, 0.4);
  background: rgba(38, 77, 228, 0.05);
  color: #264de4 !important;
  animation: activeCssPulse 3s infinite ease-in-out;
}

.deck-card.active-course.course-bootstrap {
  border-color: rgba(121, 82, 179, 0.4);
  background: rgba(121, 82, 179, 0.05);
  color: #7952b3 !important;
  animation: activeBootstrapPulse 3s infinite ease-in-out;
}

.deck-card.active-course.course-javascript {
  border-color: rgba(247, 223, 30, 0.45);
  background: rgba(247, 223, 30, 0.05);
  color: #cbb200 !important;
  animation: activeJsPulse 3s infinite ease-in-out;
}

.deck-card.active-course.course-react {
  border-color: rgba(97, 218, 251, 0.4);
  background: rgba(97, 218, 251, 0.05);
  color: #00bcd4 !important;
  animation: activeReactPulse 3s infinite ease-in-out;
}


/* File tree styling in dark console style */
.github-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  font-family: var(--font-family-mono);
  font-size: 1.4rem;
  color: #cbd5e1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.file-tree-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-tree-body {
  padding: 20px 24px;
}

.tree-node {
  list-style: none;
  padding-left: 12px;
  margin: 8px 0;
}

.tree-folder {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: #fb923c;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.tree-folder:hover {
  color: #ffffff;
}

.tree-file {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 24px;
  font-size: 1.35rem;
}

.tree-sub {
  margin-top: 6px;
  margin-bottom: 6px;
  border-left: 1px dashed rgba(255, 255, 255, 0.12);
  padding-left: 14px;
}

.tree-sub.collapsed {
  display: none;
}

.chevron-icon {
  font-size: 1.1rem;
  transition: transform 0.25s;
  color: #64748b;
  display: inline-block;
}

.collapsed .chevron-icon {
  transform: rotate(-90deg);
}

/* PDF Preview Slider & High-Fidelity HTML Notes slides */
.preview-carousel {
  position: relative;
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(15, 23, 42, 0.02);
}

.preview-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.preview-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* High-fidelity Vector Document slide card styling */
.notes-slide-card {
  width: 95%;
  max-width: 880px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 15px 40px rgba(15,23,42,0.06);
  font-family: 'Urbanist', sans-serif;
  text-align: left;
  position: relative;
}

.notes-slide-header {
  border-bottom: 2px solid var(--bg-mint);
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notes-slide-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-main);
  margin: 0;
}

.notes-slide-badge {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: var(--bg-mint);
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-family-mono);
}

.notes-code-box {
  background: #0f172a;
  color: #f8fafc;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: var(--font-family-mono);
  font-size: 1.3rem;
  margin: 16px 0;
  overflow-x: auto;
  border-left: 3px solid var(--accent-primary);
}

.notes-tag-desc {
  background: var(--bg-secondary);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.35rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-orange);
  margin: 12px 0;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--text-main);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-nav-btn:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-indicators-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--accent-primary);
  width: 20px;
  border-radius: 4px;
}

.preview-meta {
  color: var(--text-dim);
  font-size: 1.3rem;
  font-family: var(--font-family-mono);
  font-weight: 600;
}

/* Premium Accordion & Timeline Syllabus style */
.syllabus-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid rgba(16, 185, 129, 0.15);
  margin-top: 30px;
}

.syllabus-item {
  position: relative;
  margin-bottom: 30px;
}

.syllabus-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--accent-primary);
  box-shadow: 0 0 10px rgba(5, 150, 105, 0.2);
  transition: var(--transition-smooth);
}

.syllabus-item:hover::before {
  background: var(--accent-primary);
  transform: scale(1.1);
}

.syllabus-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.syllabus-details {
  font-size: 1.45rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Centered & Symmetrical Layout widths for Comments & Share */
.centered-container-section {
  max-width: 1200px;
  margin: 0 auto;
}

/* Comments Form styling */
.comments-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.comment-input, .comment-textarea {
  background: #f8fafc !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  color: var(--text-main) !important;
  border-radius: 8px !important;
  font-size: 1.5rem !important;
  padding: 12px !important;
}

.comment-input:focus, .comment-textarea:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 10px rgba(5, 150, 105, 0.15) !important;
}

.comments-list {
  margin-top: 30px;
}

.comment-item {
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  padding: 20px 0;
}

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.comment-like-btn {
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.comment-like-btn:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(5, 150, 105, 0.05);
}

/* Native Share buttons */
.share-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.4rem;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  text-decoration: none !important;
  background: #ffffff;
  transition: var(--transition-smooth);
}

.share-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.share-x:hover { border-color: #0f172a; color: #0f172a; }
.share-linkedin:hover { border-color: #0a66c2; background: rgba(10,102,194,0.05); color: #0a66c2; }
.share-fb:hover { border-color: #1877f2; background: rgba(24,119,242,0.05); color: #1877f2; }
.share-wa:hover { border-color: #25d366; background: rgba(37,211,102,0.05); color: #25d366; }
.share-copy:hover { border-color: var(--accent-primary); background: rgba(5,150,105,0.05); color: var(--accent-primary); }

/* Subscription Unlock Modal & Countdown UI */
.unlock-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.unlock-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.unlock-modal-card {
  width: 90%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unlock-modal-backdrop.show .unlock-modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.lock-shield-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

/* Circular Countdown Timer Indicator styles */
.countdown-box {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 24px;
}

.timer-circle-svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.timer-circle-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 8;
}

.timer-circle-progress {
  fill: none;
  stroke: var(--accent-primary);
  stroke-dasharray: 314;
  stroke-dashoffset: 0;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.timer-text {
  position: absolute;
  font-size: 2rem;
  font-family: var(--font-family-mono);
  font-weight: 750;
  color: var(--text-main);
}

/* Bottom-Left Social Proof notification (slide-in) */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 320px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  z-index: 1500;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

.social-proof-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-name {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-main);
}

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

.toast-time {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.6rem;
  padding: 0;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.toast-close:hover {
  color: var(--text-main);
}

/* Footer Banner CTA */
.footer-cta-banner {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.06) 0%, rgba(245, 158, 11, 0.02) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

/* Premium Video Switcher Tabs */
.video-tab-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.video-tab-btn:hover, .video-tab-btn.active {
  background: var(--accent-primary);
  color: #ffffff !important;
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
}

@media (max-width: 991px) {
  .preview-slide img {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .social-proof-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Voluntary UPI Support Modal Styles */
.support-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.support-modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.support-modal-card {
  width: 95%;
  max-width: 820px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.support-modal-backdrop.show .support-modal-card {
  transform: scale(1);
}

.support-sidebar {
  background: linear-gradient(145deg, #047857 0%, #059669 50%, #10b981 100%);
  padding: 40px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.support-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.support-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.support-sidebar h3 {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin-bottom: 15px;
}

.support-sidebar p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "Urbanist", sans-serif;
}

.support-amount-display {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 25px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.support-amount-display span {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.support-amount-display strong {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
}

.support-content {
  padding: 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.support-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}

.support-close-btn:hover {
  color: #334155;
}

.support-step {
  display: none;
  flex-direction: column;
  height: 100%;
}

.support-step.active {
  display: flex;
}

.support-step-title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 20px;
  text-align: left;
}

/* Amounts Grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.support-amt-btn {
  background: #ffffff;
  border: 1.5px solid rgba(16, 185, 129, 0.15);
  color: #059669;
  border-radius: 10px;
  padding: 12px 6px;
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.support-amt-btn:hover, .support-amt-btn.active {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.support-custom-wrap {
  position: relative;
  margin-bottom: 25px;
}

.support-custom-wrap label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
  display: block;
}

.support-custom-input {
  width: 100%;
  padding: 12px 16px 12px 35px;
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
}

.support-custom-input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.support-custom-prefix {
  position: absolute;
  left: 15px;
  bottom: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #475569;
  font-family: "Montserrat", sans-serif;
}

/* Form Styles */
.support-form-group {
  margin-bottom: 16px;
  text-align: left;
}

.support-form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

.support-form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-size: 1.45rem;
  color: #0f172a;
  outline: none;
  font-family: "Urbanist", sans-serif;
}

.support-form-control:focus {
  border-color: #059669;
}

.support-back-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  transition: color 0.2s;
  align-self: flex-start;
  padding: 0;
}

.support-back-btn:hover {
  color: #059669;
}

/* Primary buttons styling */
.btn-support-submit {
  width: 100%;
  padding: 14px;
  background: #059669;
  color: #ffffff;
  border: 1px solid #047857;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.btn-support-submit:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.support-skip-wrap {
  text-align: center;
  margin-top: 20px;
}

.support-skip-link {
  font-size: 1.35rem;
  color: #64748b;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 600;
}

.support-skip-link:hover {
  color: #ea580c;
}

/* Crying emoji page styling */
.crying-emoji-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.crying-emoji {
  font-size: 6.5rem;
  margin-bottom: 20px;
  animation: tearShake 1.5s infinite;
}

@keyframes tearShake {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-3deg); }
  75% { transform: scale(1.05) rotate(3deg); }
}

.crying-text {
  font-size: 1.45rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
  max-width: 320px;
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 767px) {
  .support-modal-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .support-sidebar {
    padding: 30px 20px;
  }

  .support-content {
    padding: 30px 20px;
  }

  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
