/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {

  /* Premium funnel palette */
  --deep-blue: #060B2A;
  --deep-blue-dark: #050824;

  /* Accent + highlight */
  --hot-pink: #FF4D4D;
  --hot-red: #FF4D4D;
  --hot-pink-hover: #FF6A3D;
  --hot-pink-light: #FF8A66;

  /* Background helpers */
  --sky-blue: #060B2A;
  --sky-blue-light: #0B144A;

  /* CTA */
  --gold: #FFC83D;
  --cta-gold-1: #FFC83D;
  --cta-gold-2: #FFB703;
  --cta-text: #0A103D;

  /* Text */
  --white: #ffffff;
  --text-dark: #ffffff;
  --text-gray: #E6E8F0;

  /* UI */
  --card-bg: #0E1A4A;
  --card-border: #1F2A6B;
--font-main: 'Poppins', sans-serif;
  --font-telugu: 'Noto Sans Telugu', 'Poppins', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-full: 50px;
  
  --shadow-card: 0 5px 25px rgba(13, 49, 102, 0.15);
  --shadow-button: 0 5px 20px rgba(233, 75, 138, 0.4);
  
  --transition: all 0.3s ease;

}


/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: radial-gradient(circle at top, #0A103D 0%, var(--deep-blue) 45%, var(--deep-blue-dark) 100%);
  -webkit-font-smoothing: antialiased;
}


.telugu-text {
  font-family: var(--font-telugu);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   COMMON COMPONENTS
   ======================================== */
.highlight-gold {
  color: var(--gold);
}

.highlight-pink {
  color: var(--hot-pink);
  font-weight: 600;
}

.strike {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 5px;
}

.cta-button {
  background: linear-gradient(90deg, var(--cta-gold-1), var(--cta-gold-2));
  color: var(--cta-text);
  border: 0;
  padding: 18px 50px;
  border-radius: var(--radius-full);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(255, 200, 61, 0.18);
  font-family: var(--font-main);
  display: inline-block;
  text-align: center;
}


.cta-button:hover {
  filter: brightness(1.02);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(255, 200, 61, 0.26);
}


.check-icon {
  color: var(--hot-pink);
  font-weight: 800;
  margin-right: 10px;
}

.check-pink {
  color: var(--hot-pink);
  font-weight: 800;
  margin-right: 8px;
}

/* ========================================
   SECTION 1: HERO
   ======================================== */
.hero-section {
  background: radial-gradient(circle at top, #0B144A 0%, var(--deep-blue) 55%, var(--deep-blue-dark) 100%);
  color: var(--white);
  padding: 40px 0 60px;
}


.hero-badge {
    background: var(--hot-pink);
  color: var(--white);
  /* background: rgba(255, 255, 255, 0.06); */
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 34px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}


.badge-telugu {
  display: block;
  font-family: var(--font-telugu);
  font-size: 1.8rem;
  font-weight: 700;
}

.badge-english {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
}

.hero-title {
  text-align: center;
  margin-bottom: 20px;
}

.hero-title .telugu-text {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 50px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.hero-left h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 8px 0;
}

.using-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.book-small {
  max-width: 150px;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e07648;
  color: var(--white);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-name {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========================================
   SECTION 2: WORKSHOP INFO
   ======================================== */
.workshop-section {
  background: var(--sky-blue-light);
  padding: 50px 0;
  text-align: center;
}

.workshop-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.workshop-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
}

.workshop-datetime {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 10px;
}

.countdown-wrapper {
  display: flex;
  gap: 15px;
}

.countdown-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--hot-pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
}

.countdown-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  color: var(--text-gray);
  text-transform: capitalize;
}

.challenges-banner {
  background: var(--hot-pink);
  color: var(--white);
  padding: 25px 40px;
  border-radius: var(--radius-lg);
  margin-top: 50px;
}

.challenges-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.challenges-banner p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ========================================
   SECTION 3: PAIN WHEEL
   ======================================== */
.pain-wheel-section {
  background: var(--sky-blue-light);
  padding: 60px 0;
}

.pain-wheel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.pain-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);

  border: 1px solid var(--card-border);
}

.pain-card-header {
  background: var(--deep-blue);
  color: var(--white);
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.pain-card p {
  padding: 20px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-dark);
}

