/* 
 * Style Sheet for Mobile Numerology Workshop
 * Design Style: Premium, Spiritual, Modern, Luxury
 * Theme: Dark Blue + Gold + White
 */

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

:root {
  /* Colors */
  --bg-primary: #050A18;
  --bg-secondary: #0D1527;
  --bg-card: rgba(13, 21, 39, 0.7);
  --color-gold-light: #F6E7B8;
  --color-gold: #D4AF37;
  --color-gold-dark: #AA7C11;
  --color-text-light: #FFFFFF;
  --color-text-muted: #A0AEC0;
  --color-text-dark: #1A202C;
  --color-whatsapp: #25D366;
  
  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-gradient-hover: linear-gradient(135deg, #AA771C 0%, #FBF5B7 25%, #B38728 50%, #FCF6BA 75%, #BF953F 100%);
  --dark-gradient: linear-gradient(180deg, #050A18 0%, #0D1527 100%);
  --blue-glow-gradient: radial-gradient(circle, rgba(20, 50, 120, 0.15) 0%, rgba(5, 10, 24, 0) 70%);
  
  /* Fonts */
  --font-headings: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Borders */
  --gold-border: 1px solid rgba(212, 175, 55, 0.3);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.2);
  --gold-glow-hover: 0 0 30px rgba(212, 175, 55, 0.45);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  opacity: 0;
  animation: fadeInPage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cosmic Background Stars & Circles */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
    radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px);
  background-size: 550px 550px, 350px 350px;
  background-position: 0 0, 40px 60px;
  opacity: 0.04;
  z-index: -2;
  pointer-events: none;
}

/* Section Title Stylings */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
  display: block;
}

.section-header h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '★';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
}

.section-header h2::before {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: var(--gold-gradient);
}

/* Typography elements */
p {
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(5, 10, 24, 0.95);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  -webkit-text-fill-color: var(--color-text-muted);
  letter-spacing: 2px;
  font-weight: 400;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold-light);
}

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

.nav-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gold-gradient);
  color: var(--color-text-dark);
  box-shadow: var(--gold-glow);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-hover);
  background: var(--gold-gradient-hover);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(20, 50, 120, 0.25) 0%, rgba(5, 10, 24, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05) 0%, rgba(5, 10, 24, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: var(--gold-border);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFF 30%, #FCF6BA 70%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 580px;
}

/* Event Info Quick Badges */
.hero-badges-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-info-badge {
  background: rgba(13, 21, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-gold);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.hero-info-badge:hover {
  transform: translateX(5px);
  background: rgba(13, 21, 39, 0.85);
  border-color: rgba(212, 175, 55, 0.2);
}

.hero-info-badge .icon {
  font-size: 1.75rem;
}

.hero-info-badge .label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-info-badge .val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-light);
  font-family: var(--font-headings);
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Master Button Class */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-dark);
  background: var(--gold-gradient);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before {
  left: 150%;
  transition: 0.8s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.55);
  background: var(--gold-gradient-hover);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Countdown Timer */
.countdown-box {
  background: rgba(13, 21, 39, 0.55);
  border: var(--gold-border);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow), inset 0 0 15px rgba(212, 175, 55, 0.05);
  max-width: 480px;
}

.countdown-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-family: var(--font-headings);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.countdown-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--color-text-light);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Hero Speaker Side */
.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.speaker-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 0.82;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow), 0 0 40px rgba(0, 0, 0, 0.8);
  border: var(--gold-border);
  background: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.speaker-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.2);
  pointer-events: none;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-smooth);
}

.speaker-frame:hover .speaker-img {
  transform: scale(1.04);
}

/* Sacred geometry rotating overlay behind speaker */
.sacred-bg {
  position: absolute;
  width: 125%;
  height: 125%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='rgba(212, 175, 55, 0.06)' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='rgba(212, 175, 55, 0.05)' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='rgba(212, 175, 55, 0.04)' stroke-width='0.5'/%3E%3Cpath d='M50 5 L50 95 M5 50 L95 50 M18 18 L82 82 M18 82 L82 18' stroke='rgba(212, 175, 55, 0.03)' stroke-width='0.5'/%3E%3Cpolygon points='50,5 95,50 50,95 5,50' fill='none' stroke='rgba(212, 175, 55, 0.04)' stroke-width='0.5'/%3E%3Cpolygon points='50,15 85,50 50,85 15,50' fill='none' stroke='rgba(212, 175, 55, 0.03)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  animation: rotate 60s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

/* About Workshop Section */
.about-workshop {
  background: var(--bg-secondary);
}

.about-workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-box {
  background: var(--bg-primary);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--card-shadow);
}

.about-intro-box::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-headings);
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}

