/* ============================================
   1. CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Core Colors */
  --background: 0 0% 99%;
  --foreground: 222 47% 11%;
  
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;
  
  --primary: 222 47% 11%;
  --primary-foreground: 43 30% 96%;
  
  --secondary: 220 14% 96%;
  --secondary-foreground: 222 47% 11%;
  
  --muted: 220 14% 96%;
  --muted-foreground: 220 9% 46%;
  
  /* Accent (Blue) */
  --accent: 201 75% 65%;
  --accent-foreground: 0 0% 100%;
  
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  
  /* Utility */
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 201 75% 65%;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-sm: 0.25rem;
  
  /* Custom Design Tokens */
  --navy: 222 47% 11%;
  --navy-light: 222 30% 20%;
  --cream: 40 33% 97%;
  --slate: 220 9% 46%;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(222 47% 8%) 0%, hsl(222 47% 15%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(201 75% 65%) 0%, hsl(201 75% 55%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(220 14% 98%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsl(222 47% 11% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(222 47% 11% / 0.1), 0 2px 4px -2px hsl(222 47% 11% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(222 47% 11% / 0.1), 0 4px 6px -4px hsl(222 47% 11% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(222 47% 11% / 0.1), 0 8px 10px -6px hsl(222 47% 11% / 0.1);
  --shadow-accent: 0 4px 14px 0 hsl(201 75% 65% / 0.3);
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

/* ============================================
   2. CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

/* Headings */
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-4xl { font-size: 2.25rem; line-height: 1.15; }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.text-2xl { font-size: 1.5rem; line-height: 1.25; }
.text-xl { font-size: 1.25rem; line-height: 1.3; }
.text-lg { font-size: 1.125rem; line-height: 1.4; }
.text-base { font-size: 1rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-xs { font-size: 0.75rem; line-height: 1.5; }

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Section Typography */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; margin-bottom: 1rem;}
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; margin-bottom: 1rem;}
}

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

@media (min-width: 768px) {
  .section-subtitle { font-size: 1.25rem; }
}

/* Text Colors */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)) !important; }
.text-primary-foreground-muted { color: hsl(var(--primary-foreground) / 0.7) !important; }

/* Text Gradient */
.text-gradient-accent {
  background: linear-gradient(to right, hsl(var(--accent)), hsl(201 75% 75%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   4. LAYOUT & CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Grid Systems */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Spacing */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Primary Button (Dark) */
.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

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

/* Accent Button (Blue) */
.btn-accent {
  background: var(--gradient-accent);
  color: hsl(var(--accent-foreground));
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px 0 hsl(201 75% 65% / 0.4);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

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

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  color: hsl(var(--foreground) / 0.8);
}

.btn-ghost:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

/* Hero Buttons (Large) */
.btn-hero {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient-accent);
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-accent);
  border-radius: var(--radius);
}

.btn-hero:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px 0 hsl(201 75% 65% / 0.4);
  transform: translateY(-2px);
}

.btn-hero-outline {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: transparent;
  color: hsl(var(--primary-foreground));
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  border-radius: var(--radius);
}

.btn-hero-outline:hover {
  background-color: hsl(var(--primary-foreground) / 0.1);
  border-color: hsl(var(--primary-foreground) / 0.5);
}

/* Nav Accent Button */
.btn-nav-accent {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--gradient-accent);
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-accent);
  border-radius: var(--radius);
}

.btn-nav-accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px 0 hsl(201 75% 65% / 0.4);
}

/* Button Sizes */
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Icon Button */
.btn-icon {
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

/* Full Width Button */
.btn-full {
  width: 100%;
}

/* ============================================
   6. CARDS
   ============================================ */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
}

.card-hover {
  transition: all 0.3s ease;
}

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

