/* =============================================
   OCP Masterclass Landing Page - Premium Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --gold: #f5c518;
  --gold-light: #ffd94a;
  --gold-glow: rgba(245, 197, 24, 0.3);
  --green: #00d68f;
  --green-glow: rgba(0, 214, 143, 0.3);
  --dark: #090d1a;
  --dark-2: #0f1628;
  --dark-3: #151e35;
  --dark-4: #1c2847;
  --dark-card: rgba(21, 30, 53, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 197, 24, 0.3);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --gradient-gold: linear-gradient(135deg, #f5c518, #ff9500);
  --gradient-hero: linear-gradient(135deg, #0d1b3e 0%, #090d1a 50%, #0a1628 100%);
  --gradient-card: linear-gradient(135deg, rgba(245, 197, 24, 0.05) 0%, rgba(0, 214, 143, 0.03) 100%);
  --shadow-gold: 0 0 40px rgba(245, 197, 24, 0.2);
  --shadow-green: 0 0 40px rgba(0, 214, 143, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===== SEMINAR DATE BOX ===== */
.seminar-date-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.07), rgba(0, 214, 143, 0.04));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 0;
}

.seminar-date-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 32px;
  flex: 1;
  min-width: 220px;
  justify-content: center;
}

.seminar-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.seminar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 600;
}

.seminar-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.seminar-divider {
  width: 1px;
  height: 60px;
  background: var(--border-gold);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .seminar-date-box { flex-direction: column; padding: 20px; }
  .seminar-divider { width: 80%; height: 1px; }
}

/* ===== COUNTDOWN ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(9, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { font-size: 1.8rem; }

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.5));
  transition: all 0.3s ease;
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 14px rgba(245, 197, 24, 0.9));
  transform: scale(1.05);
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(245, 197, 24, 0.5));
}

.nav-cta {
  background: var(--gradient-gold);
  color: #000;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}

.badge-container {
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FREE BADGE ===== */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 214, 143, 0.2), rgba(0, 214, 143, 0.08));
  border: 2px solid rgba(0, 214, 143, 0.6);
  color: #00d68f;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0, 214, 143, 0.3), inset 0 0 20px rgba(0, 214, 143, 0.05);
  animation: pulse-free 1.5s infinite;
}

@keyframes pulse-free {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 214, 143, 0.4), inset 0 0 10px rgba(0, 214, 143, 0.05);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 214, 143, 0.7), inset 0 0 20px rgba(0, 214, 143, 0.1);
    transform: scale(1.03);
  }
}

/* ===== FREE RIBBON BOX ===== */
.free-ribbon-box {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(0, 214, 143, 0.1), rgba(0, 214, 143, 0.04));
  border: 2px dashed rgba(0, 214, 143, 0.5);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.free-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #00d68f, #00b377);
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(0, 214, 143, 0.4);
  animation: bounce-free 2s infinite;
}

.free-tag:nth-child(2) { animation-delay: 0.2s; }
.free-tag:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce-free {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.free-desc {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #00d68f;
  letter-spacing: 0.5px;
}

/* ===== FORM FREE BANNER ===== */
.form-free-banner {
  background: linear-gradient(135deg, rgba(0, 214, 143, 0.15), rgba(0, 214, 143, 0.05));
  border: 2px solid rgba(0, 214, 143, 0.5);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #00d68f;
  margin-bottom: 16px;
  animation: pulse-free 2s infinite;
  letter-spacing: 0.5px;
}

.form-free-banner strong {
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(245, 197, 24, 0); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-course-box {
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.5s both;
  position: relative;
  overflow: hidden;
}

.hero-course-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.course-label {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 600;
}

.course-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: #000;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(245, 197, 24, 0.6);
}

.btn-primary.large {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.8s both;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.5; }
}

/* ===== SECTION COMMONS ===== */
section {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 48px;
  line-height: 1.3;
}

/* ===== PAIN SECTION ===== */
.pain-section {
  padding: 100px 0;
  background: var(--dark-2);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pain-card:hover::before { transform: scaleX(1); }

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 65, 108, 0.3);
  box-shadow: 0 16px 48px rgba(255, 65, 108, 0.15);
}

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.pain-card p strong { color: var(--text-primary); }

.pain-solution {
  background: linear-gradient(135deg, rgba(0, 214, 143, 0.08), rgba(245, 197, 24, 0.05));
  border: 1px solid rgba(0, 214, 143, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.solution-icon { font-size: 2rem; flex-shrink: 0; }

.pain-solution p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.pain-solution p strong { color: var(--green); }

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: var(--gradient-card);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.feature-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(0, 214, 143, 0.04));
}

.feature-card.featured::after { transform: scaleX(1); }

