@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:wght@300..900&family=Sora:wght@100..800&display=swap');

/* Color system & variables */
:root {
  --primary: #4C6FFF;
  --primary-hover: #3A5CE0;
  --secondary: #E4A107;
  --secondary-bg: #FFF4DE;
  --success: #22c55e;
  --success-hover: #16a34a;
  --dark: #0F172A;
  --light: #F8FAF9;
  --gray-light: #F1F5F9;
  --gray-medium: #64748B;
  --gray-dark: #334155;
  --white: #FFFFFF;
  --font-fredoka: 'Fredoka', sans-serif;
  --font-sora: 'Sora', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px rgba(76, 111, 255, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-success: 0 10px 20px rgba(34, 197, 94, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sora);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-fredoka);
  color: var(--dark);
  font-weight: 700;
}

p {
  font-family: var(--font-sora);
  color: var(--gray-dark);
}

/* Layout wrappers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-success {
  background-color: var(--success);
  color: var(--white);
  box-shadow: var(--shadow-success);
}

.btn-success:hover {
  background-color: var(--success-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.4);
}

/* Pulse animation for CTAs */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.pulse-animation {
  animation: cta-pulse 2s infinite;
}

/* Floating shape element animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* Header & Navigation Styles */
header {
  padding: 20px 0;
  background: transparent;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-fredoka);
  font-size: 1.5rem;
  color: var(--primary);
}

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

/* Hero Section */
.hero {
  padding: 60px 0 80px 0;
  background: linear-gradient(135deg, #D9EFFF 0%, #FAF9F6 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 auto 24px auto;
  max-width: 850px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(76, 111, 255, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--gray-dark);
  margin: 0 auto 32px auto;
  max-width: 650px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.1));
  transition: var(--transition);
}

.hero-image:hover {
  transform: translateY(-8px) scale(1.01);
}

.badge-floating {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite alternate;
}

.badge-floating.badge-1 {
  top: 10%;
  left: -20px;
}

.badge-floating.badge-2 {
  bottom: 15%;
  right: -10px;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(76, 111, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.badge-text {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Why It Works / Features Section */
.why-works {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

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

.why-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  background-color: var(--white);
  border-color: rgba(76, 111, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background-color: var(--primary);
  color: var(--white);
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* Activities Preview Tabs Section */
.activities-preview {
  padding: 100px 0;
  background-color: var(--secondary-bg);
  border-radius: var(--radius-lg);
  margin: 0 24px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-family: var(--font-inter);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-dark);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.tab-content-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-pane-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.tab-pane-info ul {
  list-style: none;
  margin: 20px 0 30px 0;
}

.tab-pane-info ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.tab-pane-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
  font-size: 1.2rem;
}

.tab-pane-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* WhatsApp Social Proof Carousel */
.testimonials {
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}

.carousel-outer {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  transition: transform 0.1s ease;
}

.carousel-track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background-color: var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  background-color: #075E54;
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white);
}

.avatar-info h4 {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: var(--white);
}

.avatar-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.whatsapp-body {
  background-color: #ECE5DD;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 0);
  background-size: 15px 15px;
  padding: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.msg-bubble {
  background-color: #DCF8C6;
  border-radius: 12px 12px 12px 0;
  padding: 12px 16px;
  max-width: 90%;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  position: relative;
}

.msg-bubble::after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #DCF8C6 transparent transparent;
}

.msg-bubble p {
  font-size: 0.88rem;
  color: var(--gray-dark);
}

.msg-time {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: var(--gray-medium);
  margin-top: 4px;
}

/* Super Bonuses Section */
.bonuses {
  padding: 100px 0;
  background-color: var(--white);
}

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

.bonus-card {
  background-color: var(--white);
  border: 3px dashed rgba(76, 111, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.bonus-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--secondary);
  color: var(--white);
  font-family: var(--font-inter);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bonus-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.bonus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.bonus-card p {
  font-size: 0.92rem;
}

/* Pricing / Checkout Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  text-align: center;
  position: relative;
}

.pricing-header h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.pricing-header h2 span {
  color: var(--secondary);
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Solid Dark Pricing Card */
.price-card {
  background-color: #374151;
  border-radius: var(--radius-md);
  max-width: 480px;
  margin: 0 auto;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-old {
  color: #D1D5DB;
  text-decoration: line-through;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.price-new {
  font-size: 3.75rem;
  font-family: var(--font-fredoka);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
}

.price-new span {
  font-size: 1.875rem;
  font-weight: 700;
}

.pricing-features {
  text-align: left;
  list-style: none;
  margin: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}

.pricing-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check-badge {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
}


/* Countdown Timer */
.timer-container {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 30px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.timer-label {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-clock {
  font-family: var(--font-fredoka);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

/* FAQ Details/Summary Section */
.faq {
  padding: 100px 0;
  background-color: var(--white);
}

.faq-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(76, 111, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

summary {
  list-style: none;
  outline: none;
  font-family: var(--font-fredoka);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

summary:hover {
  background-color: var(--light);
}

summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item[open] .faq-arrow {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--gray-dark);
  font-size: 0.95rem;
}

/* Bottom Sticky Mobile CTA */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-price {
  font-family: var(--font-fredoka);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.sticky-cta-price span {
  font-size: 0.9rem;
  color: var(--gray-medium);
  text-decoration: line-through;
  margin-left: 8px;
}

/* Footer Section */
footer {
  padding: 60px 0;
  background-color: var(--light);
  text-align: center;
}

footer p {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* Slider Wrapper & Navigation Arrows */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-md);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  user-select: none;
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
  left: -22px;
}

.next-arrow {
  right: -22px;
}

/* Responsive Grid and Media Queries */
@media (max-width: 991px) {
  .hero {
    padding: 40px 0 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .badge-floating {
    display: none !important;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-content-pane.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tab-pane-img {
    height: 300px;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .badge-floating {
    display: none !important;
  }
  
  .slider-arrow {
    display: none !important;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .pricing-header h2 {
    font-size: 1.8rem;
  }
  
  .price-new {
    font-size: 3.2rem;
  }
  
  .price-card {
    padding: 24px 16px;
  }
}