.card-header {
  padding: 1.5rem;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-footer {
  padding: 1.5rem;
  padding-top: 0;
}

/* ============================================
   7. BADGES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.badge-accent {
  background-color: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
}

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

.badge-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--accent) / 0.3);
  color: hsl(var(--accent));
}

.badge-outline-light {
  background-color: transparent;
  border: 1px solid hsl(var(--primary-foreground) / 0.3);
  color: hsl(var(--primary-foreground));
}

.badge-accent-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--accent) / 0.3);
  color: hsl(var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Pulsing Badge */
.badge-pulse {
  position: relative;
  background-color: hsl(var(--accent) / 0.15);
  color: hsl(var(--accent));
}

.badge-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: hsl(var(--accent) / 0.3);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Badge Variants */
.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-lg {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   8. FORMS
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-label .required {
  color: hsl(var(--destructive));
}

/* Ensure form elements inherit font family */
input,
textarea,
select {
  font-family: inherit;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* Form with Accent Border */
.form-accent-border {
  border-left: 4px solid hsl(var(--accent));
  padding-left: 1.5rem;
}

/* Form Error State */
.form-input.error,
.form-textarea.error,
.form-select.error,
.form-input-error,
.form-group-error .form-input,
.form-group-error .form-select,
.form-group-error .form-textarea {
  border-color: hsl(var(--destructive));
}

.form-input-success,
.form-group-success .form-input,
.form-group-success .form-select,
.form-group-success .form-textarea {
  border-color: hsl(142 76% 36%);
}

.form-error {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: hsl(var(--destructive));
}

.form-group-error .form-error {
  display: block;
}

.form-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-code-select {
  width: auto;
  min-width: 90px;
  flex-shrink: 0;
}

.phone-number-input {
  flex: 1;
}

/* Form Sections */
.form-section {
  margin-bottom: 2.5rem;
}

.form-section:last-of-type {
  margin-bottom: 1.5rem;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid hsl(var(--border));
}

.form-section-title svg {
  color: hsl(var(--accent));
}

/* Form Actions */
.form-actions {
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.form-actions .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .form-actions .btn {
    width: auto;
  }
}

/* Form Success Card */
.form-success-card {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: hsl(142 76% 36% / 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: hsl(142 76% 36%);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1rem;
}

.form-success-message {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   9. NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-scrolled {
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 1024px) {
  .nav { height: 5rem; }
}

.nav-logo {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 1024px) {
  .nav-logo { height: 3rem; }
}

/* Nav Actions (hidden on mobile, shown on desktop) */
.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  border-radius: var(--radius);
  transition: color 0.2s ease;
}

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

.nav-link.active {
  color: hsl(var(--accent));
}

/* Nav Link Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: hsl(var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown.open .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content {
  width: 16rem;
  padding: 0.25rem 0;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background-color: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}

.nav-dropdown-item.disabled {
  color: hsl(var(--muted-foreground));
  cursor: not-allowed;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  padding: 0.5rem;
}

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

.mobile-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-nav {
  padding: 1rem 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: hsl(var(--accent));
}

/* Mobile Dropdown */
.mobile-dropdown {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.mobile-dropdown .mobile-nav-link {
  border-bottom: none;
}

.mobile-dropdown .dropdown-icon {
  transition: transform 0.2s ease;
}

.mobile-dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  padding: 0.5rem 0;
  background-color: hsl(var(--secondary) / 0.3);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.mobile-dropdown.open .mobile-dropdown-content {
  display: block;
  animation: fadeIn 0.2s ease;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
  border-radius: var(--radius);
}

.mobile-dropdown-item:hover {
  color: hsl(var(--accent));
  background-color: hsl(var(--accent) / 0.05);
}

.mobile-dropdown-item.disabled {
  color: hsl(var(--muted-foreground) / 0.6);
  cursor: not-allowed;
}

/* Mobile Nav Actions */
.mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid hsl(var(--border));
}

.mobile-nav-actions .flex-1 {
  flex: 1;
}

/* ============================================
   10. FOOTER
   ============================================ */
.footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--primary-foreground));
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--accent));
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: hsl(var(--accent));
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.footer-contact-list {
  margin-bottom: 0;
}

.footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: hsl(var(--primary-foreground) / 0.1);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.footer-logo-separator {
  color: hsl(var(--accent));
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright { text-align: right; }
}

/* ============================================
   11. MODALS & DIALOGS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: hsl(0 0% 0% / 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.modal-overlay.open,
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.modal-overlay.open .modal,
.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: hsl(var(--secondary));
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

/* Search Modal */
.search-modal .modal {
  max-width: 36rem;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.search-input:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.2);
}

.search-results {
  margin-top: 1rem;
  max-height: 16rem;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: hsl(var(--accent) / 0.1);
}

.search-result-title {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.search-result-path {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.search-quick-links {
  margin-top: 1rem;
}

.search-quick-links p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.search-quick-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   12. UTILITY CLASSES
   ============================================ */
/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

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

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Margins */
.mx-auto { margin-left: auto; margin-right: auto; margin-bottom: 2rem;}
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }

/* Padding */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }

/* Width/Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Border Radius */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: calc(var(--radius) + 0.25rem); }
.rounded-xl { border-radius: calc(var(--radius) + 0.5rem); }
.rounded-full { border-radius: 9999px; }

/* Separators */
.separator {
  height: 1px;
  background-color: hsl(var(--border));
}

.separator-vertical {
  width: 1px;
  height: 2rem;
  background-color: hsl(var(--border));
}

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

/* Section Utilities */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: hsl(var(--secondary) / 0.3);
}

.section-alt-30 {
  background: hsl(var(--secondary) / 0.3);
}

.section-secondary {
  background: hsl(var(--secondary));
}

.bg-secondary-subtle {
  background: hsl(var(--secondary) / 0.3);
}

/* Background Accent Blue for Hero (sub-pages) */
.bg-accent-hero {
  background-color: hsl(231 60% 28%);
}

/* Background Gradient for Hero */
.bg-gradient-hero {
  background: var(--gradient-hero);
}

/* ============================================
   13. RESPONSIVE UTILITIES
   ============================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   14. ANIMATIONS (Keyframes)
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(-50%) translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Slide Down Animation */
.animate-slide-down {
  animation: slideDownAnim 0.3s ease-out forwards;
}

@keyframes slideDownAnim {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PART 2: HOME PAGE STYLES
   ============================================ */

/* ============================================
   15. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.hero-gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary)) 0%, transparent 30%);
}

.hero-decorative {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  background-color: hsl(var(--accent) / 0.05);
}

.hero-decorative-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
}

.hero-decorative-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
}

.hero-container {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .hero-container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 2;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
    gap: 2rem;
    order: 1;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.2);
  width: fit-content;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-badge {
    margin: 0;
  }
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: hsl(var(--accent));
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground) / 0.8);
}

/* Hero Title */
.hero-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  line-height: 1.15;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.25rem; }
}

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

