/* ===================================
   CAVY PRO - Dark Luxury Tech Design
   =================================== */

/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
  /* Color Palette - Dark Medical */
  --color-background: #000000;
  --color-background-alt: #09090b;
  --color-surface: #18181b;
  --color-surface-elevated: #27272a;

  /* CAVY Brand Colors */
  --color-primary: #c92026;
  --color-primary-dark: #a01a1f;
  --color-primary-light: #e63946;
  --color-accent: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #c92026 0%, #a01a1f 100%);
  --gradient-radial: radial-gradient(
    circle at 50% 50%,
    rgba(201, 32, 38, 0.15) 0%,
    transparent 70%
  );
  --gradient-surface: linear-gradient(
    135deg,
    rgba(24, 24, 27, 0.8) 0%,
    rgba(39, 39, 42, 0.8) 100%
  );

  /* Typography */
  --font-heading:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Effects */
  --glow-primary:
    0 0 20px rgba(201, 32, 38, 0.3), 0 0 40px rgba(201, 32, 38, 0.2),
    0 0 60px rgba(201, 32, 38, 0.1);

  --glow-white:
    0 0 20px rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 255, 255, 0.1);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-accent);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Typography System
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   Layout Components
   =================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* ===================================
   Glassmorphism Effects
   =================================== */
.glassmorphism {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.glassmorphism:hover {
  background: rgba(39, 39, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glassmorphism-strong {
  background: rgba(24, 24, 27, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
}

/* ===================================
   Button System
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(201, 32, 38, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(201, 32, 38, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.glow-effect {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(201, 32, 38, 0.3);
  }
  50% {
    box-shadow: var(--glow-primary);
  }
}

.btn-pulse {
  animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  animation: gradient-rotate 20s linear infinite;
}

@keyframes gradient-rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.logo-container {
  margin-bottom: var(--spacing-lg);
}

.hero-logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(201, 32, 38, 0.3));
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.title-main {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.title-location {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-image-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(5deg);
  }
}

.placeholder-hero {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(201, 32, 38, 0.3));
}

.placeholder-hero svg {
  width: 100%;
  height: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-primary));
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro-section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-text {
  padding: var(--spacing-xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.text-center {
  text-align: center;
}

.intro-description {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
}

.intro-highlight {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(201, 32, 38, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-lg);
}

.intro-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.intro-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 1.125rem;
}

.intro-media {
  display: flex;
  justify-content: center;
}

.media-card {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(201, 32, 38, 0.2));
}

/* ===================================
   AUDIENCE SECTION
   =================================== */
.audience-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-background-alt);
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.audience-card {
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.card-icon {
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
}

.audience-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   CURRICULUM SECTION
   =================================== */
.curriculum-section {
  padding: var(--spacing-3xl) 0;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.module-card {
  position: relative;
  height: 400px;
  perspective: 1000px;
  cursor: pointer;
}

.module-front,
.module-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
}

.module-front {
  transform: rotateY(0deg);
}

.module-back {
  transform: rotateY(180deg);
}

.module-card:hover .module-front {
  transform: rotateY(-180deg);
}

.module-card:hover .module-back {
  transform: rotateY(0deg);
}

.module-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.placeholder-module {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  box-shadow: var(--glow-primary);
}

.module-front h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.module-number {
  font-size: 0.875rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.module-back h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.module-back p {
  margin-bottom: var(--spacing-md);
  flex: 1;
}

.module-back ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.module-back li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
}

.module-back li::before {
  content: "→";
  color: var(--color-primary);
  font-weight: bold;
}

/* ===================================
   SPEAKERS SECTION
   =================================== */
.speakers-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-background-alt);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.speaker-card {
  padding: 0;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.speaker-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all var(--transition-slow);
}

.speaker-card:hover .speaker-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.speaker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.speaker-card:hover .speaker-overlay {
  opacity: 0.4;
}

.speaker-info {
  padding: var(--spacing-xl);
}

.speaker-info h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.speaker-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  display: block;
}

.speaker-bio {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===================================
   INVESTMENT SECTION
   =================================== */
.investment-section {
  padding: var(--spacing-3xl) 0;
}

.investment-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
}

.investment-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.investment-highlight {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: var(--spacing-md);
  box-shadow: var(--glow-primary);
}

.investment-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .investment-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.investment-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.benefit-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.benefit-item svg {
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: white;
}

.benefit-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.investment-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(201, 32, 38, 0.05);
  border: 2px solid rgba(201, 32, 38, 0.2);
  border-radius: var(--radius-lg);
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.price-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-background-alt);
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Animations on Scroll
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===================================
   Responsive Optimizations
   =================================== */
@media (max-width: 767px) {
  .hero-section {
    padding: var(--spacing-2xl) 0;
    min-height: auto;
  }

  .hero-content {
    gap: var(--spacing-lg);
  }

  .module-card {
    height: 350px;
  }

  .investment-cta {
    padding: var(--spacing-lg);
  }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  .hero-background,
  .scroll-indicator,
  .btn {
    display: none;
  }
}

/* ===================================
   SCHEDULE TIMELINE STYLES
   =================================== */

.schedule-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (min-width: 900px) {
    .schedule-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
}

.schedule-day {
    display: flex;
    flex-direction: column;
}

.day-header {
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(201, 32, 38, 0.3);
    padding-bottom: var(--spacing-md);
    position: relative;
}

.day-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

.day-header h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-subtitle {
    display: block;
    color: var(--color-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.schedule-timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.time-block {
    position: relative;
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-md);
    opacity: 0; /* Prepare for animation */
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.time-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.time-block:last-child {
    margin-bottom: 0;
}

/* Timeline Dot */
.time-block::before {
    content: '';
    position: absolute;
    left: -31px; /* Adjust based on padding/border */
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--color-background);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
    transition: all var(--transition-base);
}

.time-block:hover::before {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
    transform: scale(1.2);
}

.time-marker {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Time Content Card */
.time-content {
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

.time-content:hover {
    border-left-color: var(--color-primary);
    transform: translateX(5px);
}

.time-content h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.time-content p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.time-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-content li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.time-content li::before {
    content: "›";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    top: -1px;
}

/* Break Styling */
.time-block.break .time-marker {
    color: rgba(255, 255, 255, 0.4);
}

.time-block.break::before {
    border-color: rgba(255, 255, 255, 0.1);
}

.glassmorphism-break {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glassmorphism-break h4 {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .schedule-day:first-child {
        margin-bottom: var(--spacing-2xl);
    }
}

/* ===================================
   REQUIREMENTS SECTION
   =================================== */

.requirements-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Background blob for visual interest */
.requirements-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 32, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.requirements-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.requirements-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.requirements-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.requirement-card {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.requirement-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    color: white;
}

.highlight-card {
    border: 1px solid rgba(201, 32, 38, 0.3);
    box-shadow: 0 0 20px rgba(201, 32, 38, 0.1);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--spacing-sm);
}

.specs-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.spec-value {
    color: white;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

@media (max-width: 480px) {
    .requirements-header h2 {
        font-size: 2rem;
    }
    
    .specs-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .spec-value {
        text-align: left;
        max-width: 100%;
    }
}
