/* Complete redesign based on Miyana Learning reference */
:root {
  /* Updated from gold to bright yellow colors */
  --sr-primary: #fbbf24;
  --sr-primary-dark: #f59e0b;
  --sr-primary-light: #fef3c7;

  /* Changed sky blue to deep blue throughout */
  --sr-blue: #1e3a8a;
  --sr-blue-light: #3b82f6;
  --sr-blue-dark: #1e40af;

  /* Updated accent colors to brighter yellow tones */
  --sr-gold: #facc15;
  --sr-gold-light: #fef9c3;
  --sr-gold-dark: #eab308;

  /* Updated neutrals to reduce pure white and add warm tones */
  --sr-bg: #fffbf0;
  --sr-surface: #fff9e6;
  --sr-surface-elevated: #ffffff;
  --sr-text: #1f2937;
  --sr-text-secondary: #6b7280;
  --sr-border: #f3d99e;

  /* Added blue-tinted shadows alongside gold */
  --sr-shadow-sm: 0 1px 2px 0 rgba(212, 175, 55, 0.1);
  --sr-shadow: 0 1px 3px 0 rgba(212, 175, 55, 0.15), 0 1px 2px 0 rgba(212, 175, 55, 0.1);
  --sr-shadow-md: 0 4px 6px -1px rgba(212, 175, 55, 0.15), 0 2px 4px -1px rgba(212, 175, 55, 0.1);
  --sr-shadow-lg: 0 10px 15px -3px rgba(212, 175, 55, 0.2), 0 4px 6px -2px rgba(212, 175, 55, 0.15);
  --sr-shadow-gold: 0 4px 12px rgba(251, 191, 36, 0.25);
  /* Updated shadow to deep blue */
  --sr-shadow-blue: 0 4px 12px rgba(30, 58, 138, 0.25);
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--sr-bg);
  color: var(--sr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--sr-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar matching reference style */
.navbar {
  background-color: var(--sr-surface-elevated);
  box-shadow: var(--sr-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sr-primary);
  text-decoration: none;
}

.logo svg {
  stroke: var(--sr-primary);
}

/* Added logo image styles */
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* Added mobile menu toggle button styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--sr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-links a {
  color: var(--sr-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sr-primary);
  /* Updated border to use sky blue for active links */
  border-bottom: 2px solid var(--sr-blue);
}

/* Buttons matching reference */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--sr-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--sr-primary-dark);
  box-shadow: 0 0 0 3px var(--sr-gold-light), var(--sr-shadow-md);
  transform: translateY(-1px);
  transition: all 0.25s ease;
}

/* Added secondary button with deep blue */
.btn-secondary {
  background-color: var(--sr-blue);
  color: white;
  border: 2px solid var(--sr-blue);
}

.btn-secondary:hover {
  background-color: var(--sr-blue-dark);
  box-shadow: 0 0 0 3px var(--sr-blue-light), var(--sr-shadow-blue);
  transform: translateY(-1px);
}

.btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-white {
  background-color: white;
  color: var(--sr-primary);
}

