/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GOLD BUTTON ===== */
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0a0a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.6s, height 0.6s;
}
.btn-gold:hover::after { width: 300px; height: 300px; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,215,0,0.4); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled { padding: 10px 40px; background: rgba(10,10,10,0.95); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: #fff;
}
.nav-logo span { color: #FFD700; }
.logo-img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}
.nav-links a:hover { color: #FFD700; }
.nav-links a:hover::after { width: 100%; }
.nav-insta-icon {
  color: #FFD700;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
}
.nav-insta-icon:hover {
  transform: scale(1.1);
  color: #fff;
}
.nav-cta {
  padding: 10px 28px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0a0a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(255,215,0,0.4); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 28px; height: 2px;
  background: #FFD700;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,215,0,0.03) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,215,0,0.03) 50px);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-particles .particle {
  position: absolute;
  width: 4px; height: 4px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-400px) scale(1); }
}
.hero-content { 
  text-align: center; 
  position: relative; 
  z-index: 2; 
  animation: pageReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes pageReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-logo-container {
  margin-bottom: 20px;
  animation: titleReveal 1s ease-out;
}
.hero-logo {
  max-width: 500px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255,215,0,0.3));
}
@keyframes titleReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 20px 0 40px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-btn { animation: fadeInUp 1s ease-out 0.6s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  transform: rotate(45deg);
}
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 60px;
}
.section-title span { color: #FFD700; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: #0a0a0a; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.about-card {
  background: linear-gradient(145deg, rgba(255,215,0,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 20px 60px rgba(255,215,0,0.08);
}
.about-card:hover::before { opacity: 1; }
.card-icon {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
}
.card-icon svg { width: 100%; height: 100%; }
.about-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #FFD700;
  margin-bottom: 12px;
}
.about-card p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== LEGACY & RESULTS (CAROUSEL) ===== */
.legacy {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a, #0d0d0d);
  overflow: hidden;
}
.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,215,0,0.15);
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.carousel-slide.active img {
  opacity: 1;
  transform: scale(1.02);
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 40px;
  background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
  text-align: left;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}
.carousel-slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}
.slide-caption h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #FFD700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.slide-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.5;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(255,215,0,0.3);
  color: #FFD700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.carousel-btn:hover {
  background: #FFD700;
  color: #0a0a0a;
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.dot.active {
  background: #FFD700;
  width: 24px;
  border-radius: 10px;
}

/* ===== REVIEWS ===== */
.reviews { padding: 120px 0; background: #0a0a0a; position: relative; overflow: hidden; }
.reviews::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255,215,0,0.03), transparent 70%);
  pointer-events: none;
}
.reviews-header { text-align: center; margin-bottom: 60px; }
.google-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 15px; margin-top: 15px;
}
.google-rating .stars { color: #FFD700; font-size: 1.2rem; }
.google-rating span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.reviews-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-slide {
  min-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.review-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,215,0,0.1);
  padding: 50px 60px;
  border-radius: 24px;
  text-align: center;
  position: relative;
}
.review-stars { color: #FFD700; margin-bottom: 20px; font-size: 1.1rem; }
.review-text { 
  font-size: 1.25rem;
  font-style: italic; 
  color: rgba(255,255,255,0.9); 
  line-height: 1.6; 
  margin-bottom: 30px;
  position: relative;
}
.review-text::before, .review-text::after {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,215,0,0.1);
  position: absolute;
}
.review-text::before { top: -20px; left: -30px; }
.review-text::after { bottom: -60px; right: -10px; }

.author-info h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; color: #fff; margin-bottom: 4px; }
.author-info span { font-size: 0.85rem; color: #FFD700; opacity: 0.8; letter-spacing: 1px; }

.reviews-dots {
  display: flex; justify-content: center; gap: 12px; margin-top: 30px;
}
.reviews-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-dot.active {
  width: 30px;
  border-radius: 5px;
  background: #FFD700;
}

.reviews-footer { text-align: center; }
.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,215,0,0.3);
  color: #FFD700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-outline:hover { background: #FFD700; color: #0a0a0a; border-color: #FFD700; }