.featured-badge {
  display: inline-flex;
  background: var(--gradient-gold);
  color: #000;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(245, 197, 24, 0.2);
  transform: scale(1.1);
}

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

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 100px 0;
  background: var(--dark-2);
  text-align: center;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  width: 80px; height: 80px;
  background: rgba(245, 197, 24, 0.08);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  order: -1;
  margin-bottom: 0;
  margin-top: 0;
}

.process-step:hover .step-icon {
  background: rgba(245, 197, 24, 0.2);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.step-content {
  margin-top: 16px;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  align-self: center;
  margin-bottom: 80px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.testimonial-card.featured-testimonial {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.06), rgba(0, 214, 143, 0.03));
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b3e, #090d1a);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.urgency-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 65, 108, 0.06);
  border: 1px solid rgba(255, 65, 108, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.urgency-left {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.urgency-icon { font-size: 2.5rem; flex-shrink: 0; }

.urgency-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ff6b6b;
  margin-bottom: 8px;
}

.urgency-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.urgency-counter {
  text-align: center;
  flex-shrink: 0;
}

.counter-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.counter-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b6b, #ff416c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.counter-sublabel {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.countdown-label {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.deadline-date-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(255, 149, 0, 0.08));
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-size: 1.05rem;
  padding: 10px 28px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  animation: pulse-badge 2.5s infinite;
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.15);
}

.deadline-date-badge strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 90px;
}

.time-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.time-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-separator {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  padding-bottom: 20px;
}

/* ===== REGISTER SECTION ===== */
.register-section {
  padding: 100px 0;
  background: var(--dark-2);
}

.register-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.register-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.register-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.register-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.register-benefits li {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 10px 16px;
  background: rgba(0, 214, 143, 0.05);
  border: 1px solid rgba(0, 214, 143, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.register-benefits li:hover {
  background: rgba(0, 214, 143, 0.1);
  border-color: rgba(0, 214, 143, 0.4);
  transform: translateX(4px);
}

.register-form {
  background: var(--dark-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.register-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Hind Siliguri', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

/* ===== PHONE INPUT GROUP (+91 PREFIX) ===== */
.phone-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phone-input-group:focus-within {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}

.country-prefix {
  background: rgba(245, 197, 24, 0.12);
  border-right: 1px solid var(--border-gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  user-select: none;
}

.phone-input-group input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.phone-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}

.form-group select option { background: var(--dark-2); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  background: var(--gradient-gold);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'Hind Siliguri', sans-serif;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.5);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.success-message {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(0, 214, 143, 0.05));
  border: 2px solid rgba(37, 211, 102, 0.5);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.2);
}

.success-icon { font-size: 3.5rem; margin-bottom: 12px; display: block; }

.success-message h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--green);
}

.success-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.whatsapp-community-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  width: 100%;
}

.whatsapp-community-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.65);
}

.wa-icon {
  font-size: 1.5rem;
}

.wa-note {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 16px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover, .faq-item.open {
  border-color: var(--border-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1b3e, #090d1a, #0a2010);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content { position: relative; z-index: 2; }

.final-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-contact {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-contact p { color: var(--text-muted); font-size: 0.9rem; }

.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
}

.contact-divider { color: var(--border); }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE FLOATING STICKY CTA BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(9, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: #000;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
}

/* ===== RESPONSIVE OPTIMIZATIONS FOR MOBILE ===== */
@media (max-width: 900px) {
  .register-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-connector { display: none; }
  .process-timeline { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  .mobile-sticky-bar { display: block; }

  section {
    padding: 60px 0 !important;
  }

  .hero {
    padding-top: 85px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 30px 16px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.35;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-course-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .course-title {
    font-size: 1.5rem;
  }

  .btn-primary.large {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
    justify-content: center;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Prevent iOS zoom by keeping font-size >= 16px */
  .form-group input,
  .form-group select,
  .form-group textarea,
  .phone-input-group input {
    font-size: 16px !important;
  }

  .register-form {
    padding: 24px 18px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-divider { display: none; }

  .urgency-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }

  .urgency-left {
    flex-direction: column;
    text-align: center;
  }

  .counter-number {
    font-size: 3rem;
  }

  .countdown-timer {
    gap: 4px;
  }

  .time-block {
    min-width: 62px;
    padding: 10px 8px;
  }

  .time-num {
    font-size: 1.6rem;
  }

  .time-label {
    font-size: 0.68rem;
  }

  .time-separator {
    font-size: 1.4rem;
    padding-bottom: 14px;
  }

  .deadline-date-badge {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .seminar-date-box {
    padding: 16px 12px;
  }

  .seminar-date-item {
    padding: 8px;
    min-width: 100%;
  }

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

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

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