.btn-white:hover {
  background-color: #f9fafb;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

/* Hero section simplified */
/* Updated hero section with sky blue gradient background */
.hero {
  background: linear-gradient(135deg, var(--sr-blue-light) 0%, #ffffff 50%, var(--sr-gold-light) 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--sr-text);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--sr-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services section with clean cards */
.services-section {
  padding: 5rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--sr-gold);
}

.section-subtitle {
  color: var(--sr-text-secondary);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--sr-shadow);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
}

/* Added clickable card styles */
.service-card.clickable {
  cursor: pointer;
}

.service-card.clickable:hover {
  transform: translateY(-6px);
  box-shadow: var(--sr-shadow-lg), 0 0 0 2px var(--sr-gold);
  border-color: var(--sr-gold);
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

/* Alternating colors for service icons - golden and sky blue */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--sr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.service-card:nth-child(even) .service-icon {
  background-color: var(--sr-blue);
}

.service-card.clickable:hover .service-icon {
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  border-color: var(--sr-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.service-card:nth-child(even).clickable:hover .service-icon {
  background: linear-gradient(135deg, var(--sr-blue) 0%, var(--sr-blue-dark) 100%);
  border-color: var(--sr-blue-light);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--sr-text-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--sr-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card.clickable:hover .learn-more {
  opacity: 1;
}

/* Testimonials section like reference */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--sr-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--sr-shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sr-shadow-lg), 0 0 0 2px var(--sr-gold-light);
  border-color: var(--sr-gold);
}

.testimonial-text {
  font-style: italic;
  color: var(--sr-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

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

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: var(--sr-text-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--sr-text-secondary);
}

/* Blue CTA section like reference */
/* Updated CTA section with blue background */
.cta-section {
  background: linear-gradient(135deg, var(--sr-blue) 0%, var(--sr-blue-dark) 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
  margin: 4rem 0 0;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About page sections */
/* Page hero sections with gradient backgrounds */
.page-hero {
  background: linear-gradient(135deg, var(--sr-gold-light) 0%, #ffffff 50%, var(--sr-blue-light) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--sr-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.about-intro {
  padding: 5rem 0;
  background-color: white;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.about-intro-content p {
  color: var(--sr-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.about-intro-image {
  border-radius: 12px;
  overflow: hidden;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-vision {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--sr-surface) 0%, #ffffff 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mission-vision-card {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sr-shadow-lg), var(--sr-shadow-gold);
  border-color: var(--sr-gold);
  background: linear-gradient(135deg, #ffffff 0%, var(--sr-gold-light) 100%);
}

/* Updated mission/vision card alternating colors */
.mission-vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.mission-vision-card:nth-child(even) .mission-vision-icon {
  background: linear-gradient(135deg, var(--sr-blue) 0%, var(--sr-blue-dark) 100%);
}

.mission-vision-card:hover .mission-vision-icon {
  border-color: var(--sr-gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: scale(1.1) rotate(5deg);
}

.mission-vision-card:nth-child(even):hover .mission-vision-icon {
  border-color: var(--sr-blue-light);
  box-shadow: 0 0 25px rgba(96, 165, 250, 0.5);
}

.mission-vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sr-primary);
  transition: color 0.3s ease;
}

.mission-vision-card:hover h3 {
  color: var(--sr-gold);
}

.mission-vision-card p {
  color: var(--sr-text-secondary);
  line-height: 1.7;
}

.values-section {
  padding: 5rem 0;
  background-color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: var(--sr-shadow-sm);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sr-shadow-md), var(--sr-shadow-gold);
  border-color: var(--sr-gold);
  background: linear-gradient(135deg, #ffffff 0%, var(--sr-gold-light) 100%);
}

/* Updated value cards with alternating hover colors */
.value-card:nth-child(odd):hover {
  border-color: var(--sr-gold);
}

.value-card:nth-child(even):hover {
  border-color: var(--sr-blue);
  background: linear-gradient(135deg, #ffffff 0%, var(--sr-blue-light) 100%);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--sr-primary);
  transition: all 0.3s ease;
}

.value-card:hover h3 {
  color: var(--sr-gold);
  transform: scale(1.05);
}

.value-card:nth-child(even):hover h3 {
  color: var(--sr-blue);
}

.value-card p {
  color: var(--sr-text-secondary);
  line-height: 1.7;
}

.value-card p strong {
  color: var(--sr-text);
  font-weight: 600;
}

/* Contact page with icon cards like reference */
.contact-info-cards {
  padding: 3rem 0;
  background-color: var(--sr-surface);
}

/* Updated contact hero with gradient using both colors */
.contact-hero {
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-blue) 100%);
  padding: 5rem 0;
  color: white;
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.contact-info-section {
  padding: 4rem 0;
  background-color: white;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--sr-shadow-md);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sr-shadow-lg), var(--sr-shadow-gold);
  border-color: var(--sr-gold);
  background: linear-gradient(135deg, #ffffff 0%, var(--sr-gold-light) 100%);
}

/* Alternating contact card icon colors */
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--sr-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.contact-card:nth-child(even) .contact-card-icon {
  background-color: var(--sr-blue);
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  border-color: var(--sr-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.contact-card:nth-child(even):hover .contact-card-icon {
  background: linear-gradient(135deg, var(--sr-blue) 0%, var(--sr-blue-dark) 100%);
  border-color: var(--sr-blue-light);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--sr-text);
}

.contact-card-text {
  color: var(--sr-text);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-card-note {
  font-size: 0.875rem !important;
  color: var(--sr-text-secondary) !important;
  font-style: italic;
  line-height: 1.5;
}

.contact-form-section {
  padding: 5rem 0;
  background-color: var(--sr-surface);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--sr-shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-form-container:hover {
  border-color: var(--sr-gold-light);
  box-shadow: var(--sr-shadow-lg);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--sr-text);
}

.form-header p {
  color: var(--sr-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--sr-text);
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 2px solid var(--sr-border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  transition: all 0.2s;
  background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sr-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-map-container {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--sr-shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-map-container:hover {
  border-color: var(--sr-gold-light);
  box-shadow: var(--sr-shadow-lg);
}

.map-header {
  margin-bottom: 1.5rem;
}

.map-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--sr-text);
}

.map-header p {
  color: var(--sr-text-secondary);
  font-size: 0.9375rem;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 1.5rem;
  box-shadow: var(--sr-shadow);
}

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

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--sr-surface);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.location-info-item:hover {
  background-color: var(--sr-gold-light);
  transform: translateX(4px);
}

.location-info-item svg {
  flex-shrink: 0;
  stroke: var(--sr-primary);
  margin-top: 2px;
}

.location-info-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  color: var(--sr-text);
  font-weight: 600;
}

.location-info-item p {
  font-size: 0.875rem;
  color: var(--sr-text-secondary);
  margin: 0;
}

/* Programs page */
.programs-section {
  padding: 5rem 0;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--sr-border);
  background-color: white;
  color: var(--sr-text);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9375rem;
}

.filter-btn:hover {
  border-color: var(--sr-primary);
  color: var(--sr-primary);
}

.filter-btn.active {
  background-color: var(--sr-primary);
  color: white;
  border-color: var(--sr-primary);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Added hover and clickable styles for program cards */
.program-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--sr-shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Added program card clickable and hover styles */
.program-card.clickable {
  cursor: pointer;
}

.program-card.clickable:hover {
  transform: translateY(-6px);
  box-shadow: var(--sr-shadow-lg), 0 0 0 2px var(--sr-gold);
  border-color: var(--sr-gold);
  background: linear-gradient(135deg, #ffffff 0%, var(--sr-gold-light) 100%);
}

.program-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: var(--sr-primary);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sr-text);
}

.program-card p {
  color: var(--sr-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--sr-text-secondary);
}

.meta-item svg {
  stroke: var(--sr-primary);
}

.program-card.clickable:hover .program-badge {
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
  transform: scale(1.05);
}

.program-card.clickable .learn-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--sr-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.program-card.clickable:hover .learn-more {
  opacity: 1;
}

/* Added complete modal styles for service and program modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background-color: white;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--sr-surface);
  border: 2px solid var(--sr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1002;
}

.modal-close:hover {
  background-color: var(--sr-primary);
  border-color: var(--sr-primary);
  transform: rotate(90deg);
}

.modal-close:hover svg {
  stroke: white;
}

.modal-close svg {
  stroke: var(--sr-text);
  transition: stroke 0.3s ease;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--sr-border);
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--sr-text);
}

.modal-header p {
  font-size: 1.125rem;
  color: var(--sr-text-secondary);
}

.program-badge-large {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  color: white;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.modal-section {
  margin-bottom: 2rem;
}

.modal-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sr-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-section h3::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
  border-radius: 2px;
}

.modal-section p {
  color: var(--sr-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

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

.modal-list li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--sr-text-secondary);
  line-height: 1.7;
  position: relative;
}

.modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sr-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.modal-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--sr-surface) 0%, var(--sr-gold-light) 100%);
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--sr-gold);
}

.modal-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--sr-text);
}

.modal-cta p {
  color: var(--sr-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* FAQ section */
.faq-section {
  padding: 5rem 0;
  background-color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background-color: var(--sr-surface);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sr-shadow-md);
  border-color: var(--sr-gold);
  background-color: white;
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--sr-text);
}

.faq-item p {
  color: var(--sr-text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--sr-surface) 0%, var(--sr-gold-light) 100%);
  border-radius: 16px;
  border: 2px solid var(--sr-gold);
}

.section-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sr-text);
}

.section-cta p {
  font-size: 1.125rem;
  color: var(--sr-text-secondary);
  margin-bottom: 2rem;
}

.contact-link {
  color: var(--sr-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--sr-primary-dark);
  text-decoration: underline;
}

/* Added partners slider section and animation styles */
.partners-section {
  padding: 4rem 0;
  background-color: var(--sr-surface);
  overflow: hidden;
}

.partners-section .container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--sr-text);
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: slide 30s linear infinite;
  width: fit-content;
}

.partners-track a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--sr-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.partners-track a:hover {
  transform: translateY(-4px);
  box-shadow: var(--sr-shadow-lg), var(--sr-shadow-gold);
  border-color: var(--sr-gold);
}

.partners-track img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partners-track a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Added complete footer styles */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo .logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background-color: var(--sr-primary);
  border-color: var(--sr-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--sr-primary);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-contact svg {
  flex-shrink: 0;
  stroke: var(--sr-primary);
  margin-top: 2px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--sr-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-title {
    font-size: 2rem;
  }

  .contact-main-grid,
  .about-intro-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-content {
    padding: 2rem;
    width: 95%;
  }

  .contact-map-container {
    position: static;
  }
}