.center-illustration {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-illustration img {
  max-width: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  padding: 8px;
}


.top-left { grid-column: 1; grid-row: 1; }
.top-right { grid-column: 3; grid-row: 1; }
.middle-left { grid-column: 1; grid-row: 2; }
.middle-right { grid-column: 3; grid-row: 2; }
.bottom-left { grid-column: 1; grid-row: 3; }
.bottom-right { grid-column: 3; grid-row: 3; }

/* ========================================
   SECTION 4 & 5: IMAGE CARDS
   ======================================== */
.three-cards-section,
.five-cards-section {
  background: var(--deep-blue);
  padding: 60px 0;
  text-align: center;
}

.feelings-banner {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: var(--white);
  padding: 25px 40px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}


.feelings-banner h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.feelings-banner p {
  font-size: 1rem;
  opacity: 0.95;
}

.three-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.five-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.five-cards-grid .image-card:nth-child(4),
.five-cards-grid .image-card:nth-child(5) {
  grid-column: span 1;
}

.image-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  padding-bottom: 25px;

  border: 1px solid var(--card-border);
}

.card-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.image-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.image-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px 20px 10px;
}

.image-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  padding: 0 20px;
}

/* ========================================
   SECTION 6: OVERCOME
   ======================================== */
.overcome-section {
  background: var(--sky-blue-light);
  padding: 60px 0;
}

.overcome-banner {
  background: var(--hot-pink);
  color: var(--white);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 40px;
}

.overcome-banner h2 {
  font-size: 1.6rem;
}

.solution-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.solution-illustration img {
  max-width: 250px;
}

.solution-text h3 {
  font-size: 1.5rem;
  color: var(--hot-pink);
  margin-bottom: 15px;
}

.solution-text p {
  font-size: 1rem;
  color: var(--text-dark);
}

.control-title {
  text-align: center;
  font-size: 1.6rem;
  color: var(--hot-pink);
  margin-bottom: 30px;
}

.control-illustration {
  text-align: center;
  margin-bottom: 40px;
}

.control-illustration img {
  max-width: 350px;
  margin: 0 auto;
}

.wrong-sources {
  max-width: 700px;
  margin: 0 auto;
}

.wrong-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.wrong-icon {
  color: var(--hot-red);
  font-size: 1.5rem;
  font-weight: 800;
}

.wrong-content {
  flex: 1;
  font-size: 1rem;
}