/* ===== LOCATION ===== */
.location { padding: 100px 0; background: #080808; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.contact-details { margin: 30px 0 40px; }
.contact-item { margin-bottom: 25px; }
.contact-item strong { display: block; color: #FFD700; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; margin-bottom: 5px; }
.contact-item p { color: rgba(255,255,255,0.7); }
.map-container {
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ===== PLANS ===== */
.plans {
  padding: 120px 0;
  background: linear-gradient(180deg, #0d0d0d, #0a0a0a);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 20px 60px rgba(255,215,0,0.06);
}
.plan-card.featured {
  border-color: rgba(255,215,0,0.35);
  background: linear-gradient(145deg, rgba(255,215,0,0.08), rgba(255,255,255,0.02));
  transform: scale(1.05);
}
.plan-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.plan-popular {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0a0a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 6px 24px;
  border-radius: 20px;
}
.plan-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: #FFD700;
  margin-bottom: 30px;
}
.plan-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}
.plan-features {
  text-align: left;
  margin-bottom: 36px;
}
.plan-features li {
  padding: 8px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-btn { width: 100%; }

/* ===== TIMINGS ===== */
.timings {
  padding: 40px 0;
  background: rgba(255, 215, 0, 0.05);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}
.timings-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.timing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.timing-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #FFD700;
}
.timing-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}
.timing-divider {
  width: 2px;
  height: 40px;
  background: rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
  .timings-wrapper { gap: 30px; }
  .timing-divider { display: none; }
}

/* ===== PLANS UPDATES ===== */
.plan-durations {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  font-size: 0.9rem;
}
.plan-durations p { margin-bottom: 6px; color: rgba(255, 255, 255, 0.6); }
.plan-durations p:last-child { margin-bottom: 0; }
.crossed { text-decoration: line-through; opacity: 0.5; margin-right: 8px; }
.gold { color: #FFD700; font-weight: 600; }

/* ===== JOIN FORM UPDATES ===== */
.join {
  padding: 120px 0;
  background: #0a0a0a;
}
.join-form {
  max-width: 800px; /* Increased width for more fields */
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,215,0,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 20px;
  padding: 48px 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255,215,0,0.1);
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #1a1a1a; color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.payment-summary {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px dashed #FFD700;
  border-radius: 12px;
  text-align: center;
}
.payment-summary p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
#displayPrice {
  color: #FFD700;
  font-size: 2rem;
  margin-left: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 1.1rem;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s, transform 0.3s;
}

/* ── SHAKE ANIMATION ── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  12%       { transform: translateX(-9px); }
  25%       { transform: translateX(9px); }
  37%       { transform: translateX(-6px); }
  50%       { transform: translateX(6px); }
  62%       { transform: translateX(-3px); }
  75%       { transform: translateX(3px); }
  87%       { transform: translateX(-1px); }
}
.shake {
  animation: shake 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ── SUBMIT BUTTON ERROR STATE ── */
