/* Spark Labs Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #0A0A0F;
  --bg-secondary: #181826;
  --surface: #232336;
  --primary: #A259FF;
  --indigo: #4F46E5;
  --pink: #F472B6;
  --yellow: #FACC15;
  --text-main: #fff;
  --text-muted: #A1A1AA;
  --border: #232336;
  --gradient: linear-gradient(90deg, #A259FF 0%, #4F46E5 100%);
  --gradient-pink: linear-gradient(90deg, #A259FF 0%, #F472B6 100%);
  --gradient-yellow: linear-gradient(90deg, #FACC15 0%, #F472B6 100%);
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  background: transparent;
}

body {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #101a3a;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  flex: 1;
}

/* Base Typography and Canvas background */
#spark-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

main, header, section {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

p, .form-control {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

/* Remove any default browser highlighting */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* =========================================================================
   HEADER STYLES
   ========================================================================= */

.site-header {
  width: 100vw !important;
  background: rgba(23, 23, 39, 0.95) !important;
  color: var(--text-main) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 2rem !important;
  box-sizing: border-box !important;
  border-bottom: 1px solid var(--border) !important;
  backdrop-filter: blur(15px) !important;
  transition: all 0.3s ease !important;
}

.site-header .logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 10px 0;
}

.site-header .logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  padding: 6px;
  box-shadow: 0 0 0 2px var(--primary);
}

.site-header h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================================
   NAVIGATION STYLES
   ========================================================================= */

nav#menuToggle {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 2001;
  transition: all 0.3s;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 6px;
  margin: 2px 0;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#menu {
  position: absolute;
  top: 50px;
  right: -32px;
  width: 160px;
  background: rgba(23, 23, 39, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  z-index: 2000;
}

#menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

#menu li {
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.2s ease;
}

#menu.open li {
  opacity: 1;
  transform: translateX(0);
}

#menu.open li:nth-child(1) { transition-delay: 0.05s; }
#menu.open li:nth-child(2) { transition-delay: 0.1s; }
#menu.open li:nth-child(3) { transition-delay: 0.15s; }
#menu.open li:nth-child(4) { transition-delay: 0.2s; }
#menu.open li:nth-child(5) { transition-delay: 0.25s; }
#menu.open li:nth-child(6) { transition-delay: 0.3s; }
#menu.open li:nth-child(7) { transition-delay: 0.35s; }

#menu li a {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  transition: all 0.2s;
  display: block;
  text-align: left;
}

#menu li a:hover {
  background: var(--gradient-pink);
  color: #fff;
  transform: translateX(3px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}



/* SparkBytes Grid */
.sparkbytes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0 0 0;
  padding: 0;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

/* Gallery Carousel Styles - Optimized */
.gallery-section {
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-section .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.gallery-section .section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-carousel {
  position: relative;
  max-width: 1400px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(162, 89, 255, 0.15);
}

.gallery-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 1rem;
  padding: 1rem;
  will-change: transform;
}

.gallery-slide {
  min-width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.2s ease;
  will-change: transform;
}

.gallery-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(162, 89, 255, 0.2);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.gallery-slide:hover img {
  transform: scale(1.03);
}