.about-intro-box h3 {
  font-family: var(--font-headings);
  color: var(--color-gold-light);
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-intro-box p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.benefit-content h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

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

/* What You Will Learn Section */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.learn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.learn-card:hover {
  transform: translateY(-8px);
  border: var(--gold-border);
  box-shadow: var(--gold-glow), var(--card-shadow);
}

.learn-card:hover::before {
  opacity: 1;
}

.learn-card-num {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
  transition: var(--transition-smooth);
}

.learn-card:hover .learn-card-num {
  opacity: 0.85;
  transform: scale(1.1);
}

.learn-card h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.learn-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Speaker Section */
.speaker-section {
  background: var(--bg-secondary);
}

.speaker-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.speaker-bio-side {
  position: relative;
}

.speaker-bio-subtitle {
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.speaker-bio-title {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.speaker-bio-title span {
  display: block;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-top: 0.5rem;
}

.speaker-bio-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.speaker-achievement-card {
  background: rgba(5, 10, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  border-left: 2.5px solid var(--color-gold);
}

.speaker-achievement-card h4 {
  font-family: var(--font-headings);
  color: var(--color-gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.speaker-achievement-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Event Highlights Section */
.highlights-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.highlight-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.highlight-card h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  background: var(--bg-primary);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--transition-smooth);
}

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

.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.testimonial-quote::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  font-family: var(--font-headings);
  color: rgba(212, 175, 55, 0.12);
  z-index: -1;
}

.testimonial-rating {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A365D 0%, #2A4365 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  color: var(--color-gold);
  font-weight: 700;
  border: 1px solid var(--color-gold);
}

.testimonial-user-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.testimonial-user-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Venue Section */
.venue-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.venue-info-card {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
}

.venue-info-card h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.venue-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.venue-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.venue-detail-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  line-height: 1;
}

.venue-detail-content h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.venue-detail-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.venue-map-container {
  border-radius: 20px;
  overflow: hidden;
  border: var(--gold-border);
  box-shadow: var(--card-shadow);
  height: 400px;
  width: 100%;
}

.venue-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--color-text-light);
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-question-btn:hover {
  color: var(--color-gold-light);
}

.faq-icon-toggle {
  font-size: 1.2rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 1.5rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 250px; /* high enough to contain text */
  padding: 1.25rem 1.5rem 1.75rem 1.5rem;
  border-top-color: rgba(255, 255, 255, 0.03);
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Urgency / Register Block Section */
.urgency-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.urgency-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5, 10, 24, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.urgency-card {
  background: linear-gradient(135deg, rgba(13, 21, 39, 0.9) 0%, rgba(5, 10, 24, 0.9) 100%);
  border: var(--gold-border);
  border-radius: 30px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  max-width: 900px;
  margin: 0 auto;
}

.urgency-speaker-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.urgency-speaker-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.1);
}

.urgency-speaker-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  object-fit: cover;
  object-position: center top;
}

.urgency-speaker-info {
  text-align: left;
}

.urgency-speaker-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-light);
  font-family: var(--font-headings);
  line-height: 1.2;
}

.urgency-speaker-info span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}

.urgency-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.urgency-pill {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

.urgency-pill.gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--color-gold-light);
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2); }
  50% { transform: scale(1.03); box-shadow: 0 0 15px 5px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.urgency-card h2 {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.urgency-card p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styling */
footer {
  background: #03060F;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.footer-brand .logo-wrapper {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links-title {
  font-family: var(--font-headings);
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact-item .icon {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.footer-contact-item a:hover {
  color: var(--color-gold-light);
}

.footer-whatsapp-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-whatsapp);
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.footer-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  filter: brightness(1.05);
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-whatsapp);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  z-index: 100;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 2px 2px 25px rgba(37, 211, 102, 0.5);
}

/* Thank You Page Specific Styles */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at center, rgba(20, 50, 120, 0.2) 0%, rgba(5, 10, 24, 0) 80%);
}