@media (min-width: 1024px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 3.75rem; }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1rem;
  color: hsl(var(--primary-foreground) / 0.7);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.75;
}

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

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
  }
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

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

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

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

/* Hero Video Card */
.hero-video-wrapper {
  order: 1;
}

@media (min-width: 1024px) {
  .hero-video-wrapper {
    order: 2;
  }
}

.hero-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background-color: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--accent) / 0.2);
  box-shadow: 0 25px 50px -12px hsl(var(--accent) / 0.1);
}

.hero-video-thumbnail {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0.4);
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 10px 25px hsl(var(--accent) / 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hero-play-btn {
    width: 5rem;
    height: 5rem;
  }
}

.hero-play-btn:hover {
  background-color: hsl(var(--accent) / 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero-play-btn svg {
  margin-left: 0.25rem;
}

.hero-video-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--accent) / 0.2);
}

@media (min-width: 1024px) {
  .hero-video-label {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
  }
}

.hero-video-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .hero-video-title { font-size: 0.875rem; }
}

.hero-video-duration {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.125rem;
}

@media (min-width: 1024px) {
  .hero-video-duration { margin-top: 0.25rem; }
}

/* Hero Academy Stats */
.academy-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
}

.hero-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: hsl(var(--primary-foreground) / 0.2);
}

/* Academy Hero Decoratives */
.academy-hero {
  position: relative;
  overflow: hidden;
}

.absolute-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-blur-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: hsl(var(--accent) / 0.1);
}

.hero-blur-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: hsl(var(--accent) / 0.05);
}

.radial-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, hsl(var(--accent) / 0.1), transparent);
}

.badge-accent-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
  font-size: 0.875rem;
  font-weight: 500;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  animation: bounce 1s infinite;
}

@media (min-width: 1024px) {
  .hero-scroll-indicator { display: flex; }
}

.scroll-indicator {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsl(var(--primary-foreground) / 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: hsl(var(--accent));
  border-radius: 9999px;
}

/* ============================================
   16. HIGHLIGHTS SECTION (Bento Grid)
   ============================================ */
.highlights {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 10rem;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .highlight-card { padding: 2rem; }
}

.highlight-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--accent) / 0.3);
}

.highlight-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--accent) / 0.1);
  width: fit-content;
  margin-bottom: 1rem;
}

.highlight-icon svg {
  color: hsl(var(--accent));
}

.highlight-content {
  margin-top: auto;
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .highlight-title { font-size: 1.25rem; }
}

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

/* ============================================
   17. PROGRAMS SECTION
   ============================================ */
.programs {
  padding: 6rem 0;
  background-color: hsl(var(--secondary) / 0.3);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header .section-title {
  margin-bottom: 1rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-header.text-center {
  text-align: center;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.program-card {
  display: flex;
  flex-direction: column;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  text-decoration: none;
}

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

.program-card:hover .program-title {
  color: hsl(var(--accent));
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-card:hover .program-link svg {
  transform: translateX(4px);
}

/* Disabled Card (Coming Soon) */
.program-card-disabled {
  opacity: 0.75;
  filter: grayscale(30%);
  cursor: not-allowed;
}

.program-card-disabled:hover {
  box-shadow: none;
  transform: none;
}

.program-card-disabled:hover .program-title {
  color: hsl(var(--foreground));
}

.program-card-disabled:hover .program-image img {
  transform: none;
}

.program-coming-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.program-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--card)) 0%, transparent 100%);
}

.program-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.program-tag-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.program-tag-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--primary-foreground) / 0.5);
  color: hsl(var(--primary-foreground));
}

.program-header {
  padding: 1.5rem;
  padding-bottom: 0.5rem;
}

.program-icon {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--accent) / 0.1);
  margin-bottom: 0.5rem;
}

.program-icon svg {
  color: hsl(var(--accent));
}

.program-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.2s ease;
}

.program-body {
  padding: 0 1.5rem 1rem;
  flex: 1;
}

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

.program-footer {
  padding: 0 1.5rem 1.5rem;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
  transition: color 0.2s ease;
}

.program-link svg {
  transition: transform 0.2s ease;
}

/* ============================================
   18. GLOBAL IMPACT SECTION
   ============================================ */
.global-impact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.global-impact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .global-impact-bg {
    background-attachment: scroll;
  }
}

.global-impact-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0.85);
}

.global-impact-content {
  position: relative;
  z-index: 10;
}

.global-impact .section-header {
  margin-bottom: 3rem;
}

/* Initiatives Grid */
.initiatives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

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

