/* Leader Boost Auto-école Styles */

/* CSS Variables - Color System from design tokens */
:root {
  /* Brand Colors */
  --primary: 25 85% 55%;          /* Orange: hsl(25, 85%, 55%) */
  --primary-foreground: 0 0% 98%; /* White text on orange */
  --accent: 45 75% 45%;           /* Dark Yellow: hsl(45, 75%, 45%) */
  --accent-foreground: 0 0% 98%;  /* White text on dark yellow */
  
  /* Background Colors */
  --background: 0 0% 100%;        /* White */
  --foreground: 0 0% 9%;          /* Dark text */
  
  /* Card & Surface Colors */
  --card: 0 0% 98%;               /* Light gray for cards */
  --card-foreground: 0 0% 9%;     /* Dark text on cards */
  --border: 220 13% 91%;          /* Light border */
  
  /* Muted Colors */
  --muted: 220 10% 95%;           /* Very light gray */
  --muted-foreground: 220 10% 40%; /* Medium gray text */
  
  /* Secondary Colors */
  --secondary: 220 8% 92%;        /* Light gray */
  --secondary-foreground: 220 15% 20%; /* Dark blue text */
  
  /* Supporting Colors */
  --success: 140 60% 45%;         /* Green for success */
  --destructive: 0 84% 60%;       /* Red for errors */
  --destructive-foreground: 0 0% 98%;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing Scale */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  --spacing-3xl: 4rem;     /* 64px */
  
  /* Border Radius */
  --radius: 0.5rem;        /* 8px */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-lg: 1rem;       /* 16px */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* Dark mode variables (if needed later) */
@media (prefers-color-scheme: dark) {
  :root {
    --background: 220 25% 8%;
    --foreground: 0 0% 95%;
    --card: 220 25% 12%;
    --card-foreground: 0 0% 95%;
    --border: 220 25% 18%;
    --muted: 220 25% 22%;
    --muted-foreground: 0 0% 65%;
    --secondary: 220 25% 25%;
    --secondary-foreground: 0 0% 85%;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 2.5rem;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: hsl(var(--background));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo h1 {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin: 0;
  font-weight: 700;
}

.logo span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Navigation */
.nav-desktop {
  display: none;
  gap: var(--spacing-lg);
}

.nav-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(var(--primary));
  transition: width var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: hsl(var(--foreground));
  transition: all var(--transition-normal);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 600;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid hsl(var(--border));
  transition: color var(--transition-fast);
}

.nav-link-mobile:hover {
  color: hsl(var(--primary));
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Section Padding */
.section-padding {
  padding: var(--spacing-3xl) 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-section:hover .hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(var(--primary) / 0.7) 0%,
    hsl(var(--accent) / 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-2xl);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Hero Buttons Special Styling */
.hero-section .btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-color: white;
  color: white;
}

.hero-section .btn-outline:hover {
  background-color: white;
  color: hsl(var(--primary));
}

.hero-section .btn-primary {
  background-color: white;
  color: hsl(var(--primary));
}

.hero-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Steps Process */
.steps-container {
  margin-bottom: var(--spacing-2xl);
}

.steps-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

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

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-item {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: hsl(var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
  transition: all var(--transition-normal);
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(6deg);
  box-shadow: var(--shadow-lg);
}

.step-title {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.step-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.popular-program {
  border-color: hsl(var(--primary));
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.program-header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.program-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.program-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.program-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.program-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.program-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.program-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.program-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

/* Why Choose Us Section */
.why-section {
  background-color: hsl(var(--muted) / 0.3);
}

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

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: hsl(var(--card));
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.benefit-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
  background-color: hsl(var(--muted) / 0.3);
}

.download-btn {
  margin-top: var(--spacing-md);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.popular-pricing {
  border-color: hsl(var(--primary));
  transform: scale(1.05);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.pricing-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.pricing-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.pricing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.pricing-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

/* Additional Options */
.additional-options {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.options-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

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

@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-item {
  padding: var(--spacing-md);
  background-color: hsl(var(--muted));
  border-radius: var(--radius);
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-xs);
}

.option-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.option-price {
  font-weight: 600;
  color: hsl(var(--primary));
  font-size: 0.875rem;
}

.option-description {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Payment Info */
.payment-info {
  text-align: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.payment-item {
  padding: var(--spacing-md);
  background-color: hsl(var(--muted) / 0.5);
  border-radius: var(--radius);
}

.payment-item h4 {
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.payment-status {
  color: hsl(var(--primary));
  font-weight: 600;
}

.payment-status-no {
  color: hsl(var(--muted-foreground));
  font-weight: 600;
}

.payment-notes {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.payment-notes p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Testimonials Section */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 700;
}

.rating-count {
  color: hsl(var(--muted-foreground));
}

.success-image-container {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.success-image {
  max-width: 24rem;
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: all var(--transition-slow);
}

.success-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

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

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: hsl(var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.author-name {
  font-weight: 600;
}

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

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-item {
  padding: var(--spacing-lg);
}

.highlight-item h4 {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.highlight-item p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

/* Team Section */
.team-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .team-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: var(--spacing-sm);
}

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

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.instructor-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

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

.instructor-photo {
  margin-bottom: var(--spacing-lg);
}

.instructor-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  transition: all var(--transition-normal);
}

.instructor-card:hover .instructor-image {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.instructor-avatar {
  width: 6rem;
  height: 6rem;
  background-color: hsl(var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.instructor-name {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.instructor-role {
  color: hsl(var(--primary));
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.instructor-experience {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
}

.instructor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.specialty-badge {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

.instructor-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.instructor-certifications {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.instructor-certifications h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

.instructor-certifications ul {
  list-style: none;
}

.instructor-certifications li {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: var(--spacing-xs);
}

.instructor-philosophy {
  background-color: hsl(var(--muted));
  padding: var(--spacing-md);
  border-radius: var(--radius);
}

.philosophy-text {
  font-size: 0.75rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.team-philosophy {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.philosophy-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.team-philosophy .philosophy-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 1rem;
  font-style: normal;
}

/* FAQ Section */
.faq-section {
  background-color: hsl(var(--muted) / 0.3);
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto var(--spacing-2xl);
}

.faq-item {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-lg);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.125rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background-color: hsl(var(--muted) / 0.3);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  transition: transform var(--transition-normal);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: hsl(var(--primary));
}

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  border-top: 1px solid hsl(var(--border));
  margin-top: var(--spacing-sm);
}

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

.faq-contact-cta {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
}

.cta-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.cta-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: var(--spacing-md);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Student Portal Section */
.student-portal-section {
  background-color: hsl(var(--muted) / 0.3);
}

.portal-container {
  max-width: 32rem;
  margin: 0 auto;
}

.login-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.login-card h3 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.login-form {
  margin-bottom: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

.portal-features h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.portal-features ul {
  list-style: none;
}

.portal-features li {
  padding: var(--spacing-xs) 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Contact Section */
.contact-section {
  background-color: hsl(var(--muted) / 0.3);
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-container {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.form-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: var(--spacing-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  transition: all var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 1.5rem;
  padding: var(--spacing-sm);
  background-color: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.contact-details p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.contact-note {
  font-size: 0.75rem !important;
  color: hsl(var(--muted-foreground));
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.map-card {
  flex-direction: column;
  align-items: stretch;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.map-info {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.map-info p {
  margin-bottom: var(--spacing-xs);
}

/* Footer */
.footer {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h3,
.footer-section h4 {
  color: hsl(var(--primary));
  margin-bottom: var(--spacing-md);
}

.footer-section p {
  margin-bottom: var(--spacing-xs);
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.footer-section ul li a:hover {
  opacity: 1;
  color: hsl(var(--primary));
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.social-link {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.social-link:hover {
  opacity: 1;
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--background) / 0.2);
  padding-top: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  text-align: center;
}

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

.footer-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: hsl(var(--primary));
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin: 0;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Scroll offset for fixed header */
section[id] {
  scroll-margin-top: 5rem;
}

/* Loading states */
.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: hsl(var(--background) / 0.8);
  border-radius: inherit;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Responsive utilities */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .mobile-menu-btn,
  .nav-mobile {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    height: 50vh;
  }
  
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
}