.thankyou-card {
  background: var(--bg-card);
  border: var(--gold-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: var(--card-shadow), var(--gold-glow);
  backdrop-filter: blur(12px);
}

.thankyou-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  color: var(--color-gold);
  font-size: 2.5rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  animation: scaleUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thankyou-card h1 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.thankyou-card p.subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.thankyou-event-details {
  background: rgba(5, 10, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.thankyou-event-details h3 {
  font-family: var(--font-headings);
  color: var(--color-gold-light);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.thankyou-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.thankyou-detail-row:last-child {
  border-bottom: none;
}

.thankyou-detail-row span.label {
  color: var(--color-text-muted);
}

.thankyou-detail-row span.val {
  font-weight: 600;
  color: var(--color-text-light);
}

.thankyou-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background-color: var(--color-whatsapp);
  color: white;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  width: 100%;
}

.thankyou-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  filter: brightness(1.05);
}

.thankyou-home-link {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px dashed var(--color-text-muted);
  transition: var(--transition-smooth);
}

.thankyou-home-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-container {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
  .highlight-card:nth-child(4),
  .highlight-card:nth-child(5) {
    grid-column: span 1.5; /* adjustments for 5 items in grid */
  }
}

@media (max-width: 900px) {
  section {
    padding: 4.5rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-badges-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    align-items: center;
  }
  .countdown-box {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-side {
    order: -1; /* Image first on mobile tablet */
  }
  .about-workshop-grid,
  .speaker-grid,
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .speaker-section {
    text-align: center;
  }
  .speaker-achievements {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .speaker-achievement-card {
    text-align: left;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-whatsapp-side {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(5, 10, 24, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 3rem 0;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
  }
  .nav-links.active {
    left: 0;
  }
  .learn-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .highlights-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .highlight-card:nth-child(4),
  .highlight-card:nth-child(5) {
    grid-column: span 1;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-badges-container {
    grid-template-columns: 1fr;
  }
  .countdown-grid {
    gap: 0.5rem;
  }
  .countdown-value {
    font-size: 1.8rem;
  }
  .urgency-card {
    padding: 3rem 1.5rem;
  }
  .urgency-card h2 {
    font-size: 2.2rem;
  }
  .urgency-indicators {
    flex-direction: column;
    align-items: center;
  }
  .venue-map-container {
    height: 300px;
  }
}

/* Button Rows */
.hero-buttons-row, .urgency-buttons-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.hero-buttons-row {
  justify-content: flex-start;
}

/* Secondary Button Style */
.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  background: rgba(13, 21, 39, 0.4);
  border: 1.5px solid var(--color-gold);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

/* Custom Cursor Trail Elements (Desktop Only) */
@media (pointer: fine) {
  .custom-cursor-dot, .custom-cursor-outline {
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .custom-cursor-outline {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    transition: transform 0.1s ease-out, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }
  
  /* When hovering over interactive elements */
  .custom-cursor-hover {
    width: 48px;
    height: 48px;
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold-light);
  }
}

/* Hide cursor elements on touch devices */
@media (pointer: coarse) {
  .custom-cursor-dot, .custom-cursor-outline {
    display: none !important;
  }
}

/* Scroll Reveal Initial States */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Scroll Reveal Active State */
.reveal-active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Floating Animation for Speaker Portrait */
@keyframes floatPortrait {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.speaker-frame {
  animation: floatPortrait 6s ease-in-out infinite, pulseOutline 4s ease-in-out infinite;
}

/* Gold glow pulse behind portrait */
@keyframes pulseOutline {
  0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), var(--card-shadow); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), var(--card-shadow); }
  100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), var(--card-shadow); }
}

/* Card Hover Upgrades */
.learn-card, .testimonial-card, .highlight-card, .speaker-achievement-card, .venue-info-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.learn-card:hover, .testimonial-card:hover, .highlight-card:hover {
  transform: scale(1.03) translateY(-8px) !important;
  border-color: rgba(212, 175, 55, 0.45) !important;
  box-shadow: var(--gold-glow-hover), var(--card-shadow) !important;
}

/* Buttons Click Bounce and Continuous Shine Sweep */
.btn-primary, .btn-secondary, .footer-whatsapp-btn, .nav-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease, 
              background-color 0.3s ease,
              border-color 0.3s ease;
  will-change: transform, box-shadow;
}

.btn-primary:active, .btn-secondary:active, .footer-whatsapp-btn:active, .nav-btn:active {
  transform: scale(0.96) !important;
}

/* Continuous automatic shine sweep on primary and navigation buttons */
.btn-primary::before, .nav-btn::before, .footer-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: continuousShine 4.5s infinite ease-in-out;
}

@keyframes continuousShine {
  0% { left: -150%; }
  15%, 100% { left: 150%; }
}

/* Ticking Transition for Countdown Numbers */
.countdown-value {
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.countdown-value.tick {
  transform: scale(0.85);
  opacity: 0.4;
}

/* Achievements Counter Styling */
.counter {
  font-family: var(--font-headings);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulsing Floating WhatsApp Button */
.whatsapp-float {
  animation: floatPulse 3s infinite ease-in-out;
  will-change: transform, box-shadow;
}

@keyframes floatPulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.15) rotate(5deg) !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8) !important;
}

/* FAQ Icon Rotate Upgrade */
.faq-icon-toggle {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}
.faq-item.active .faq-icon-toggle {
  transform: rotate(135deg);
  color: var(--color-gold-light);
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .hero-buttons-row {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .hero-buttons-row, .urgency-buttons-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }
}

/* Page Load Fade In */
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}