.gallery-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(162, 89, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.gallery-slide:hover::after {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-btn {
  background: rgba(162, 89, 255, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.gallery-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.gallery-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.gallery-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(162, 89, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery-slide {
    min-width: 250px;
    height: 150px;
  }
  
  .gallery-controls {
    gap: 0.5rem;
  }
  
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* =========================================================================
   SESSIONS PAGE STYLES
   ========================================================================= */

/* Sessions Grid */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0 0 0;
  padding: 0;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.session-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.session-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(162, 89, 255, 0.15);
}

.session-card.featured {
  border-color: rgba(244, 114, 182, 0.4);
  background: rgba(244, 114, 182, 0.08);
}

.session-card.featured:hover {
  border-color: rgba(244, 114, 182, 0.6);
  background: rgba(244, 114, 182, 0.15);
}

.session-card.coming-soon {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.05);
  opacity: 0.8;
}

.session-card.coming-soon:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.1);
}

.session-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.status-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.available {
  background: linear-gradient(45deg, #10B981, #059669);
  color: #fff;
}

.status-badge.featured {
  background: var(--gradient-pink);
  color: #fff;
  animation: pulse 2s infinite;
}

.status-badge.coming-soon {
  background: linear-gradient(45deg, #F59E0B, #D97706);
  color: #fff;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.session-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(162, 89, 255, 0.3);
  transition: all 0.3s ease;
}

.session-card.featured .session-icon {
  background: var(--gradient-pink);
}

.session-card.coming-soon .session-icon {
  background: var(--gradient-yellow);
}

.session-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.session-card:hover .session-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
}

.session-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.session-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.session-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.difficulty,
.duration {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.difficulty.beginner {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
}

.difficulty.intermediate {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
}

.difficulty.advanced {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

.duration {
  color: var(--primary);
  background: rgba(162, 89, 255, 0.1);
}

.session-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  flex-grow: 1;
}

.session-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(162, 89, 255, 0.2);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.detail-item i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.session-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================================
   UNIVERSAL BUTTON STYLES
   ========================================================================= */

/* Base button styles that work across all pages */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
  box-sizing: border-box;
  text-align: center;
  line-height: 1;
}

/* Primary button - purple gradient */
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.4s ease;
  z-index: 1;
}

.btn-primary:hover {
  background: var(--gradient-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(162, 89, 255, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

/* Secondary button - outline with shimmer */
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(162, 89, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
}

.btn-secondary:hover::before {
  left: 100%;
}

/* Glass button - semi-transparent with shimmer */
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  border: 1px solid rgba(162, 89, 255, 0.4);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-glass:hover {
  background: rgba(162, 89, 255, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 89, 255, 0.2);
}

.btn-glass:hover::before {
  left: 100%;
}

/* Large button variant */
.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* Small button variant */
.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* Button with icon */
.btn i {
  transition: transform 0.2s ease;
  position: relative;
  z-index: 2;
}

.btn:hover i {
  transform: translateX(2px);
}

/* Button text positioning */
.btn span,
.btn .button-text {
  position: relative;
  z-index: 2;
}

/* Button focus states */
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(162, 89, 255, 0.3);
}

/* Disabled button state */
.btn.disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* =========================================================================
   INDEX.HTML HOMEPAGE STYLES
   ========================================================================= */

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.2s ease;
}

.hero-content:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Features Grid */
.features-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.05), rgba(79, 70, 229, 0.03));
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(162, 89, 255, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: #fff;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(162, 89, 255, 0.4);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Stats Section */
.stats-section {
  padding: 6rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

/* Programs Preview */
.programs-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.programs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0 0 0;
  padding: 0;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.program-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(162, 89, 255, 0.2);
  border-color: rgba(162, 89, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.program-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
  transition: all 0.3s ease;
}

.program-icon i {
  font-size: 2rem;
  color: #fff;
}

.program-card:hover .program-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(162, 89, 255, 0.4);
}

.program-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.program-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  flex-grow: 1;
}

