/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Dark luxury theme - gold and black */
  --background: #0a0908;
  --background-secondary: #121210;
  --foreground: #f5f2e8;
  --foreground-muted: #a09a8c;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #aa8c2c;
  --card-bg: #151513;
  --border-color: rgba(212, 175, 55, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 25%, #d4af37 50%, #aa8c2c 75%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold Glow Effect */
.gold-glow {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.1);
}

/* Gold Border */
.gold-border {
  border: 1px solid transparent;
  background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
              linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #aa8c2c 100%) border-box;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--background);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-icon, .btn-icon-left {
  width: 1.25rem;
  height: 1.25rem;
}

/* Section Badge */
.section-badge, .badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Icons */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon-small {
  width: 1rem;
  height: 1rem;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
  50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
  75% { transform: translateY(-25px) translateX(5px); opacity: 0.5; }
}

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

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-item .icon {
  color: var(--gold);
}

.info-item > div {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-weight: 600;
  color: var(--foreground);
}

.limited-spots {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.hero-image {
  position: relative;
}

.hero-image .image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-image img {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* =====================
   LEARNING SECTION
   ===================== */
.learning {
  padding: 6rem 0;
  background: var(--background-secondary);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.learning-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card-bg);
  transition: all 0.3s ease;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.learning-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.learning-card p {
  font-size: 0.95rem;
  color: var(--foreground-muted);
}

/* =====================
   TARGET AUDIENCE SECTION
   ===================== */
.target-audience {
  padding: 6rem 0;
}

.target-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .target-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.target-list {
  list-style: none;
  margin-top: 2rem;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.target-list span {
  font-size: 1.0625rem;
  color: var(--foreground-muted);
}

.target-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--card-bg);
  text-align: center;
  max-width: 350px;
}

.visual-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 1rem;
  color: var(--gold);
}

.visual-icon svg {
  width: 100%;
  height: 100%;
}

.visual-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.visual-card p {
  color: var(--foreground-muted);
}

/* =====================
   MENTOR SECTION
   ===================== */
.mentor {
  padding: 6rem 0;
  background: var(--background-secondary);
}

.mentor-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mentor-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.mentor-images {
  position: relative;
}

.image-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.mentor-description {
  font-size: 1.0625rem;
  color: var(--foreground-muted);
  margin-bottom: 1rem;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.testimonials {
  padding: 6rem 0;
}

.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 320px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--card-bg);
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.quote-icon {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--background);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

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

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active, .dot:hover {
  background: var(--gold);
}

/* =====================
   BENEFITS SECTION
   ===================== */
.benefits {
  padding: 6rem 0;
  background: var(--background-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

/* =====================
   CTA SECTION
   ===================== */
.cta {
  padding: 6rem 0;
}

.cta-content {
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(21, 21, 19, 0.9) 100%);
  border: 1px solid var(--border-color);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-content {
    padding: 5rem 4rem;
  }
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--foreground-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-event-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground-muted);
}

.cta-info-item .icon {
  color: var(--gold);
}

.cta-guarantee {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--foreground-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-guarantee .icon-small {
  color: var(--gold);
}

/* =====================
   FAQ SECTION
   ===================== */
.faq {
  padding: 6rem 0;
  background: var(--background-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question span {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--foreground-muted);
  line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--foreground-muted);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-social:hover {
  opacity: 0.8;
}

.footer-social svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

/* =====================
   CUSTOM SCROLLBAR
   ===================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* =====================
   VIDEO TESTIMONIALS
   ===================== */
.video-testimonials {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--background) 0%, rgba(15, 12, 8, 1) 100%);
}

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

.video-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .video-testimonials {
    padding: 4rem 0;
  }
}

/* =====================
   RESPONSIVE ADJUSTMENTS
   ===================== */
@media (max-width: 640px) {
  .hero {
    padding: 4rem 0 3rem;
  }
  
  .event-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mentor-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-event-info {
    flex-direction: column;
    gap: 1rem;
  }
}