/* Initiative Card */
.initiative-card {
  background-color: hsl(var(--card) / 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.initiative-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: var(--radius);
  background-color: hsl(var(--accent) / 0.1);
  margin-bottom: 1rem;
}

.initiative-icon svg {
  color: hsl(var(--accent));
}

.initiative-title-home {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1rem;
}

.initiative-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Global Impact CTA */
.global-impact-cta {
  text-align: center;
}

/* ============================================
   19. TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 6rem 0;
  background-color: hsl(var(--secondary) / 0.3);
}

.testimonials-carousel {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
  touch-action: pan-y;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

.testimonial-quote-icon {
  margin-bottom: 1rem;
}

.testimonial-quote-icon svg {
  color: hsl(var(--accent) / 0.3);
}

.testimonial-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  color: hsl(var(--accent));
  fill: hsl(var(--accent));
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--accent));
}

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

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
  cursor: pointer;
}

.carousel-btn:hover:not(:disabled) {
  background-color: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  border-color: hsl(var(--accent) / 0.3);
}

.carousel-btn:disabled {
  cursor: not-allowed;
}

/* CTA Section - Ready to Begin */
.cta-section {
  padding: 5rem 0;
  background: hsl(var(--secondary));
}

.cta-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta-content .badge {
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

/* ============================================
   PART 3: SUB-PAGE STYLES
   ============================================ */

/* ============================================
   20. PAGE HERO (Consolidated Sub-Page Hero)
   ============================================ */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  margin-top: 4rem;
}

.page-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero-title { font-size: 3rem; }
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  line-height: 1.75;
}

/* ============================================
   21. ABOUT PAGE STYLES
   ============================================ */

/* Legacy About Hero */
.about-hero {
  padding: 6rem 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
}

.about-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-hero-title {
    font-size: 3rem;
  }
}

.about-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  line-height: 1.75;
}

/* Vision & Mission */
.vision-mission {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.vm-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.vm-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 2rem;
}

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vm-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--accent) / 0.1);
}

.vm-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
}

.vm-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.vm-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Fikrmand Philosophy */
.fikrmand {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.fikrmand-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 768px) {
  .fikrmand-card {
    padding: 3rem;
  }
}

.fikrmand-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .fikrmand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.fikrmand-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--accent) / 0.1);
  margin-bottom: 1rem;
}

.fikrmand-icon {
  color: hsl(var(--accent));
}

.fikrmand-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.fikrmand-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1rem;
}

.fikrmand-text:last-child {
  margin-bottom: 0;
}

.fikrmand-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fikrmand-feature {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border) / 0.5);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.feature-icon {
  color: hsl(var(--accent));
}

.feature-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
}

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

/* Core Values */
.core-values {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.value-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.value-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--accent) / 0.1);
  margin-bottom: 1rem;
}

.value-icon {
  color: hsl(var(--accent));
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

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

/* Accreditation */
.accreditation {
  padding: 5rem 0;
}

.accreditation-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 768px) {
  .accreditation-card {
    padding: 3rem;
  }
}

.accreditation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .accreditation-content {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.accreditation-badge {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditation-icon {
  color: hsl(var(--accent));
}

.accreditation-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.accreditation-partner {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.accreditation-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1rem;
}

.accreditation-text:last-of-type {
  margin-bottom: 1.5rem;
}

.accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .accreditation-badges {
    justify-content: flex-start;
  }
}

.accred-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.accred-badge-icon {
  color: hsl(var(--accent));
}

/* Leadership */
.leadership {
  padding: 5rem 0;
  background-color: hsl(var(--background));
}

.leadership-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.leader-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
}

.leader-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-info {
  padding: 1.5rem;
  text-align: center;
}

.leader-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.leader-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

.leader-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

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

/* Head of School Section */
.head-of-school {
  padding: 1rem 0;
}

.head-of-school-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .head-of-school-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.head-quote-box {
  background: linear-gradient(135deg, hsl(231 60% 28%) 0%, hsl(267 40% 35%) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  color: hsl(var(--primary-foreground));
}

.head-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.3;
}

.head-quote-mark svg {
  fill: hsl(var(--primary-foreground));
}

.head-quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .head-quote-text {
    font-size: 1.35rem;
  }
}

.head-bio {
  margin-top: 2rem;
}

.head-bio p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.head-bio p:last-child {
  margin-bottom: 0;
}

.head-of-school-image {
  display: flex;
  justify-content: center;
}

.head-of-school-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.head-title-box {
  text-align: center;
  padding-bottom: 3rem;
}

.head-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0.75rem 0 0.25rem;
}

.head-position {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  margin: 0;
}

/* Faculty Section */
.faculty {
  padding: 4rem 0;
}

.faculty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, hsl(231 60% 28%) 0%, hsl(231 60% 35%) 100%);
  padding: 1.25rem 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.faculty-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin: 0;
}

.faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
}

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

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

.faculty-member {
  padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.faculty-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem;
}

.faculty-credential {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin: 0;
}

.faculty-institution {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin: 0;
}

.faculty-more {
  border-bottom: none;
}

.faculty-more .faculty-name {
  text-decoration: none;
  color: hsl(var(--accent));
}

/* ============================================
   22. ACADEMICS PAGE STYLES
   ============================================ */

/* Academics Hero */
.academics-hero,
.program-hero {
  padding: 6rem 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
}

.academics-hero-content,
.program-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.academics-hero-title,
.program-hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .academics-hero-title,
  .program-hero-title { font-size: 3rem; }
}

.academics-hero-subtitle,
.program-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  line-height: 1.75;
}

/* Programs Grid Large */
.programs-grid-lg {
  display: grid;
  gap: 2rem;
}

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

