/* Light Theme 2025: Warm, inviting palette with modern gradients */
:root {
  /* Light Theme Colors */
  --bg-primary: #f8fafc;           /* Soft off-white background */
  --bg-secondary: #ffffff;         /* Pure white for cards */
  --surface: #f1f5f9;             /* Light gray surface */
  --card-bg: #ffffff;             /* White card backgrounds */
  --primary: #3b82f6;             /* Vibrant blue primary */
  --primary-light: #dbeafe;       /* Light blue for accents */
  --primary-dark: #1d4ed8;        /* Darker blue for depth */
  --secondary: #1d4ed8;           /* Fresh green secondary */
  --accent: #f59e0b;              /* Warm amber accent */
  --accent-light: #fef3c7;        /* Light amber */
  --text-primary: #1e293b;        /* Dark slate for main text */
  --text-secondary: #64748b;      /* Medium slate for secondary text */
  --text-muted: #94a3b8;          /* Light slate for muted text */
  --border: #e2e8f0;              /* Light border color */
  --border-hover: #cbd5e1;        /* Hover border */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); /* Subtle shadow */
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); /* Medium shadow */
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* Large shadow */
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); /* Extra large shadow */
  --radius-sm: 6px;               /* Small radius */
  --radius: 12px;                 /* Standard radius */
  --radius-lg: 20px;              /* Large radius */
  --radius-xl: 24px;              /* Extra large radius */
  --max-width: 1200px;            /* Maximum content width */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
}

p.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

#primary-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

#primary-nav li {
  margin: 0;
}

#primary-nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

#primary-nav a:hover,
#primary-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
  transition: var(--transition);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  color: rgba(1, 33, 86, 0.822) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: 2px solid var(--border);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 3px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.hero-visual {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.subtitle {
  color: var(--text-secondary);
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  color: var(--primary);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  color: white;
}

.btn.secondary {
  background: var(--surface);
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn.secondary:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

.hero-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkle 3s infinite;
}

.sparkle:nth-child(1) {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  width: 15px;
  height: 15px;
  top: 60%;
  right: 30%;
  animation-delay: 1s;
}

.sparkle:nth-child(3) {
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 60%;
  animation-delay: 2s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* Section Styles */
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.light-section {
  background: var(--bg-secondary);
}

.exam-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-primary) 100%);
}

/* Grid Systems */
.grid-3, .about-grid, .programs-grid, .exam-grid, .instructors-grid, .pricing-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.section-header {
  margin-bottom: 3rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.light-section {
  background: var(--bg-secondary);
}

.exam-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-primary) 100%);
}

/* Grid Systems */
.grid-3, .about-grid, .programs-grid, .exam-grid, .instructors-grid, .pricing-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.section-header {
  margin-bottom: 3rem;
}

/* Card Styles */
.card, .about-card, .program-card, .instructor-card, .testimonial-card, .price-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before,
.about-card::before,
.program-card::before,
.instructor-card::before,
.testimonial-card::before,
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover,
.about-card:hover,
.program-card:hover,
.instructor-card:hover,
.testimonial-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card:hover::before,
.about-card:hover::before,
.program-card:hover::before,
.instructor-card:hover::before,
.testimonial-card:hover::before,
.price-card:hover::before {
  opacity: 1;
}

/* About Section */
.about-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}

/* Programs Section */
.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.program-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition);
}

.program-card:hover .program-image {
  transform: scale(1.05);
}

.program-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.program-card.featured::before {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag.primary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag.secondary {
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag.accent {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Exam Section */
.exam-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  background: #fff;
}

.exam-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  transition: var(--transition, 0.3s ease);
  border-radius: 50%;
}

.exam-card:hover .exam-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.exam-card.custom {
  background: linear-gradient(135deg, var(--primary-light, #a1c4fd), var(--secondary, #c2e9fb));
  color: var(--text-primary, #333);
}

.custom-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Instructors Section */
.instructors-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.instructor-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.instructor-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-secondary);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-content {
  flex: 1;
}

.instructor-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.role {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.instructor-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.price-card {
  text-align: center;
  position: relative;
}

.price-header {
  position: relative;
  margin-bottom: 1.5rem;
}

.price-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.tag.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: white;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: scale(1.02);
}

.price-card.featured .price {
  color: var(--secondary);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  vertical-align: top;
}

.features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 2rem;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1rem;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  font-weight: 500;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-author {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Gallery */
.gallery {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  display: block;
}

.section-title > h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #192A3D;
}

.button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* FAQ Section */
.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.faq-item details {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.faq-item details:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-right: 1rem;
  position: relative;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: var(--bg-secondary);
}

.form-group.focused {
  position: relative;
}

.form-group.focused::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.form-group.focused::after {
  transform: scaleX(1);
}

.form-footer {
  margin-top: 2rem;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.privacy-note input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.btn.full-width {
  width: 100%;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.info-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* .social-links a {
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
} */

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff6600; /* change color on hover */
}


.availability-note {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand .logo {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: none;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Animations */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .instructors-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav {
    padding: 1rem;
  }
  
  #primary-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  
  #primary-nav.open {
    display: flex;
    transform: translateY(0);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .title {
    font-size: 2rem;
  }
  
  .actions {
    justify-content: center;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .card, .about-card, .program-card, .instructor-card, .testimonial-card, .price-card {
    padding: 1.5rem;
  }
  
  .instructor-card {
    flex-direction: column;
    text-align: center;
  }
  
  .instructor-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
  }
  
  .program-image,
  .price-image,
  .card-image {
    height: 150px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .pricing-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .features {
    text-align: center;
  }
  
  .features li {
    padding-left: 0;
    justify-content: center;
  }
  
  .features li::before {
    position: static;
    margin-right: 0.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
details:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --text-secondary: #000000;
    --text-muted: #333333;
  }
  
  .btn {
    border-width: 2px;
  }
}