.wrong-emoji {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ========================================
   SECTION 7: SOLUTION
   ======================================== */
.solution-section {
  background: var(--deep-blue);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.solution-banner {
  background: var(--hot-pink);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  display: inline-block;
}

.solution-banner h2 {
  font-size: 1.5rem;
}

.solution-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

.solution-title {
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.book-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 50px;
  text-align: left;
}

.book-mockup img {
  max-width: 280px;
  border-radius: var(--radius-md);
}

.book-benefits ul {
  list-style: none;
  margin-bottom: 20px;
}

.book-benefits li {
  padding: 8px 0;
  font-size: 1rem;
}

.book-benefits p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.masterclass-banner {
  background: var(--hot-pink);
  padding: 25px 40px;
  border-radius: var(--radius-lg);
  margin: 50px 0 40px;
}

.masterclass-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.masterclass-banner p {
  font-size: 1rem;
  opacity: 0.95;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.benefits-grid .benefit-card:nth-child(4),
.benefits-grid .benefit-card:nth-child(5) {
  grid-column: span 1;
}

.benefit-card {
  background: var(--deep-blue-dark);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  text-align: center;
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.benefit-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ========================================
   SECTION 8: TESTIMONIALS
   ======================================== */
.testimonials-section {
  background: var(--deep-blue);
  padding: 60px 0;
}

.testimonials-banner {
  background: var(--hot-pink);
  color: var(--white);
  padding: 15px 60px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 0 auto 40px;
  display: inline-block;
  width: 100%;
}

.testimonials-banner h2 {
  font-size: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.testimonial-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.testimonial-card.center-card {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: var(--transition);
}

.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-info {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.testimonial-info .name {
  display: block;
  font-weight: 600;
}

.testimonial-info .duration {
  opacity: 0.8;
}

/* ========================================
   SECTION 9: COACH
   ======================================== */
.coach-section {
  background: var(--sky-blue-light);
  padding: 60px 0;
}

.coach-banner {
  background: var(--hot-pink);
  color: var(--white);
  padding: 15px 60px;
  border-radius: var(--radius-lg);
  text-align: center;
  display: inline-block;
  margin-bottom: 40px;
}

.coach-banner h2 {
  font-size: 1.5rem;
}

.coach-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.coach-content h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.coach-title {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.coach-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.coach-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ========================================
   SECTION 10: FAQ
   ======================================== */
/* .faq-section {

  
} */

.faq-section {
  text-align: center;
  background: var(--sky-blue-light);
  padding: 0 0 60px;
}

.faq-banner {
  background: var(--hot-pink);
  color: var(--white);
  padding: 15px 60px;
  border-radius: var(--radius-lg);
  text-align: center;
  display: inline-block;
  margin-bottom: 30px;
}

.faq-banner h2 {
  font-size: 1.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--deep-blue);

  border: 1px solid var(--card-border);
}

.faq-question {
  padding: 18px 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(13, 49, 102, 0.03);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--hot-pink);
  font-weight: 300;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-gray);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  text-align: center;
}

.disclaimer {
  font-size: 0.85rem;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.footer-logo img {
  max-width: 80px;
  margin: 0 auto 15px;
}

.copyright {
  font-size: 0.95rem;
  color: var(--hot-pink);
}

/* ========================================
   FLOATING BOOK
   ======================================== */
.floating-book {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.floating-book img {
  max-width: 80px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-left {
    order: 2;
  }
  
  .hero-right {
    order: 1;
  }
  
  .book-small {
    margin: 0 auto;
  }
  
  .three-cards-grid,
  .five-cards-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solution-intro,
  .book-section,
  .coach-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .book-section {
    text-align: center;
  }
  
  .book-mockup img,
  .solution-illustration img,
  .coach-image img {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title .telugu-text {
    font-size: 1.6rem;
  }
  
  .badge-telugu {
    font-size: 1.4rem;
  }
  
  .pain-wheel-grid {
    grid-template-columns: 1fr;
  }
  
  .center-illustration {
    grid-column: 1;
    grid-row: auto;
    order: -1;
  }
  
  .top-left, .top-right, .middle-left, .middle-right, .bottom-left, .bottom-right {
    grid-column: 1;
    grid-row: auto;
  }
  
  .three-cards-grid,
  .five-cards-grid,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .workshop-info-row {
    flex-direction: column;
    text-align: center;
  }
  
  .countdown-wrapper {
    justify-content: center;
  }
  
  .countdown-circle {
    width: 65px;
    height: 65px;
  }
  
  .countdown-value {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 15px 35px;
    font-size: 1rem;
  }
  
  .floating-book {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title .telugu-text {
    font-size: 1.3rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .countdown-circle {
    width: 55px;
    height: 55px;
  }
  
  .countdown-value {
    font-size: 1.3rem;
  }
  
  .countdown-label {
    font-size: 0.6rem;
  }
}

/* STICKY BOTTOM BANNER */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0d3166;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* LEFT */
.sticky-left img {
  height: 55px;
}

/* CENTER COUNTDOWN */
.sticky-center {
  display: flex;
  gap: 12px;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.countdown-item {
  text-align: center;
}

.countdown-item span {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.countdown-item small {
  font-size: 11px;
  opacity: 0.8;
}

/* CTA */
.sticky-cta {
  background: linear-gradient(90deg, var(--cta-gold-1), var(--cta-gold-2));
  color: var(--cta-text);
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(255, 200, 61, 0.18);
}


.sticky-cta .strike {
  text-decoration: line-through;
  opacity: 0.8;
  margin-right: 4px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .sticky-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .sticky-left {
    display: none; /* hide image on mobile */
  }

  .sticky-center {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }

  .sticky-cta {
    width: 100%;
    font-size: 16px;
  }
}

/* Prevent page content hiding behind banner */
body {
  padding-bottom: 90px;
}

.cta-animate {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  animation: ctaPulse 2.6s ease-in-out infinite;
  will-change: transform, box-shadow;
}

/* SOFT PULSE (Idle State) */
@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 14px 32px rgba(255, 120, 180, 0.45);
  }
}

/* HOVER / DESKTOP FEEDBACK */
.cta-animate:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(255, 120, 180, 0.55);
}

/* CLICK FEEDBACK */
.cta-animate:active {
  transform: scale(0.97);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* MOBILE FRIENDLY (no hover issues) */
@media (max-width: 768px) {
  .cta-animate:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(255, 120, 180, 0.45);
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .cta-animate {
    animation: none;
    transition: none;
  }
}


/* =====================================
   THEME OVERRIDES (do not edit here)
   Edit colors in: css/theme.config.css
   ===================================== */
.sticky-banner{
  background: var(--deep-blue) !important;
}
.sticky-cta,
.cta-btn{
  background: linear-gradient(135deg, var(--hot-pink), var(--hot-pink-light)) !important;
}


/* ==============================
   CTA BUTTON HOVER EFFECT (theme-aware)
   ============================== */
.sticky-cta{
  transition: background 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sticky-cta:hover{
  background: linear-gradient(135deg, var(--hot-pink-light), var(--hot-pink)) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.sticky-cta:active{
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