.program-card-lg {
  display: flex;
  flex-direction: column;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.program-card-lg.program-card-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.program-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card-lg:hover .program-card-image img {
  transform: scale(1.05);
}

.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.6), transparent);
}

.program-card-overlay-dark {
  background: hsl(var(--primary) / 0.7);
}

.program-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-radius: 9999px;
}

.program-card-tag-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.program-card-tag-soon {
  background: hsl(var(--muted-foreground));
}

.program-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.program-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.program-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  color: hsl(var(--accent));
}

.program-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.program-card-description {
  flex: 1;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1rem;
}

.program-features {
  margin-bottom: 1.5rem;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.program-features li svg {
  flex-shrink: 0;
  color: hsl(var(--accent));
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--accent));
  transition: gap 0.2s ease;
}

.program-card-lg:hover .program-card-link {
  gap: 0.75rem;
}

.program-card-link-disabled {
  color: hsl(var(--muted-foreground));
}

/* Program Main Section */
.program-main { padding: 4rem 0; }

.program-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

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

.program-content { space-y: 1.5rem; }
.program-content > * + * { margin-top: 1.5rem; }

/* Stats Grid */
.program-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: hsl(var(--accent));
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

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

/* Eligibility Box */
.eligibility-box {
  padding: 1.5rem;
  background: hsl(var(--accent) / 0.05);
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: var(--radius);
}

.eligibility-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eligibility-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.eligibility-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--accent));
}

/* Roadmap Card & Accordion */
.roadmap-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .roadmap-card { padding: 2rem; }
}

.roadmap-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.accordion { display: flex; flex-direction: column; gap: 1rem; }

.accordion-item {
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item-open {
  background: hsl(var(--secondary) / 0.5);
  padding-bottom: 1rem;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
}

.accordion-header-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.accordion-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.accordion-item-title {
  font-weight: 500;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
}

.accordion-item-duration {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.accordion-icon {
  flex-shrink: 0;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
}

.accordion-content {
  display: none;
  padding: 0 1rem 1rem 3.5rem;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease;
}

.accordion-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.accordion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.accordion-tag {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  background: hsl(var(--accent) / 0.2);
  border-radius: 0.25rem;
}

.accordion-milestone {
  padding: 0.75rem;
  background: hsl(var(--accent) / 0.05);
  border: 1px solid hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--accent));
}

/* Curriculum Section */
.curriculum-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.curriculum-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.curriculum-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--accent));
}

.curriculum-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.curriculum-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.curriculum-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(var(--accent));
}

.curriculum-list li div {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.curriculum-list li strong {
  color: hsl(var(--foreground));
}

/* Holistic Section (Parallax) */
.holistic-section {
  position: relative;
  padding: 6rem 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.holistic-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.85);
}

.holistic-container { position: relative; z-index: 1; }

.holistic-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .holistic-title { font-size: 2.5rem; }
}

.holistic-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

.holistic-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.holistic-card {
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.holistic-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.holistic-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.holistic-card-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Accreditations Grid */
.accreditations-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.accreditation-card-sm {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.accreditation-card-sm .badge { margin-bottom: 1rem; }

.accreditation-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.accreditation-card-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Careers Grid */
.careers-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

.career-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.career-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.career-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

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

/* Fee Structure */
.fee-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.fee-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.fee-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.fee-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.fee-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.25rem;
}

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

/* Post-Graduation */
.postgrad-grid {
  display: grid;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.postgrad-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
}

.postgrad-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.postgrad-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.postgrad-text {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.postgrad-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   23. SHORT COURSES PAGE STYLES
   ============================================ */

/* Courses Hero */
.courses-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
}

.courses-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.courses-hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .courses-hero-title { font-size: 3rem; }
}

.courses-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  max-width: 36rem;
  margin: 0 auto;
}

/* Filters Section */
.courses-filters-section {
  padding: 2rem 0;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  top: 4rem;
  z-index: 40;
}

.filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .filters-wrapper {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

/* Search Filter */
.filter-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  flex: 1;
  min-width: 200px;
}

.filter-search svg {
  color: hsl(var(--muted-foreground));
  flex-shrink: 0;
}

.filter-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  outline: none;
}

.filter-search-input::placeholder {
  color: hsl(var(--muted-foreground));
}

/* Filter Controls */
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.filter-group {
  position: relative;
}

.filter-select {
  appearance: none;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

.filter-select:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.2);
}

.filter-select:hover {
  border-color: hsl(var(--muted-foreground));
}

.filter-clear {
  gap: 0.25rem;
}

/* Filter Results */
.filter-results {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Courses Section */
.courses-section {
  padding: 3rem 0 5rem;
}

/* Courses Grid */
.courses-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

/* Course Card */
.course-card {
  display: flex;
  flex-direction: column;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-card:not(.course-coming-soon) {
  cursor: pointer;
}

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

.course-card.course-coming-soon {
  opacity: 0.85;
  cursor: default;
}

/* Course Image */
.course-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.4), transparent);
}

.course-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: hsl(var(--card) / 0.95);
  color: hsl(var(--foreground));
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.course-tag-online {
  background: hsl(var(--accent) / 0.9);
  color: hsl(var(--accent-foreground));
}