.program-meta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.program-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  background: rgba(162, 89, 255, 0.1);
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.1), rgba(79, 70, 229, 0.05));
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.cta-description {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-family: var(--font-body);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
.site-footer {
  background: rgba(23, 23, 39, 0.95);
  color: var(--text-main);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(162, 89, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-section h4 {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid rgba(162, 89, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-radius: 8px;
  font-family: var(--font-body);
}

.footer-newsletter-btn {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--gradient-pink);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.08), rgba(79, 70, 229, 0.05));
  border-radius: 20px;
  margin: 2rem;
  padding: 3rem 2rem;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h3 {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(162, 89, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(162, 89, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

/* Footer Newsletter Specific Styles */
.newsletter-section-footer {
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(162, 89, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(162, 89, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.footer-newsletter-btn {
  width: 45px;
  height: 45px;
  background: var(--gradient);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
  flex-shrink: 0;
}

.footer-newsletter-btn:hover {
  background: var(--gradient-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 89, 255, 0.4);
}

.footer-newsletter-btn:active {
  transform: translateY(0);
}

.footer-section .contact-info {
  margin-top: 1rem;
}

.footer-section .contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.footer-section .contact-info i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

/* =========================================================================
   CONTACT.HTML PAGE STYLES
   ========================================================================= */

/* Contact Hero Section */
.contact-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.08), rgba(79, 70, 229, 0.05));
  overflow: hidden;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
}

.contact-hero-content:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
}

/* Main Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Section */
.contact-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  transition: all 0.3s ease;
  height: fit-content;
}

.contact-info:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  transform: translateX(5px);
}

.contact-item:hover {
  background: rgba(162, 89, 255, 0.1);
  border-color: var(--primary);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 20px rgba(162, 89, 255, 0.2);
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.contact-item div h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.contact-item div p {
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item div small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* Quick Contact Options */
.quick-contact {
  margin-top: 2rem;
}

.quick-contact h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.quick-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  transition: all 0.3s ease;
  height: fit-content;
}

.contact-form:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group.focused label {
  color: var(--primary);
  transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(162, 89, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(162, 89, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A259FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-group select option {
  background: #232336;
  color: var(--text-main);
  border: none;
  padding: 0.5rem;
}

.submit-btn {
  width: 100%;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 1.3rem 2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.submit-btn:hover {
  background: var(--gradient-pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn i,
.submit-btn span {
  position: relative;
  z-index: 2;
}

/* Form Status Messages */
.form-status {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-status.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-status.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
  border: 2px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  animation: successPulse 2s ease-in-out infinite;
}

.form-status.success::before {
  content: '✓';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #10B981;
  animation: checkmarkBounce 0.6s ease-out;
}

.form-status.success::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

.form-status.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #EF4444;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
  animation: errorShake 0.5s ease-in-out;
}

.form-status.error::before {
  content: '⚠';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #EF4444;
}

@keyframes successPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
  }
}

@keyframes checkmarkBounce {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes errorShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.05), rgba(79, 70, 229, 0.03));
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.2);
}

.faq-item.active {
  border-color: var(--primary);
  background: rgba(162, 89, 255, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  font-weight: 600;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin: 0;
  padding-right: 2rem;
  line-height: 1.4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 1px solid transparent;
}

.faq-answer.open {
  max-height: 200px;
  border-top-color: rgba(162, 89, 255, 0.2);
}

.faq-answer p {
  padding: 1.5rem 2rem;
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--gradient-pink);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
}

.scroll-to-top i {
  font-size: 1.2rem;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-hero-content {
    padding: 3rem 2rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info h2,
  .contact-form h3 {
    font-size: 1.8rem;
  }
  
  .faq-container h2 {
    font-size: 2.2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-item i {
    align-self: center;
  }
    .quick-buttons {
    flex-direction: column;
  }
  
  .quick-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 2rem 1rem;
  }
  
  .contact-hero-content {
    padding: 2rem 1.5rem;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-section,
  .faq-section {
    padding: 4rem 1rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
  
  .faq-question,
  .faq-answer p {
    padding: 1rem 1.5rem;
  }
  
  .faq-question::after {
    right: 1.5rem;
  }
  
  .faq-question h4 {
    padding-right: 1.5rem;
  }
  
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

/* =========================================================================
   BOOK-TUTOR.HTML PAGE STYLES
   ========================================================================= */

/* Tutor Header Section */
.tutor-header {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.08), rgba(79, 70, 229, 0.05));
  overflow: hidden;
}

.tutor-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
}

.tutor-header-content:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.tutor-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tutor-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.tutor-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tutor-stats .stat {
  text-align: center;
}

.tutor-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.tutor-stats .stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Tutors Section */
.tutors-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.tutors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.tutor-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tutor-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(162, 89, 255, 0.2);
}

.tutor-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
}

.tutor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tutor-card:hover .tutor-image img {
  transform: scale(1.1);
}

.tutor-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tutor-status.online {
  background: #10B981;
  animation: pulse 2s infinite;
}

.tutor-status.busy {
  background: #F59E0B;
}

.tutor-status.offline {
  background: #6B7280;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.tutor-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tutor-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.tutor-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.tutor-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: #FACC15;
  font-size: 0.9rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.tutor-experience {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tutor-experience span {
  background: rgba(162, 89, 255, 0.1);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.tutor-price {
  margin: 1rem 0;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.book-btn {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.book-btn:hover {
  background: var(--gradient-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.booking-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(162, 89, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.close-booking {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-booking:hover {
  color: var(--primary);
  background: rgba(162, 89, 255, 0.1);
}

.booking-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.tutor-summary {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(162, 89, 255, 0.2);
}

.tutor-summary h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.tutor-summary p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.booking-body .form-group {
  margin-bottom: 1.5rem;
}

.booking-body .form-group label {
  display: block;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.booking-body .form-group input,
.booking-body .form-group select,
.booking-body .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(162, 89, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.booking-body .form-group input:focus,
.booking-body .form-group select:focus,
.booking-body .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(162, 89, 255, 0.2);
}

.booking-body .form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A259FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.booking-body .form-group select option {
  background: #232336;
  color: var(--text-main);
}

.submit-booking-btn {
  width: 100%;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.submit-booking-btn:hover {
  background: var(--gradient-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.4);
}

/* Mobile Responsiveness for Book Tutor Page */
@media (max-width: 768px) {
  .tutor-header h1 {
    font-size: 2.5rem;
  }
  
  .tutor-subtitle {
    font-size: 1.1rem;
  }
  
  .tutor-header-content {
    padding: 3rem 2rem;
  }
  
  .tutor-stats {
    gap: 2rem;
  }
  
  .tutor-stats .stat-number {
    font-size: 2rem;
  }
  
  .tutors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-modal {
    width: 95%;
    margin: 1rem;
  }
  
  .booking-header,
  .booking-body {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tutor-header {
    padding: 2rem 1rem;
  }
  
  .tutor-header-content {
    padding: 2rem 1.5rem;
  }
  
  .tutor-header h1 {
    font-size: 2rem;
  }
  
  .tutors-section {
    padding: 4rem 1rem;
  }
  
  .tutor-card {
    padding: 1.5rem;
  }
  
  .tutor-image {
    width: 100px;
    height: 100px;
  }
}

/* Mobile Responsiveness for Footer Newsletter */
@media (max-width: 768px) {
  .footer-newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-newsletter-input {
    width: 100%;
  }
  
  .footer-newsletter-btn {
    width: 100%;
    height: 50px;
    align-self: stretch;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 3rem 1rem 2rem;
  }
  
  .footer-newsletter-input {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .footer-newsletter-btn {
    height: 50px;
    font-size: 1.1rem;
  }
}

/* Footer Newsletter Status Messages */
.footer-newsletter-status {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.footer-newsletter-status.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-newsletter-status.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.footer-newsletter-status.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

.footer-newsletter-status.success::before {
  content: '✓ ';
  font-weight: bold;
}

.footer-newsletter-status.error::before {
  content: '⚠ ';
  font-weight: bold;
}

/* =========================================================================
   ABOUT.HTML PAGE STYLES
   ========================================================================= */

/* About Hero Section */
.about-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.08), rgba(79, 70, 229, 0.05));
  overflow: hidden;
}

.hero-glass-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
}

.hero-glass-container:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.gradient-text {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-subtitle-glass p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.glass-button.primary {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
}

.glass-button.secondary {
  background: rgba(162, 89, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

/* Mission Section */
.mission-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.mission-subtitle-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.mission-subtitle-glass p {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.mission-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
  transition: all 0.3s ease;
}

.mission-icon i {
  font-size: 2rem;
  color: #fff;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(162, 89, 255, 0.4);
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.mission-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Team Section */
.team-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.05), rgba(79, 70, 229, 0.03));
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-family: var(--font-body);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.team-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(162, 89, 255, 0.2), rgba(79, 70, 229, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-content {
  text-align: center;
}

.team-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.team-bio-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.team-bio-glass p {
  color: var(--text-muted);
  line-height: 1.6;
  font-family: var(--font-body);
  margin: 0;
}

/* =========================================================================
   BLOG.HTML PAGE STYLES
   ========================================================================= */

/* Blog Hero Section */
.blog-hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.08), rgba(79, 70, 229, 0.05));
  overflow: hidden;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
}

.blog-hero-content:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Featured Post Section */
.featured-post-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 4rem;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  align-items: center;
}

.featured-post:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.featured-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post:hover .featured-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-pink);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.category {
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category.ai {
  background: rgba(162, 89, 255, 0.2);
  color: var(--primary);
}

.date, .read-time {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.featured-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

/* Blog Posts Section */
.blog-posts-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.05), rgba(79, 70, 229, 0.03));
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-post {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.blog-post:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-badge.programming {
  background: rgba(79, 70, 229, 0.2);
  color: var(--indigo);
}

.post-badge.robotics {
  background: rgba(251, 191, 36, 0.2);
  color: var(--yellow);
}

.post-badge.ai {
  background: rgba(162, 89, 255, 0.2);
  color: var(--primary);
}

.post-badge.gamedev {
  background: rgba(244, 114, 182, 0.2);
  color: var(--pink);
}

.post-badge.tutorials {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
}

.post-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.post-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  flex-grow: 1;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(162, 89, 255, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.load-more-section {
  text-align: center;
  margin-top: 3rem;
}

/* =========================================================================
   STORE.HTML PAGE STYLES
   ========================================================================= */

/* Store Header Section */
.store-header {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.08), rgba(79, 70, 229, 0.05));
  overflow: hidden;
}

.store-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
}

.store-header-content:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.store-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.store-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
}

/* Product Categories */
.product-categories {
  padding: 4rem 2rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.category-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  color: var(--text-main);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.3);
}

/* Products Section */
.products-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.03), rgba(79, 70, 229, 0.02));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(162, 89, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(162, 89, 255, 0.2);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-pink);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.product-features i {
  color: #10B981;
  width: 16px;
}

.product-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.buy-btn {
  margin-top: auto;
}

/* Cart and Checkout Styles */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgba(23, 23, 39, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: var(--primary);
}

.cart-items {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h4 {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cart-item-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.remove-item:hover {
  color: #EF4444;
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.checkout-btn {
  width: 100%;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--gradient-pink);
  transform: translateY(-2px);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Social Section */
.social-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(162, 89, 255, 0.05), rgba(79, 70, 229, 0.03));
}

.social-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.social-header h3 {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(162, 89, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gradient-text {
    font-size: 2.5rem;
  }
  
  .featured-post {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-glass-container,
  .blog-hero-content,
  .store-header-content {
    padding: 2rem 1.5rem;
  }
  
  .gradient-text {
    font-size: 2rem;
  }
  
  .category-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .category-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* =========================================================================
   SESSIONS.HTML PAGE SPECIFIC STYLES
   ========================================================================= */

/* Sessions Hero Section */
.hero-section .hero-glass-container {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(162, 89, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-section .hero-glass-container:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(162, 89, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(162, 89, 255, 0.2);
}

.hero-section .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .hero-subtitle-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(162, 89, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-section .hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.hero-section .hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-family: var(--font-body);
  max-width: 600px;
  margin: 0 auto;
}

/* Sessions Grid Enhancements */
.sessions-grid .session-card.available {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
}

.sessions-grid .session-card.available:hover {
  border-color: rgba(16, 185, 129, 0.6);
  background: rgba(16, 185, 129, 0.1);
}

.sessions-grid .session-card.featured {
  border-color: rgba(244, 114, 182, 0.4);
  background: rgba(244, 114, 182, 0.08);
}

.sessions-grid .session-card.featured:hover {
  border-color: rgba(244, 114, 182, 0.6);
  background: rgba(244, 114, 182, 0.15);
}

.sessions-grid .session-card.coming-soon {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.05);
  opacity: 0.9;
}

.sessions-grid .session-card.coming-soon:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.1);
}

/* Enhanced Newsletter Section for Sessions */
.newsletter-section .newsletter-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.newsletter-section .newsletter-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Enhanced Button Hover Effects for Sessions */
.hero-buttons .btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(162, 89, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.hero-buttons .btn-primary:hover {
  background: var(--gradient-pink);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(162, 89, 255, 0.5);
}

.hero-buttons .btn-primary:hover::before {
  left: 100%;
}

.hero-buttons .btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(162, 89, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.hero-buttons .btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.hero-buttons .btn-secondary:hover::before {
  left: 100%;
}

/* Button icon positioning */
.hero-buttons .btn i,
.hero-buttons .btn span {
  position: relative;
  z-index: 2;
}

/* Enhanced animations */
.status-badge.featured {
  animation: pulse 2s infinite;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-3px);
  }
}

/* Mobile Responsiveness for Sessions */
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-section .hero-glass-container {
    padding: 3rem 2rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .sessions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-section .hero-glass-container {
    padding: 2rem 1.5rem;
  }
  
  .hero-section .hero-content h1 {
    font-size: 2rem;
  }
  
  .newsletter-section .newsletter-content h3 {
    font-size: 1.8rem;
  }
}