/* Content Sections Styles - Matching Figma Design Exactly */

/* CSS Variables */
:root {
  --container-2xl: 1500px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;
  
  --White: #FFFFFF;
  --Grey-Grey-300: #D1D5DB;
  --Grey-Grey-900: #111827;
  --Salmon: #EC4899;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--White);
  background: #000;
}

.section-container {
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.section-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--White);
  margin-bottom: var(--spacing-lg);
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--Grey-Grey-300);
  margin-bottom: var(--spacing-3xl);
  text-align: left;
  max-width: 800px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--spacing-md) 0;
}

.header-container {
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 40px;
}

.header-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-2xl);
}

.header-nav a {
  color: var(--White);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}



.header-cta {
  background: #f20042;
  color: var(--White);
  border: none;
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
}



/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 -50px 50px -20px rgba(0, 0, 0, 0.5);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 120px;
}

.hero-container {
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  padding-top: 80px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--White);
  margin-bottom: var(--spacing-xl);
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.hero-title-indent {
  display: inline-block;
  margin-left: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--White);
  margin-bottom: var(--spacing-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.hero-date {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--White);
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: var(--font-size-xl);
  color: var(--Grey-Grey-300);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-date {
  font-size: var(--font-size-lg);
  color: var(--White);
  margin-bottom: var(--spacing-2xl);
}

.hero-button {
  background: #f20042;
  color: var(--White);
  border: none;
  padding: var(--spacing-xl) var(--spacing-4xl);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
}



/* Countdown */
.countdown {
  background: #2f2929;
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-container {
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
}

.countdown-number {
  font-size: 3.825rem;
  font-weight: 700;
  color: var(--White);
  margin-right: var(--spacing-xs);
  white-space: nowrap;
  flex-shrink: 0;
}

.countdown-label {
  font-size: 3.825rem;
  color: #ff9c99;
  text-transform: lowercase;
  font-weight: 500;
  margin-right: var(--spacing-lg);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Why Event Matters */
.why-event {
  background: #151515;
  padding: var(--spacing-4xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.why-event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.why-event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--White);
  border-radius: 16px;
  padding: var(--spacing-xl);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.why-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.why-event-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-event-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.why-event-content {
  flex: 1;
}

.why-event-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--White);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.why-event-description {
  font-size: var(--font-size-base);
  color: var(--Grey-Grey-300);
  line-height: 1.6;
}

/* Speakers Section */
.speakers {
  background: #8c8a89;
  padding: var(--spacing-4xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.speakers-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: var(--spacing-3xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.speaker-card {
  display: flex;
  width: 50%;
  max-width: 50%;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
}

.speaker-image {
  width: 50%;
  height: 300px;
  object-fit: cover;
  border: none;
  max-width: 50%;
  display: block;
}

.speaker-content {
  width: 50%;
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Codie Sanchez - Red background */
.speaker-card:first-child .speaker-content {
  background: #EF4444;
}

/* Bill Perkins - Blue background */
.speaker-card:last-child .speaker-content {
  background: #26babb;
}

.speaker-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--White);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.speaker-title {
  font-size: var(--font-size-sm);
  color: var(--White);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.speaker-description {
  font-size: var(--font-size-sm);
  color: var(--Grey-Grey-300);
  line-height: 1.6;
  margin-bottom: 0;
}

.speakers-cta {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.speakers-button {
  background: var(--White);
  color: var(--Grey-Grey-900);
  border: none;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: 12px;
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
}

.speakers-expanded {
  margin-top: var(--spacing-3xl);
  animation: fadeIn 0.5s ease-in-out;
}

.speakers-expanded .speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.speakers-expanded .speaker-card {
  display: flex;
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
}

.speakers-expanded .speaker-image {
  width: 50%;
  height: 300px;
  object-fit: cover;
  border: none;
  max-width: 50%;
  display: block;
}

.speakers-expanded .speaker-content {
  width: 50%;
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Color variations for expanded speakers */
.speakers-expanded .speaker-card:nth-child(1) .speaker-content { background: #EF4444; }
.speakers-expanded .speaker-card:nth-child(2) .speaker-content { background: #3B82F6; }
.speakers-expanded .speaker-card:nth-child(3) .speaker-content { background: #10B981; }
.speakers-expanded .speaker-card:nth-child(4) .speaker-content { background: #F59E0B; }
.speakers-expanded .speaker-card:nth-child(5) .speaker-content { background: #8B5CF6; }
.speakers-expanded .speaker-card:nth-child(6) .speaker-content { background: #EC4899; }
.speakers-expanded .speaker-card:nth-child(7) .speaker-content { background: #06B6D4; }
.speakers-expanded .speaker-card:nth-child(8) .speaker-content { background: #84CC16; }
.speakers-expanded .speaker-card:nth-child(9) .speaker-content { background: #F97316; }
.speakers-expanded .speaker-card:nth-child(10) .speaker-content { background: #6366F1; }

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



/* Pricing Section */
.pricing {
  background: #0b3e3e;
  padding: var(--spacing-4xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.pricing-card {
  background: transparent;
  border: 1px solid var(--White);
  border-radius: 16px;
  padding: var(--spacing-2xl);
  text-align: center;
  color: var(--White);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  background: transparent;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-tier {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--White);
  margin-bottom: var(--spacing-sm);
}

.pricing-price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--White);
  margin-bottom: var(--spacing-sm);
}



.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-2xl) 0;
  text-align: left;
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}

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

.checkmark {
  color: #10B981;
  font-weight: bold;
  margin-right: var(--spacing-sm);
  font-size: 1.1em;
  flex-shrink: 0;
  line-height: 1.4;
}

.pricing-button {
  background: transparent;
  color: var(--White);
  border: 1px solid var(--White);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: 12px;
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
  margin-top: auto;
}

.pricing-card.featured .pricing-button {
  background: #f20042;
  border: none;
}



/* Location Section */
.location {
  position: relative;
  padding: var(--spacing-4xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.location-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.location-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #9e607b;
  opacity: 0.9;
  z-index: -1;
}

.location .section-container {
  position: relative;
  z-index: 1;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  margin-top: var(--spacing-3xl);
}

.location-main {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--White);
  border-radius: 16px;
  padding: var(--spacing-2xl);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.premium-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--White);
  border-radius: 16px;
  padding: var(--spacing-xl);
  backdrop-filter: blur(10px);
  text-align: center;
}

.location-icon {
  width: 128px;
  height: 128px;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.location-icon img {
  width: 64px;
  height: 64px;
}

.location-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--White);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.location-description {
  font-size: var(--font-size-base);
  color: var(--Grey-Grey-300);
  line-height: 1.6;
}

.location-content {
  flex: 1;
}

.premium-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--spacing-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.premium-icon img {
  width: 48px;
  height: 48px;
}

.premium-text {
  font-size: var(--font-size-sm);
  color: var(--White);
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* Schedule Section */
.schedule {
  background: #1e8485;
  padding: var(--spacing-4xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.schedule-day {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--White);
  border-radius: 16px;
  padding: var(--spacing-2xl);
  color: var(--White);
}

.schedule-day-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--White);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.schedule-sessions {
  space-y: var(--spacing-lg);
}

.schedule-session {
  display: flex;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-session:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.schedule-time {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--White);
  min-width: 80px;
  margin-right: var(--spacing-md);
}

.schedule-title {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--White);
  margin: 0;
}

.schedule-cta {
  text-align: center;
  margin-top: var(--spacing-3xl);
}

.schedule-button {
  background: #f20042;
  color: var(--White);
  border: none;
  padding: var(--spacing-lg) var(--spacing-3xl);
  border-radius: 12px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
}



/* Video Section */
.video-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #000000;
}

.video-player {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.video-person-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #00CED1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.play-icon {
  font-size: 2.5rem;
  color: white;
  margin-left: 4px;
}



.video-caption {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.video-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--White);
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.video-name {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--White);
}

/* Testimonials Section */
.testimonials {
  background: #1e8486;
  padding: var(--spacing-4xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.testimonial-card {
  background: var(--White);
  border-radius: 24px;
  padding: var(--spacing-2xl);
  color: var(--Grey-Grey-900);
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--White);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  flex: 1;
}

.testimonial-name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--Grey-Grey-900);
  margin-bottom: var(--spacing-xs);
  text-align: left;
}

.testimonial-title {
  font-size: var(--font-size-sm);
  color: #6B7280;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--Grey-Grey-900);
  line-height: 1.6;
  font-style: italic;
  text-align: left;
}

/* FAQ Section */
.faq {
  background: #105455;
  padding: var(--spacing-4xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-list {
  max-width: 800px;
  margin: var(--spacing-3xl) auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-xl);
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--White);
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--White);
  font-size: var(--font-size-xl);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--spacing-xl);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 5px var(--spacing-xl) var(--spacing-xl);
}

.faq-answer p {
  margin: 0;
  color: var(--Grey-Grey-300);
  line-height: 1.6;
}

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

/* Final CTA Section */
.final-cta {
  position: relative;
  padding: var(--spacing-4xl) 0;
  overflow: hidden;
}

.final-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.final-cta-background img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: 40% center;
  transform: translateX(-50px);
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(127, 29, 29, 0.9);
  z-index: -1;
}

.final-cta-white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1.5;
}

.final-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.final-cta-date {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--White);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.final-cta-subtitle {
  font-size: var(--font-size-lg);
  color: var(--Grey-Grey-300);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.final-cta-button {
  background: #f20042;
  color: var(--White);
  border: none;
  padding: var(--spacing-lg) var(--spacing-3xl);
  border-radius: 12px;
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0px 6px 3px 2px rgba(0, 0, 0, 0.6);
  text-align: center;
}



/* Footer */
.footer {
  background: #000000;
  padding: var(--spacing-3xl) 0;
}

.footer-container {
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.footer-logo {
  height: 54px;
  margin-bottom: var(--spacing-lg);
  transform: translateX(-15%) scale(1.08);
  transform-origin: left center;
}

.footer-description {
  font-size: var(--font-size-base);
  color: var(--Grey-Grey-300);
  line-height: 1.6;
}

.footer-right {
  text-align: right;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}



.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-copyright {
  font-size: var(--font-size-sm);
  color: var(--Grey-Grey-300);
}

.footer-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--Grey-Grey-300);
  text-align: center;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .why-event-grid,
  .pricing-grid,
  .schedule-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet Breakpoint - Switch to Mobile Layout */
@media (max-width: 1000px) {
  .section-title {
    font-size: var(--font-size-4xl);
  }
  
  .section-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .header-nav {
    display: none;
  }
  
  .why-event-grid,
  .pricing-grid,
  .schedule-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .speakers-grid {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .speaker-card {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
  }
  
  .speaker-image {
    width: 50%;
    max-width: 50%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
  
  .speaker-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .speakers-expanded .speakers-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .speakers-expanded .speaker-card {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
  }
  
  .speakers-expanded .speaker-image {
    width: 50%;
    max-width: 50%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
  
  .speakers-expanded .speaker-content {
    width: 50%;
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .countdown-timer {
    gap: 0.25rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 0.5rem;
    width: 100%;
    overflow: hidden;
  }
  
  .countdown-number {
    font-size: 1.275rem;
    margin-right: 0.125rem;
  }
  
  .countdown-label {
    font-size: 1.275rem;
    margin-right: 0.5rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: var(--spacing-2xl);
    text-align: center;
  }
  
  .footer-right {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* Location section mobile optimization */
  .location-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .location-main {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .location-icon {
    margin-bottom: var(--spacing-md);
  }
  
  .premium-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .premium-card {
    padding: var(--spacing-lg);
  }
  
  /* Fix why-event cards for mobile */
  .why-event-card {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
  }
  
  .why-event-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }
  
  .why-event-icon img {
    width: 32px;
    height: 32px;
  }
  
  .why-event-title {
    white-space: normal;
    font-size: var(--font-size-base);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--font-size-4xl);
  }
  
  .section-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .header-nav {
    display: none;
  }
  
  .why-event-grid,
  .pricing-grid,
  .schedule-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .speakers-grid {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .speaker-card {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
  }
  
  .speaker-image {
    width: 50%;
    max-width: 50%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
  
  .speaker-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .speakers-expanded .speakers-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .speakers-expanded .speaker-card {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
  }
  
  .speakers-expanded .speaker-image {
    width: 50%;
    max-width: 50%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
  
  .speakers-expanded .speaker-content {
    width: 50%;
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .countdown-timer {
    gap: 0.25rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 0.5rem;
    width: 100%;
    overflow: hidden;
  }
  
  .countdown-number {
    font-size: 1.275rem;
    margin-right: 0.125rem;
  }
  
  .countdown-label {
    font-size: 1.275rem;
    margin-right: 0.5rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: var(--spacing-2xl);
    text-align: center;
  }
  
  .footer-right {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* Location section mobile optimization */
  .location-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .location-main {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .location-icon {
    margin-bottom: var(--spacing-md);
  }
  
  .premium-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .premium-card {
    padding: var(--spacing-lg);
  }
  
  /* Fix why-event cards for mobile */
  .why-event-card {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
  }
  
  .why-event-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }
  
  .why-event-icon img {
    width: 32px;
    height: 32px;
  }
  
  .why-event-title {
    white-space: normal;
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-container {
    padding: 0 var(--spacing-sm);
  }
  
  .countdown-timer {
    gap: 0.125rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 0.75rem;
    width: 100%;
    overflow: hidden;
  }
  
  .countdown-number {
    font-size: 0.744rem;
    margin-right: 0.0625rem;
  }
  
  .countdown-label {
    font-size: 0.744rem;
    margin-right: 0.25rem;
  }
  
  .pricing-price {
    font-size: var(--font-size-3xl);
  }
  
  /* Additional mobile fixes for why-event */
  .why-event-card {
    padding: var(--spacing-md);
  }
  
  .why-event-icon {
    width: 48px;
    height: 48px;
  }
  
  .why-event-icon img {
    width: 24px;
    height: 24px;
  }
  
  .why-event-title {
    font-size: var(--font-size-sm);
  }
} 