.course-tag-hybrid {
  background: hsl(142 76% 36% / 0.9);
  color: white;
}

.course-coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: hsl(var(--destructive));
  color: white;
  border-radius: 9999px;
}

/* Course Content */
.course-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.course-category,
.course-level {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
}

.course-level {
  background: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
}

.course-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.3;
}

.course-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
}

.course-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.course-topic-tag {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  background: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
  border-radius: 0.25rem;
}

.course-topic-more {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  background: hsl(var(--muted-foreground) / 0.1);
  color: hsl(var(--muted-foreground));
  border-radius: 0.25rem;
}

/* Course Footer */
.course-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.course-footer .btn {
  width: 100%;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.no-results-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background: hsl(var(--secondary));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
}

.no-results-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.no-results-text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* ============================================
   24. COURSE DETAIL PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-link {
  color: hsl(var(--primary-foreground) / 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.breadcrumb-separator {
  color: hsl(var(--primary-foreground) / 0.4);
  font-size: 0.875rem;
}

.breadcrumb-current {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 500;
}

/* Course Detail Hero */
.course-detail-hero {
  padding: 5rem 0 4rem;
  margin-top: 4rem;
}

.course-hero-content {
  max-width: 56rem;
}

.course-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.course-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.course-hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--accent));
  margin-bottom: 1.5rem;
}

.course-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary-foreground) / 0.7);
  font-size: 0.95rem;
}

.course-meta-item svg {
  flex-shrink: 0;
}

.course-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Course Content Section */
.course-content-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.course-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

/* Course Main Content */
.course-main-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.course-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.course-section-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Topics */
.course-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Curriculum Accordion */
.curriculum-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.curriculum-accordion .accordion-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--card));
  overflow: hidden;
}

.curriculum-accordion .accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.curriculum-accordion .accordion-trigger:hover {
  background: hsl(var(--secondary) / 0.5);
}

.accordion-trigger-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.module-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.module-title {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.curriculum-accordion .accordion-icon {
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.curriculum-accordion .accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.curriculum-accordion .accordion-content {
  display: none;
  padding: 0 1.5rem 1rem 4.5rem;
  color: hsl(var(--muted-foreground));
}

.curriculum-accordion .accordion-content.open {
  display: block;
}

/* Module Details in Accordion */
.module-details {
  padding-left: 0.5rem;
}

.module-description {
  color: hsl(var(--muted-foreground));
  margin: 0 0 1rem;
  font-style: italic;
}

.module-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-topics li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--foreground));
  font-size: 0.9rem;
  line-height: 1.5;
}

.module-topics li::before {
  content: "•";
  color: hsl(var(--accent));
  font-weight: bold;
  flex-shrink: 0;
}

/* Requirements List */
.course-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-requirements-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.course-requirements-list svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
}

/* Course Sidebar */
.course-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.course-sidebar-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.course-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

/* Instructor Card */
.instructor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.instructor-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsl(var(--accent) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.instructor-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

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

.instructor-bio {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Course Details List */
.course-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.course-detail-value {
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* Certification Card */
.course-certification-card {
  background: hsl(var(--accent) / 0.05);
  border-color: hsl(var(--accent) / 0.2);
}

.certification-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.certification-header svg {
  color: hsl(var(--accent));
}

.certification-header .course-sidebar-title {
  margin-bottom: 0;
}

.certification-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.certification-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.certification-text strong {
  color: hsl(var(--foreground));
}

.certification-bodies {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
}

.certification-bodies li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.certification-bodies li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--accent));
  font-weight: 600;
}

/* Topic Descriptions */
.topic-descriptions {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  gap: 0.75rem;
}

.topic-descriptions li {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.topic-descriptions li strong {
  color: hsl(var(--foreground));
}

/* Faculty List */
.faculty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faculty-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faculty-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Flexible Class Timings */
.class-timings-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.timing-option {
  display: flex;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: hsl(var(--secondary) / 0.5);
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

.timing-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--accent));
  white-space: nowrap;
}

.timing-value {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.timing-note {
  font-size: 0.875rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* Sidebar CTA */
.course-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Back Section */
.course-back-section {
  padding: 2rem 0;
  background: hsl(var(--secondary) / 0.3);
}

.course-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--accent));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.course-back-link:hover {
  color: hsl(var(--accent) / 0.8);
}

/* Course Objectives Section */
.course-category {
  margin-bottom: 3rem;
}

.course-category:last-child {
  margin-bottom: 0;
}

.course-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.course-category-header svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--accent));
}

.course-category-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.course-objectives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.course-objective-card {
  background: hsl(var(--muted) / 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
}

.course-objective-title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--accent));
  margin: 0 0 0.5rem;
}

.course-objective-purpose {
  font-style: italic;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.course-objective-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-objective-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.course-objective-list li:last-child {
  margin-bottom: 0;
}

.course-objective-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: hsl(var(--accent));
  font-weight: bold;
}

/* ============================================
   25. ONLINE ACADEMY PAGE STYLES
   ============================================ */

/* Course Trailers */
.trailers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.trailer-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
}

.trailer-thumbnail {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.trailer-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trailer-card:hover .trailer-thumbnail img {
  transform: scale(1.05);
}

.trailer-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trailer-card:hover .trailer-overlay {
  opacity: 1;
}

.trailer-play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent-foreground));
}