.btn-gold.btn-error {
  background: linear-gradient(135deg, #ff4d4d, #cc2200) !important;
  color: #fff !important;
  box-shadow: 0 0 28px rgba(255, 77, 77, 0.5) !important;
}

/* ===== SUCCESS OVERLAY ===== */
.success-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center; justify-content: center;
}
.success-overlay.active { display: flex; }
.success-card {
  text-align: center;
  background: linear-gradient(145deg, rgba(255,215,0,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 24px;
  padding: 60px 48px;
  max-width: 480px;
  width: 90%;
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.success-check { width: 80px; height: 80px; margin: 0 auto 24px; }
.success-check svg { width: 100%; height: 100%; }
.success-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.success-card h2 span { color: #FFD700; }
.success-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  font-size: 1.05rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 32px;
  background: #25D366;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.success-close {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}
.success-close:hover { background: #FFD700; color: #0a0a0a; }

/* ===== FOOTER ===== */
.footer {
  background: #060606;
  border-top: 1px solid rgba(255,215,0,0.08);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.footer-logo {
  height: 50px;
  width: auto;
}
.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.footer-brand h3 span { color: #FFD700; }
.footer-brand p { color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #FFD700;
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
  display: block;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: #FFD700; }
.footer-insta, .footer-phone {
  display: flex !important;
  align-items: center;
}
.footer-insta svg { transition: transform 0.3s ease; }
.footer-insta:hover svg { transform: scale(1.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; }

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255,215,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { letter-spacing: 6px; }
  .about-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .form-row { grid-template-columns: 1fr; }
  .join-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .success-card { padding: 40px 24px; }
  
  /* Carousel Mobile Fixes */
  .carousel-slide { aspect-ratio: 1/1; }
  .slide-caption { padding: 40px 20px 20px; background: linear-gradient(to top, rgba(10,10,10,1), transparent); }
  .slide-caption h3 { font-size: 1.4rem; margin-bottom: 4px; }
  .slide-caption p { font-size: 0.85rem; line-height: 1.4; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #1ebe57;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== PAYMENT MODAL STYLES ===== */
.payment-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center; justify-content: center;
  overflow-y: auto;
  padding: 20px;
}
.payment-overlay.active { display: flex; }

.payment-card {
  background: linear-gradient(145deg, rgba(255,215,0,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: scaleIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.payment-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.payment-header h2 span { color: #FFD700; }
.payment-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.payment-header strong { color: #FFD700; }

.qr-container {
  position: relative;
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(255,215,0,0.2);
}
.payment-qr {
  width: 240px;
  height: 240px;
  display: block;
}
.qr-overlay-text {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD700;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  padding: 2px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.payment-instructions {
  text-align: left;
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.payment-instructions ul {
  list-style: none;
}
.payment-instructions li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  line-height: 1.4;
}
.payment-instructions li:last-child { margin-bottom: 0; }
.payment-instructions strong { color: #FFD700; }

.payment-done-btn {
  width: 100%;
  padding: 16px;
  margin-bottom: 12px;
}

.payment-cancel {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s;
}
.payment-cancel:hover { color: #fff; }

@media (max-width: 480px) {
  .payment-card { padding: 30px 20px; }
  .payment-qr { width: 200px; height: 200px; }
}

/* ══════════════════════════════════════
   HATCHKOD MARKETING WIDGET
══════════════════════════════════════ */
#hkWidget {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

/* Card */
.hk-card {
  width: 222px;
  background: linear-gradient(145deg, #120820, #0e0e1a);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 14px;
  padding: 13px 13px 11px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2), 0 2px 6px rgba(0,0,0,0.5);
  position: relative;
  transform: translateY(12px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease;
}
.hk-card.hk-show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.hk-close {
  position: absolute;
  top: 8px; right: 9px;
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 50%;
  width: 22px; height: 22px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.hk-close:hover { background: rgba(255,77,77,0.2); color: #ff6b6b; }

.hk-eyebrow {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #a78bfa;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.hk-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 4px;
}
.hk-card-title span { color: #a78bfa; }
.hk-card-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin-bottom: 10px;
}

/* WhatsApp CTA */
.hk-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 8px;
}
.hk-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(37,211,102,0.35); }

/* Contact info links */
.hk-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hk-info a {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
  padding: 1px 0;
}
.hk-info a:hover { color: #a78bfa; }
.hk-info .hk-icon { font-size: 0.75rem; }

/* Divider */
.hk-divider {
  height: 1px;
  background: rgba(139, 92, 246, 0.12);
  margin: 8px 0 7px;
}
.hk-footer {
  text-align: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.4px;
}
.hk-footer strong { color: rgba(139, 92, 246, 0.55); }

/* Pill (always-visible trigger) */
.hk-pill {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #1e1030, #130d24);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 20px;
  padding: 5px 11px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.25s;
  box-shadow: 0 3px 12px rgba(139, 92, 246, 0.18);
}
.hk-pill:hover {
  border-color: rgba(139, 92, 246, 0.75);
  box-shadow: 0 5px 18px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}
.hk-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  animation: hk-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes hk-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167,139,250,0.7); }
  50%       { box-shadow: 0 0 0 4px rgba(167,139,250,0); }
}
.hk-pill-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #c4b5fd;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #hkWidget { bottom: 20px; left: 14px; }
  .hk-card  { width: 200px; }
}
