@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Design Tokens & Variables */
:root {
  --primary-brand: #FFC107;
  --primary-brand-dark: #DCA000;
  --primary-brand-light: #FFD54F;
  --primary-brand-transparent: rgba(255, 193, 7, 0.15);
  
  --dark-surface: #1E1E1E;
  --card-bg: #2A2A2A;
  --border-color: #3A3A3A;
  --bg-dark: #121212;

  --black: #000000;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --light-gray: #CCCCCC;
  --gray: #888888;
  --dark-gray: #555555;

  --error: #FF5252;
  --success: #4CAF50;
  --warning: #FFC107;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-none: none;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.6);

  /* Border Radius */
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;
  
  --container-max-width: 1200px;
  --section-padding-y: 80px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--light-gray);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility Classes */
.display-1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.display-2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1, .h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}

h2, .h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}

h3, .h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

h4, .h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.font-accent {
  font-family: var(--font-accent);
  font-style: italic;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--light-gray);
}

.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--light-gray);
}

.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray);
}

.overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--gray);
}

.text-brand {
  color: var(--primary-brand);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.section-dark {
  background-color: var(--dark-surface);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* Header & Footer */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.main-navigation a {
  text-decoration: none;
  font-weight: 500;
  color: var(--light-gray);
  transition: color 0.3s;
  font-size: 15px;
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--primary-brand);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #121212 !important;
  background: #121212 !important;
  z-index: 999999 !important;
  padding: var(--space-xl);
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.mobile-menu-overlay.active {
  display: flex !important;
}

.mobile-menu-overlay a {
  text-decoration: none;
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.active {
  color: var(--primary-brand);
}

/* Footer style */
.site-footer {
  background-color: var(--black);
  border-top: 1px solid var(--border-color);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  list-style: none;
}

.footer-nav a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--primary-brand);
}

.footer-copyright {
  text-align: center;
  color: var(--dark-gray);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-xl);
}

/* Components Styles */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.btn:active {
  transform: scale(0.96);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--primary-brand);
  color: var(--dark-surface);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background-color: var(--primary-brand-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-surface);
  transform: translateY(-2px);
}

/* Cards */
.card-service {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.card-service:hover {
  transform: translateY(-6px);
  background-color: var(--dark-surface);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-brand);
}

.card-service-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-brand);
}

.card-service h3 {
  color: var(--white);
}

.card-service p {
  color: var(--gray);
}

.card-service-link {
  color: var(--primary-brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.card-service-link:hover {
  text-decoration: underline;
}

/* Testimonial Card */
.card-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  gap: 16px;
  background-color: var(--dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-xs);
  color: var(--primary-brand);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--light-gray);
  line-height: 1.6;
}

.testimonial-author {
  color: var(--white);
  font-family: var(--font-heading);
  margin-top: var(--space-xs);
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-size: 14px;
  color: var(--light-gray);
  font-weight: 500;
}

.form-input, .form-textarea {
  background-color: var(--white);
  border: 1px solid transparent;
  color: var(--dark-surface);
  padding: 14px 20px;
  width: 100%;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-brand);
  box-shadow: 0 0 0 3px var(--primary-brand-transparent);
}

.form-input.has-error, .form-textarea.has-error {
  border-color: var(--error);
}

.form-error-msg {
  font-size: 13px;
  color: var(--error);
  margin-top: 4px;
}

/* Progress Bars */
.progress-bar-container {
  margin-bottom: var(--space-xl);
}

.progress-label-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.progress-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.progress-percent {
  color: var(--primary-brand);
  font-weight: 600;
}

.progress-track {
  height: 8px;
  background-color: var(--dark-gray);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary-brand);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Step list */
.step-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-brand);
  opacity: 0.8;
  line-height: 1;
}

.step-content h3 {
  margin-bottom: var(--space-xs);
  color: var(--white);
}

.step-content p {
  color: var(--gray);
  font-size: 14px;
}

/* Partner Logo strip */
.partner-logo-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--dark-gray);
  letter-spacing: 3px;
  opacity: 0.6;
}

/* Specific Section Layout Styles */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
}

.hero-subtitle {
  color: var(--primary-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: block;
}

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.about-features-list {
  list-style: none;
  margin-top: var(--space-lg);
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--light-gray);
}

.about-features-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary-brand);
  flex-shrink: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.stat-box {
  padding: var(--space-md);
  border-left: 2px solid var(--primary-brand);
  background-color: rgba(255, 255, 255, 0.02);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-brand);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
}

/* Banner Overlay */
.overlay-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--space-5xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.overlay-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(220,160,0,0.6) 100%);
  z-index: 1;
}

.overlay-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Reviews styles */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.review-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-header {
  height: 220px;
  background-color: #1a1a1a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background-color: var(--primary-brand);
  color: var(--black);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.review-score {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background-color: rgba(0,0,0,0.8);
  color: var(--primary-brand);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  border: 1px solid var(--primary-brand);
}

.review-body {
  padding: var(--space-xl);
}

.review-title {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.review-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--gray);
  margin-bottom: var(--space-md);
}

.review-text {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: var(--space-lg);
}

.review-footer {
  border-top: 1px solid var(--border-color);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Play Now Columns */
.play-sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.play-session-card {
  background-color: var(--dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  padding: var(--space-xl);
  transition: transform 0.3s;
}

.play-session-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-brand);
}

.play-session-duration {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-brand);
  margin-bottom: var(--space-sm);
  display: block;
}

.play-session-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.play-session-description {
  font-size: 14px;
  color: var(--light-gray);
}

/* Grid layout contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-list {
  list-style: none;
  margin-top: var(--space-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary-brand-transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-brand);
  flex-shrink: 0;
}

.contact-info-icon-box svg {
  width: 24px;
  height: 24px;
}

.contact-info-text h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact-info-text p {
  color: var(--gray);
  font-size: 14px;
}

.contact-info-text a {
  color: var(--primary-brand);
  text-decoration: none;
}

.contact-info-text a:hover {
  text-decoration: underline;
}

/* Page Banner */
.page-banner {
  background-color: var(--dark-surface);
  padding: var(--space-4xl) 0 var(--space-2xl) 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.page-banner h1 {
  margin-bottom: var(--space-sm);
}

.page-banner p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .play-sessions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 60px;
  }
  
  .display-1 {
    font-size: 40px;
  }
  
  .display-2 {
    font-size: 32px;
  }
  
  h1, .h1 {
    font-size: 30px;
  }
  
  .grid-2, .grid-3, .grid-4, .reviews-grid, .play-sessions-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-section {
    padding-top: 100px;
    min-height: auto;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