.trailer-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.trailer-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background: hsl(var(--primary) / 0.8);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
}

.trailer-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trailer-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

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

.trailer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.trailer-lessons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.trailer-lessons svg {
  color: hsl(var(--accent));
}

/* Free Course Section */
.free-course-section {
  position: relative;
}

.free-course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 56rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .free-course-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.free-course-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.free-course-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin: 0;
}

@media (min-width: 768px) {
  .free-course-title {
    font-size: 2.5rem;
  }
}

.free-course-description {
  color: hsl(var(--primary-foreground) / 0.7);
  margin: 0;
  line-height: 1.7;
}

.curriculum-number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: hsl(var(--accent) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.bonus-certification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--accent));
  font-weight: 500;
}

.enrollment-card {
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--accent) / 0.2);
  border-radius: var(--radius);
}

.enrollment-card-inner {
  padding: 2rem;
  text-align: center;
}

.enrollment-icon {
  color: hsl(var(--accent));
  margin-bottom: 1rem;
}

.enrollment-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.5rem;
}

.enrollment-subtitle {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1.5rem;
}

.enrollment-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0.75rem 0;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.resource-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
}

.resource-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.resource-type-badge {
  margin-bottom: 0.75rem;
}

.resource-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

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

/* Premium Courses Grid */
.premium-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.premium-course-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.premium-course-tile:hover {
  border-color: hsl(var(--accent) / 0.5);
}

.premium-price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.premium-course-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.premium-course-tile:hover .premium-course-icon {
  background: hsl(var(--accent) / 0.2);
}

.premium-course-name {
  font-weight: 500;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
}

.premium-course-category {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Instructors */
.instructors-group {
  margin-bottom: 3rem;
}

.instructors-group:last-child {
  margin-bottom: 0;
}

.instructors-group-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
}

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.instructor-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
  overflow: hidden;
}

.instructor-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-specialty {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Final CTA */
.final-cta-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-icon {
  color: hsl(var(--accent));
  margin-bottom: 1.5rem;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.5rem;
  }
}

.final-cta-description {
  color: hsl(var(--muted-foreground));
  margin: 0 0 2rem;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.final-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-feature svg {
  color: hsl(var(--accent));
}

/* ============================================
   26. ADMISSIONS & CONTACT PAGE STYLES
   ============================================ */

/* Admission Form Section */
.admission-form-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.admission-form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .admission-form-wrapper {
    padding: 3rem;
  }
}

/* Application Steps */
.application-steps {
  max-width: 48rem;
  margin: 0 auto;
}

.application-step {
  display: flex;
  gap: 1.5rem;
}

.step-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--accent));
  border-radius: 50%;
  color: hsl(var(--accent-foreground));
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  background: hsl(var(--accent) / 0.3);
  margin: 0.5rem 0;
  min-height: 2rem;
}

.step-content {
  flex: 1;
  padding-bottom: 2rem;
}

.step-number {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
  margin-bottom: 0.25rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.5rem;
}

.step-description {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin: 0;
}

/* Admissions step-number on same line */
.application-step .step-number {
  display: inline;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--accent));
}

/* Deadlines */
.deadlines-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.deadline-card {
  text-align: center;
  padding: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.deadline-card:hover {
  border-color: hsl(var(--accent));
  box-shadow: var(--shadow-md);
}

.deadline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(var(--accent) / 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: hsl(var(--accent));
}

.deadline-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 0.5rem;
}

.deadline-date {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.75rem;
}

/* Fee Table */
.fee-table-wrapper {
  max-width: 64rem;
  margin: 0 auto;
  overflow-x: auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th,
.fee-table td {
  padding: 1rem 1.5rem;
  text-align: left;
}

.fee-table thead {
  background: hsl(var(--secondary) / 0.5);
}

.fee-table th {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.fee-table tbody tr {
  border-top: 1px solid hsl(var(--border) / 0.5);
  transition: background-color 0.2s ease;
}

.fee-table tbody tr:hover {
  background: hsl(var(--secondary) / 0.3);
}

.fee-table td {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.fee-table .program-name {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.fee-table .fee-amount {
  font-weight: 600;
  color: hsl(var(--accent));
}

.fee-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .fee-footer {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Contact Hero */
.contact-hero {
  padding: 6rem 0 4rem;
  text-align: center;
}

.contact-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-hero-title {
    font-size: 3rem;
  }
}

.contact-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  line-height: 1.75;
  max-width: 36rem;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

/* Contact Grid */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

/* Contact Info Column */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-header {
  margin-bottom: 0;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.contact-info-subtitle {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin: 0;
}

/* Contact Info Cards Grid */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

/* Contact Info Card */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
}

.contact-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--accent) / 0.1);
}

.contact-icon {
  color: hsl(var(--accent));
}

.contact-card-content {
  flex: 1;
}

.contact-card-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-card-link {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-link:hover {
  color: hsl(var(--accent));
}

.contact-card-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  line-height: 1.5;
}

/* Department Contacts Card */
.department-card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: var(--radius);
}

