/* Base Styles */
:root {
  /* --primary-color: #2b6cb0; */
  --primary-color: #1e3a8a;
  --secondary-color: #f6ad55;
  --accent-color: #48bb78;
  --accent-hover: #38a169;
  --text-color: #2d3748;
  --light-bg: #f7fafc;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #667eea, #764ba2);
  --gradient-2: linear-gradient(135deg, #2b6cb0, #4299e1);
  --gradient-3: linear-gradient(135deg, #48bb78, #38b2ac);
  --gradient-4: linear-gradient(135deg, #ffffff, #ffffff);
  --h1-size-mobile: 1.8rem;
  --h1-size-tablet: 2.2rem;
  --h1-size-desktop: 2.8rem;

  --h2-size-mobile: 1.5rem;
  --h2-size-tablet: 1.8rem;
  --h2-size-desktop: 2.2rem;

  --h3-size-mobile: 1.2rem;
  --h3-size-tablet: 1.4rem;
  --h3-size-desktop: 1.6rem;

  --text-size-mobile: 0.95rem;
  --text-size-tablet: 1rem;
  --text-size-desktop: 1.1rem;

  /* Add new colors */
  --royal-blue: #1e3a8a;
  --light-blue: #93c5fd;
  --bright-red: #ef4444;
  --success-green: #22c55e;
  --warning-yellow: #fbbf24;
  --text-light: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.15);

  /* GIFT Page Color Theme */
  --gift-cream: #faf7f2;
  --gift-gold: #d4af37;
  --gift-emerald: #34d399;
  --gift-royal: #1e40af;
  --gift-coral: #f56565;
  --gift-charcoal: #2d3748;
}

a {
  text-decoration: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Styles */
.hero {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.hero-content {
  color: var(--white);
  text-align: left;
  position: relative;
  z-index: 1;
}

.main-headline {
  font-size: var(--h1-size-mobile);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: none;
}

.sub-headline {
  font-size: var(--h3-size-mobile);
  font-weight: 500;
  line-height: 1.4;
  color: var(--light-blue);
  opacity: 1;
  animation: none;
}

/* Signup Section */
.signup-section {
  padding: 3rem 0;
  background-color: var(--light-bg);
  scroll-margin-top: 2rem;
}

.flex-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.image-container {
  text-align: center;
}

.hero-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container p {
  text-align: center;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
}

.signup-form select {
  background-color: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.signup-form textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 200px;
}

.cta-button {
  margin: 2.5rem auto;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-3);
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: var(--text-size-mobile);
  font-weight: 600;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--gradient-2);
}

.benefits {
  margin-top: 1.5rem;
}

.benefits p {
  margin: 0.5rem 0;
  font-size: var(--text-size-mobile);
  line-height: 1.6;
}

/* Media Queries */
@media (min-width: 768px) {
  .main-headline {
    font-size: var(--h1-size-tablet);
  }

  .sub-headline {
    font-size: var(--h2-size-tablet);
  }

  .flex-container {
    flex-direction: row;
    align-items: center;
  }

  .image-container,
  .form-container {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > * {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .main-headline {
    font-size: var(--h1-size-desktop);
  }
}

/* Learning Section */
.learning-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  font-size: var(--h1-size-mobile);
  margin-bottom: 2rem;
  color: var(--primary-color);
  animation: none;
  line-height: 1.3;
}

.learning-points {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.point {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  animation: none;
}

.point:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.point h3 {
  color: var(--royal-blue);
  margin-bottom: 1rem;
  font-size: var(--h3-size-mobile);
}

.coach-intro {
  text-align: center;
  margin: 3rem 0;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  padding: 4rem 0;
}

.testimonials .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  color: var(--text-color);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* Bootcamp Section */
.bootcamp {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.bootcamp-schedule {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.day {
  background: var(--royal-blue);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.day:hover {
  border-left-color: var(--accent-color);
  transform: translateX(10px);
}

.day h3 {
  color: var(--warning-yellow);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.day p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.vip-formula {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  margin: 4rem 0;
}

.vip-formula ul {
  list-style: none;
  margin-top: 1rem;
}

.vip-formula ul li {
  margin: 1.5rem 0;
  font-size: var(--text-size-mobile);
}

.price-box {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: none;
}

.price-box:hover {
  transform: scale(1.03);
}

.original-price {
  text-decoration: line-through;
  color: #666;
  font-size: var(--text-size-mobile);
}

.special-price {
  color: var(--accent-color);
  font-size: var(--text-size-mobile);
  font-weight: 600;
}

.early-bird {
  margin: 2rem 0;
  padding: 1rem;
  background: #fff3f3;
  border-radius: 8px;
  animation: none;
  color: #e53e3e;
  font-size: var(--h3-size-mobile);
  font-weight: 700;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-item {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: none;
}

.faq-item:hover {
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: var(--text-color);
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.final-cta .urgency-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--bright-red);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
}

.final-cta .danger-cta {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  font-size: 1.4rem !important;
  padding: 1.2rem 3rem !important;
  margin: 1rem auto !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.final-cta .danger-cta:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .learning-points,
  .testimonials-grid,
  .bootcamp-schedule,
  .faq-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  }
}

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

/* Additional Responsive Improvements */
@media (min-width: 768px) {
  .section-title {
    font-size: var(--h1-size-tablet);
  }

  .container {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--h1-size-mobile);
  }

  .container {
    padding: 0;
  }

  .form-container {
    padding: 1.5rem;
  }

  .signup-form {
    gap: 1rem;
  }

  .signup-form input,
  .signup-form select,
  .signup-form textarea {
    padding: 0.8rem;
    font-size: 16px; /* Prevents zoom on mobile */
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .signup-section {
    scroll-margin-top: 1rem;
  }

  .vip-formula {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .vip-formula ul li {
    margin: 1rem 0;
  }

  /* FAQ spacing improvements */
  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    margin-bottom: 1rem;
  }

  .faq-item p {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .form-row {
    flex-direction: column;
  }

  .final-cta {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  .final-cta .urgency-text {
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
  }

  .final-cta .danger-cta {
    font-size: 1.2rem !important;
    padding: 1rem 2rem !important;
  }
}

/* Add smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add loading animation */
.loading {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 1000px 100%;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.cta-wrapper {
  text-align: center;
  margin: 2rem 0;
}

/* Guarantee Section Styles */
.guarantee {
  background: var(--white);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px dashed #e53e3e;
  margin: 2rem auto;
  max-width: 800px;
  animation: none;
}

.guarantee p {
  margin: 1rem 0;
  padding: 1rem;
  background: #fff3f3;
  border-radius: 8px;
  font-size: var(--text-size-mobile);
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .guarantee {
    padding: 1.5rem;
    margin: 2rem 1rem;
    text-align: left;
  }

  .guarantee p {
    margin: 1rem 0;
    padding: 0.8rem;
    font-size: var(--text-size-mobile);
  }
}

/* Add this to your existing animations */
@keyframes borderPulse {
  0% {
    border-color: #e53e3e;
  }
  50% {
    border-color: #f56565;
  }
  100% {
    border-color: #e53e3e;
  }
}

/* Add a subtle highlight animation when scrolled to */
.signup-section:target {
  animation: none;
}

/* Update existing font sizes */
.form-container h3 {
  font-size: var(--h3-size-mobile);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1rem;
}

.point h3 {
  font-size: var(--h3-size-mobile);
}

.point p,
.testimonial p,
.day p,
.bootcamp-intro p,
.guarantee p {
  font-size: var(--text-size-mobile);
  line-height: 1.6;
}

.early-bird {
  font-size: var(--h3-size-mobile);
}

.cta-button {
  font-size: var(--text-size-mobile);
  padding: 0.8rem 1rem;
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  .section-title,
  .section-title-white {
    font-size: var(--h1-size-tablet);
  }

  .form-container h3 {
    font-size: var(--h3-size-tablet);
  }

  .point h3 {
    font-size: var(--h3-size-tablet);
  }

  .point p,
  .testimonial p,
  .day p,
  .bootcamp-intro p,
  .guarantee p {
    font-size: var(--text-size-tablet);
  }

  .early-bird {
    font-size: var(--h3-size-tablet);
  }

  .cta-button {
    font-size: var(--text-size-tablet);
    padding: 1rem 2rem;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .section-title,
  .section-title-white {
    font-size: var(--h1-size-desktop);
  }

  .form-container h3 {
    font-size: var(--h3-size-desktop);
  }

  .point h3 {
    font-size: var(--h3-size-desktop);
  }

  .point p,
  .testimonial p,
  .day p,
  .bootcamp-intro p,
  .guarantee p {
    font-size: var(--text-size-desktop);
  }

  .early-bird {
    font-size: var(--h3-size-desktop);
  }

  .cta-button {
    font-size: var(--text-size-desktop);
  }
}

/* Additional mobile-specific adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0;
  }

  .benefits p {
    font-size: 0.9rem;
  }

  .testimonial .author {
    font-size: 0.9rem;
  }

  .vip-formula ul li {
    font-size: var(--text-size-mobile);
  }

  .price-box h3 {
    font-size: var(--h3-size-mobile);
  }

  .original-price,
  .special-price {
    font-size: var(--text-size-mobile);
  }

  .faq-item h3 {
    font-size: var(--h3-size-mobile);
  }

  .faq-item p {
    font-size: var(--text-size-mobile);
  }

  .final-cta h2 {
    font-size: var(--h2-size-mobile);
  }
}

/* Success Page Specific Styles */
.success-hero {
  background: var(--royal-blue);
  padding: 4rem 0 3rem;
}

.success-hero .main-headline {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
}

.video-section {
  padding: 4rem 0 0;
  background: var(--white);
}

.video-container {
  max-width: 800px;
  margin: 2rem auto;
  aspect-ratio: 16/9;
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
  display: none;
}

.whatsapp-section {
  background: var(--light-bg);
  padding: 3rem 0;
}

.whatsapp-section .text-center {
  margin-bottom: 2rem;
}

.whatsapp-btn {
  background: #25d366 !important;
  font-size: 1.2rem !important;
}

.whatsapp-btn:hover {
  background: #128c7e !important;
}

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

.bonus-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bonus-box ul {
  list-style: none;
  margin: 1.5rem 0;
}

.bonus-box ul li {
  margin: 1rem 0;
  font-size: var(--text-size-mobile);
}

.bonus-box .cta-button,
.guarantee-box .cta-button {
  display: block;
  margin: 2rem auto;
  max-width: 400px;
  width: 100%;
}

.price-alert {
  background: #fff3f3;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}

.enroll-btn {
  background: #e53e3e !important;
}

.enroll-btn:hover {
  background: #c53030 !important;
}

.guarantee-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
}

.urgency {
  margin: 2rem 0;
  font-weight: 500;
}

.urgency p {
  margin: 1rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .bonus-box,
  .guarantee-box {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .price-alert {
    padding: 1rem;
  }

  .whatsapp-btn {
    font-size: 1rem !important;
  }

  .cta-wrapper {
    margin: 1.5rem 0;
  }

  .bonus-box .cta-button,
  .guarantee-box .cta-button {
    max-width: 100%;
    margin: 1.5rem auto;
  }
}

.coach-image {
  margin: 2rem auto;
  max-width: 300px;
  aspect-ratio: 1/1;
}

.coach-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  object-position: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .coach-image {
    max-width: 200px;
  }
}

.signup-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Video styling */
.workshop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Workshop Page Specific Styles */
.workshop-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  color: var(--text-light);
}

.workshop-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.workshop-hero .main-headline {
  color: var(--text-light);
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.workshop-hero .highlight-title {
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.2em 0.5em;
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  margin-top: 1rem;
}

.workshop-hero .sub-headline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.workshop-hero .highlight-text {
  color: var(--warning-yellow);
  font-weight: 700;
}

.workshop-hero .hero-cta {
  background: rgba(30, 58, 138, 0.95);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.workshop-hero .urgency-text {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  padding: 1rem;
}

.transformation-image {
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--warning-yellow);
}

.image-caption {
  position: absolute;
  /* bottom: -15px; */
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  text-align: center;
  width: max-content;
  max-width: 90%;
  white-space: normal; /* Allow text to wrap */
  line-height: 1.4; /* Add proper line height for wrapped text */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .workshop-hero {
    padding: 4rem 0 3rem;
  }

  .workshop-hero .main-headline {
    font-size: 2rem;
  }

  .workshop-hero .sub-headline {
    font-size: 1.2rem;
  }

  .workshop-hero .hero-cta {
    padding: 2rem 1.5rem;
  }

  .workshop-hero .highlight-text {
    font-size: 1.4rem;
  }

  .workshop-hero .urgency-text {
    font-size: 1.2rem;
  }

  .image-caption {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    max-width: 85%;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .image-caption {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    max-width: 80%;
  }
}

.primary-cta {
  background: var(--success-green) !important;
  font-size: 1.3rem !important;
  padding: 1.2rem 2.5rem !important;
  margin: 2.5rem auto !important;
}

.primary-cta:hover {
  background: #16a34a !important;
}

.success-cta {
  background: var(--success-green) !important;
  margin: 2rem auto !important;
}

.success-cta:hover {
  background: #16a34a !important;
}

.danger-cta {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
}

.danger-cta:hover {
  animation: pulse 2s infinite ease-in-out;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.workshop-details {
  background: var(--royal-blue);
  color: var(--text-light);
  padding: 3rem 0;
}

.workshop-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.details-content {
  padding: 2rem;
  background: var(--glass-bg);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.date-time {
  margin-bottom: 2rem;
}

.date-time h3 {
  color: var(--light-blue);
  margin-bottom: 1rem;
}

.date-time p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.challenges-section {
  background: var(--light-bg);
  padding: 5rem 0;
  margin-bottom: 2rem; /* Reduced from 4rem */
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.challenges-list,
.outcomes-list {
  display: grid;
  gap: 2rem;
  margin: 4rem 0;
}

.challenge-item,
.outcome-item {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #2563eb 100%);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.challenge-item p,
.outcome-item p {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.challenge-item:hover,
.outcome-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Replace warning icon styles with arrow icon styles */
.arrow-icon {
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.1em 0.4em;
  border-radius: 8px;
  font-size: 1.3rem;
  margin-right: 0.8rem;
  display: inline-block;
}

.learning-outcomes {
  padding: 4rem 0;
  background: var(--white);
}

/* Update Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  padding: 4rem 0;
  margin: 4rem 0; /* Add vertical margins */
}

.final-cta .section-title {
  color: var(--white);
  margin-bottom: 2rem;
}

.final-cta .cta-button {
  margin: 2.5rem auto;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-3);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Only animate these properties */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: var(--text-size-mobile);
  font-weight: 600;
  cursor: pointer;
}

.final-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  /* Remove background change on hover */
}

/* Remove any other hover effects that might be inherited */
.final-cta .danger-cta:hover {
  background: var(--gradient-3); /* Keep the same background */
}

.bonus-points {
  margin: 2rem 0;
}

.bonus-points p {
  color: var(--white);
  font-size: 1.1rem;
  margin: 1rem 0;
}

.final-cta .cta-button {
  margin: 2.5rem auto;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-3);
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: var(--text-size-mobile);
  font-weight: 600;
  cursor: pointer;
}

.final-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--gradient-2);
}

.final-cta .urgency-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--warning-yellow);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-cta .danger-cta {
  margin: 1rem auto !important;
  font-size: 1.3rem !important;
  padding: 1.2rem 3rem !important;
  animation: pulse 2s infinite ease-in-out;
  transition: all 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .final-cta {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }

  .final-cta .urgency-text {
    font-size: 1.2rem;
  }

  .final-cta .danger-cta {
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
  }
}

/* Update workshop highlight text colors */
.workshop-details .highlight-text {
  color: var(--light-blue);
}

.workshop-details .bonus-text {
  color: var(--warning-yellow);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
}

/* Add styles for highlighted text */
.highlight-title {
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
  margin: 0.2em 0;
}

/* Update flex container styles */
.workshop-details .flex-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.workshop-details .image-container,
.workshop-details .details-content {
  flex: 0 0 44%; /* Each takes up roughly 48% width, leaving 4% for gap */
  width: 48%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .workshop-details .flex-container {
    flex-direction: column;
  }

  .workshop-details .image-container,
  .workshop-details .details-content {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Add styles for pricing highlight */
.pricing-highlight {
  background: var(--royal-blue);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
  /* border: 2px solid var(--warning-yellow); */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-highlight .main-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--warning-yellow);
  margin: 0;
}

.pricing-highlight .original-price {
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: line-through;
  color: var(--white);
  opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .pricing-highlight .main-price {
    font-size: 1.8rem;
  }

  .pricing-highlight .original-price {
    font-size: 1.2rem;
  }
}

/* Instagram section styles */
.instagram-section {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  padding: 1rem 0;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.instagram-section .section-title,
.instagram-section p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-preview {
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
}

.instagram-preview {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.instagram-btn {
  background: var(--text-light) !important;
  color: #e1306c !important;
  font-weight: 600 !important;
  padding: 1rem 2rem !important;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #f8fafc !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .instagram-section {
    padding: 3rem 0;
  }

  .social-preview {
    margin: 1.5rem auto;
  }

  .instagram-btn {
    width: 100%;
    padding: 0.8rem 1.5rem !important;
  }
}

/* Download button styles */
.download-section {
  text-align: center;
  margin: 2rem 0;
}

.download-btn {
  background: var(--warning-yellow) !important;
  color: var(--royal-blue) !important;
  font-weight: 700 !important;
  padding: 1rem 2rem !important;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.download-btn:hover {
  background: #f59e0b !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .download-section {
    margin: 1.5rem 0;
  }

  .download-btn {
    width: 100%;
    padding: 0.8rem 1.5rem !important;
  }
}

/* Passion to Profession specific styles */
.passion-hero {
  padding: 5rem 0 4rem;
}

.passion-hero .main-headline {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.countdown-timer {
  padding: 2.5rem;
  margin-top: 3rem;
}

.countdown-timer p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--warning-yellow);
}

.timer {
  gap: 3rem;
}

.time-block span {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.time-block label {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Pain points section */
.pain-points {
  padding: 5rem 0;
}

.pain-points .section-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.challenge-card {
  padding: 2.5rem 2rem;
}

.challenge-card p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.solution-box {
  padding: 4rem 3rem;
  margin: 5rem 0 3rem;
}

.solution-box h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* Benefits section */
.benefits-section {
  padding: 5rem 0;
  background: var(--light-bg);
  margin-top: 2rem; /* Reduced from 4rem */
}

.benefits-grid {
  margin: 4rem 0;
}

.benefit-card {
  padding: 2.5rem;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.benefit-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.bonus-box {
  padding: 3rem;
  margin: 4rem auto;
  max-width: 800px;
  background: var(--royal-blue);
  color: var(--text-light);
  border-radius: 15px;
  text-align: center;
}

.bonus-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--warning-yellow);
}

.bonus-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Testimonials section */
.testimonials {
  padding: 5rem 0;
}

.testimonials .section-title-white {
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

.testimonial {
  padding: 2.5rem;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial .author {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

/* Final CTA section */
.final-cta-section {
  padding: 5rem 0;
}

.features-grid {
  margin: 4rem 0;
}

.feature {
  padding: 2.5rem;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--royal-blue);
}

.feature p {
  font-size: 1.1rem;
}

.final-action {
  padding: 4rem 3rem;
  margin: 5rem 0 3rem;
}

.final-action h3 {
  font-size: 1.8rem;
  margin: 2rem 0;
}

.final-action .urgency-text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-button {
  padding: 1.2rem 2.5rem !important;
  font-size: 1.2rem !important;
  margin: 2rem auto !important;
}

.primary-cta {
  font-size: 1.4rem !important;
  padding: 1.5rem 3rem !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .passion-hero .main-headline {
    font-size: 2rem;
  }

  .countdown-timer {
    padding: 2rem;
    margin-top: 2rem;
  }

  .timer {
    gap: 1.5rem;
  }

  .time-block span {
    font-size: 2rem;
  }

  .solution-box,
  .bonus-box,
  .final-action {
    padding: 2rem 1.5rem;
  }

  .solution-box h3,
  .bonus-box h3,
  .final-action h3 {
    font-size: 1.5rem;
  }

  .challenge-card,
  .benefit-card,
  .feature {
    padding: 2rem;
  }

  .section-title,
  .section-title-white {
    font-size: 1.8rem;
  }

  .cta-button {
    width: 100%;
    padding: 1rem 1.5rem !important;
    font-size: 1.1rem !important;
  }
}

/* Add styles for workshop details highlights */
.date-time p span {
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
}

/* Update outcome item styles */
.outcome-item p {
  color: var(--royal-blue) !important;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  background: var(--warning-yellow);
  padding: 1.2rem 2rem;
  border-radius: 10px;
  font-weight: 600;
}

/* Remove the blue gradient background from outcome items */
.outcome-item {
  background: none;
  padding: 0;
  box-shadow: none;
  border: none;
}

.outcome-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .outcome-item p {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
}

/* Footer Styles */
.main-footer {
  background: var(--royal-blue);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h3 {
  color: var(--warning-yellow);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-section p {
  margin: 0;
  opacity: 0.9;
}

.footer-section a {
  color: var(--text-light);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--warning-yellow);
  opacity: 1;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom .copyright {
  opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .main-footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
  }

  .footer-content {
    gap: 2rem;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links a {
  color: var(--text-light);
  opacity: 0.9;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  color: var(--warning-yellow);
  opacity: 1;
  transform: translateX(5px);
}

/* Navigation Styles */
.top-nav {
  background: var(--royal-blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem !important;
}

.logo a {
  color: var(--text-light);
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.logo a:hover {
  color: var(--warning-yellow);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.9;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--warning-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--warning-yellow);
  opacity: 1;
}

.nav-link.cta {
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  font-weight: 600;
}

.nav-link.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.nav-link.cta:after {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem !important;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .nav-link:after {
    display: none;
  }

  .nav-link.cta {
    width: 100%;
    padding: 0.8rem;
  }
}

/* Update Navigation Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text-light);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 2rem !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--royal-blue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 5;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger.active span:first-child {
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:last-child {
    transform: rotate(-45deg);
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-link.cta {
    margin-top: 1rem;
    padding: 1rem 2rem;
  }
}

/* GIFT Page Styles */
.gift-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  color: var(--text-light);
}

.gift-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.gift-hero .main-headline {
  color: var(--text-light);
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gift-hero .highlight-title {
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.2em 0.5em;
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  margin-top: 1rem;
}

.gift-hero .sub-headline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.gift-hero .highlight-text {
  color: var(--warning-yellow);
  font-weight: 700;
}

.gift-hero .hero-cta {
  background: rgba(30, 58, 138, 0.95);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gift-hero .urgency-text {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  padding: 1rem;
}

.transformation-image {
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--warning-yellow);
}

.image-caption {
  position: absolute;
  /* bottom: -15px; */
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  text-align: center;
  width: max-content;
  max-width: 90%;
  white-space: normal; /* Allow text to wrap */
  line-height: 1.4; /* Add proper line height for wrapped text */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .gift-hero {
    padding: 4rem 0 3rem;
  }

  .gift-hero .main-headline {
    font-size: 2rem;
  }

  .gift-hero .sub-headline {
    font-size: 1.2rem;
  }

  .gift-hero .hero-cta {
    padding: 2rem 1.5rem;
  }

  .gift-hero .highlight-text {
    font-size: 1.4rem;
  }

  .gift-hero .urgency-text {
    font-size: 1.2rem;
  }

  .image-caption {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    max-width: 85%;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .image-caption {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    max-width: 80%;
  }
}

/* Update hero flex layout */
.hero-flex {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 0 0 45%;
  position: relative;
  padding: 1rem;
}

.transformation-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--warning-yellow);
  display: block;
}

.image-caption {
  position: absolute;
  /* bottom: -15px; */
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning-yellow);
  color: var(--royal-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  text-align: center;
  width: max-content;
  max-width: 90%;
}

/* Enhanced mobile adjustments */
@media (max-width: 1024px) {
  .hero-flex {
    flex-direction: column;
    gap: 4rem;
    padding: 0 1rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-image {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
  }

  .gift-hero .main-headline {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .gift-hero .highlight-title {
    font-size: 1.4rem;
    padding: 0.3em 0.6em;
    margin-top: 0.8rem;
  }

  .gift-hero .sub-headline {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .gift-hero .hero-cta {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .image-caption {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    bottom: -12px;
  }
}

@media (max-width: 480px) {
  .hero-flex {
    gap: 3rem;
    padding: 0;
  }

  .gift-hero {
    padding: 3rem 0 2rem;
  }

  .gift-hero .main-headline {
    font-size: 1.8rem;
  }

  .gift-hero .highlight-title {
    font-size: 1.2rem;
    display: inline-block;
    margin: 0.5rem 0;
  }

  .gift-hero .sub-headline {
    font-size: 1.1rem;
    padding: 0;
  }

  .hero-image {
    padding: 0 0.5rem 2rem;
  }

  .image-caption {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    bottom: -10px;
  }

  .gift-hero .hero-cta {
    padding: 1.5rem;
  }

  .gift-hero .highlight-text {
    font-size: 1.2rem;
  }

  .gift-hero .urgency-text {
    font-size: 1rem;
  }
}

/* Program Features Cards */
.program-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.program-feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.program-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary-color);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .program-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }
}

/* Ideal For Section */
.ideal-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.ideal-for-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.ideal-for-card:hover {
  transform: translateY(-3px);
}

.check-icon {
  font-size: 1.5rem;
  color: var(--success-green);
  font-weight: bold;
}

/* Bonus Section */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.bonus-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.bonus-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.bonus-value {
  color: var(--bright-red);
  font-weight: 600;
}

/* Enroll Section */
.enroll-section {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  padding: 4rem 0;
  color: var(--white);
}

.enroll-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.spots-counter {
  margin: 2rem 0;
}

.counter-box {
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  padding: 1.5rem 3rem;
  border-radius: 15px;
  color: var(--bright-red);
}

.counter-box .number {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.counter-box .label {
  color: var(--text-color);
  margin-top: 0.5rem;
}

.batch-info {
  font-size: 1.2rem;
  margin: 1.5rem 0;
}

/* Modal Form Styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-content p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modal-form input {
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--light-bg);
}

.modal-form input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  background: var(--white);
}

.modal-form input::placeholder {
  color: #94a3b8;
}

.modal-form .cta-button {
  margin: 1.5rem 0 0;
  padding: 1rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-form .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.2);
}

.modal-form .cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 2rem;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-content p {
    font-size: 1rem;
  }

  .modal-form input {
    padding: 0.9rem 1.2rem;
  }

  .modal-form .cta-button {
    padding: 0.9rem;
    font-size: 1rem;
  }
}

/* Comparison Section Styling */
.comparison-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.comparison-card.before {
  border-top: 5px solid var(--bright-red);
}

.comparison-card.after {
  border-top: 5px solid var(--success-green);
}

.comparison-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comparison-item .icon {
  font-size: 1.8rem;
  line-height: 1;
}

.comparison-item p {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 2rem;
  }

  .comparison-item .icon {
    font-size: 1.5rem;
  }

  .comparison-item p {
    font-size: 1rem;
  }
}

/* Update the mobile styles for ideal-for section */
@media (max-width: 768px) {
  .ideal-for {
    padding: 3rem 0; /* Add vertical padding */
  }

  .ideal-for-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .ideal-for-card {
    padding: 1.2rem;
  }

  .check-icon {
    font-size: 1.3rem;
  }

  .ideal-for-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Benefits Cards Styling */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.benefit-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.benefit-content p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    font-size: 2rem;
  }
}

/* About Section Styling */
.about-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.about-content {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.about-list li {
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  background: var(--light-bg);
  border-radius: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.about-list li:hover {
  transform: translateX(10px);
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step-card {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  padding: 2.5rem;
  border-radius: 15px;
  color: var(--white);
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Programs Section */
.programs-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.program-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid var(--primary-color);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.program-card p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 5rem 0;
  background: var(--white);
}

.vision-mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.vision-box,
.mission-box {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary-color));
  padding: 2.5rem;
  border-radius: 15px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vision-box h3,
.mission-box h3 {
  color: var(--warning-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.mission-box ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.mission-box ul li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.mission-box ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--warning-yellow);
}

/* CTA Section Enhancement */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem auto;
  max-width: 500px;
  padding: 0 2rem;
}

.cta-buttons .cta-button {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  white-space: nowrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cta-buttons {
    padding: 0 1rem;
    gap: 1rem;
  }

  .cta-buttons .cta-button {
    height: 50px;
    font-size: 1rem;
    padding: 1rem;
  }
}

.tagline {
  text-align: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }

  .about-content {
    padding: 2rem;
  }

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

  .vision-mission-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .program-card {
    padding: 2rem;
  }
}

/* Additional Enhancements */
.section-subtitle {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin: 1rem 0;
  font-weight: 600;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Add styles for close button */
.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  opacity: 0.7;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  opacity: 1;
  background: var(--light-bg);
}

/* Update modal content to handle close button */
.modal-content {
  position: relative;
  /* ... existing styles ... */
}