.department-card-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.department-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.department-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.department-email {
  font-size: 0.875rem;
  color: hsl(var(--accent));
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.department-email:hover {
  opacity: 0.8;
}

/* Contact Form Card */
.contact-form-wrapper {
  height: 100%;
}

.contact-form-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-left: 4px solid hsl(var(--accent));
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Map Section */
.map-section {
  padding: 5rem 0;
}

.map-content {
  max-width: 72rem;
  margin: 0 auto;
}

.map-wrapper {
  aspect-ratio: 16 / 9;
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.5);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.map-footer {
  margin-top: 2rem;
  text-align: center;
}

.map-address {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.6;
}

.map-address strong {
  color: hsl(var(--foreground));
}

/* ============================================
   27. EVENTS PAGE STYLES
   ============================================ */

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

/* Event Card */
.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.event-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  height: 100%;
}

/* Event Badges Row */
.event-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Event Title */
.event-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  line-height: 1.4;
}

/* Event Description */
.event-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  line-height: 1.6;
}

/* Event Speaker */
.event-speaker {
  font-size: 0.875rem;
  color: hsl(var(--accent));
  font-weight: 500;
  margin: 0;
}

.event-speaker strong {
  font-weight: 500;
}

/* Event Meta Section */
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Event Meta Item */
.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.event-meta-item svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
}

/* Push button to bottom of card */
.event-card .btn-full {
  margin-top: auto;
}

/* Ensure proper card spacing on mobile */
@media (max-width: 767px) {
  .events-grid {
    gap: 1rem;
  }
  
  .event-card .card-body {
    padding: 1.25rem;
  }
}

/* ============================================
   28. GLOBAL INITIATIVES PAGE STYLES
   ============================================ */

/* Initiatives Section */
.initiatives-section {
  padding: 5rem 0;
  background: var(--color-background);
}

.initiatives-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.initiative-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .initiative-block {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .initiative-block-reverse {
    direction: rtl;
  }
  
  .initiative-block-reverse > * {
    direction: ltr;
  }
}

.initiative-image-wrapper {
  position: relative;
}

.initiative-image-accent {
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  opacity: 0.2;
  border-radius: 1rem;
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.initiative-block:hover .initiative-image-accent {
  transform: rotate(6deg);
}

.initiative-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.initiative-image img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (min-width: 1024px) {
  .initiative-image img {
    height: 24rem;
  }
}

.initiative-block:not(.initiative-coming-soon):hover .initiative-image img {
  transform: scale(1.05);
}

.initiative-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 32, 44, 0.5), transparent);
}

.initiative-coming-soon .initiative-image img {
  filter: grayscale(30%);
  opacity: 0.75;
}

.initiative-coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 32, 44, 0.3);
}

.initiative-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.initiative-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.initiative-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.initiative-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--accent));
  margin: 0;
}

.initiative-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.initiative-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-foreground);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--accent));
  flex-shrink: 0;
}

/* ============================================
   29. CCIRP PAGE STYLES
   ============================================ */

/* CCIRP Specific Styles */
.ccirp-hero-content {
  max-width: 56rem;
}

.ccirp-philosophy-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.philosophy-badge {
  padding: 0.5rem 1rem;
  background: hsl(var(--background) / 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
}

.ccirp-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.ccirp-section-alt {
  background: hsl(var(--secondary) / 0.3);
}

.ccirp-section .section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.ccirp-section .section-header .badge {
  margin-bottom: 1rem;
}

.ccirp-section .section-header .section-title {
  margin-bottom: 1rem;
}

/* Questions Grid */
.ccirp-questions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.ccirp-question-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ccirp-question-card:hover {
  border-color: hsl(var(--accent));
  box-shadow: var(--shadow-md);
}

.question-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.question-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.status-icon.completed {
  color: #22c55e;
}

.status-icon.in-progress {
  color: #f59e0b;
  animation: pulse 2s infinite;
}

.question-arrow {
  color: hsl(var(--muted-foreground));
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ccirp-question-card:hover .question-arrow {
  color: hsl(var(--accent));
  transform: translateX(4px);
}

.question-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  transition: color 0.3s ease;
}

.ccirp-question-card:hover .question-title {
  color: hsl(var(--accent));
}

.question-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.question-date {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Active Questions Grid */
.ccirp-active-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

.ccirp-active-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.75rem;
}

.active-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.active-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.active-card-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.active-card-date {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* 12-Step Framework Grid */
.ccirp-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

.ccirp-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.5rem;
}

.ccirp-step .step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--accent) / 0.1);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-top: 0;
}

/* Output Types Grid */
.ccirp-outputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .ccirp-outputs-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ccirp-output {
  text-align: center;
  padding: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.ccirp-output:hover {
  border-color: hsl(var(--accent) / 0.5);
}

.output-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--accent) / 0.1);
  border-radius: 50%;
  color: hsl(var(--accent));
}

.output-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  margin: 0 0 0.25rem;
}

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

/* Submit Question Section */
.ccirp-submit-section {
  padding: 4rem 0;
}

.ccirp-submit-content {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.ccirp-submit-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .ccirp-submit-title {
    font-size: 2rem;
  }
}

.ccirp-submit-subtitle {
  color: hsl(var(--muted-foreground));
  margin: 0 0 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.ccirp-submit-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ccirp-submit-form .btn {
  align-self: center;
}
