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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1a1a;
  z-index: 1001;
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #4a90e2;
}

.contact-btn {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.contact-btn:hover {
  background: #333;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #001F3F 0%, #0051A5 100%);
  color: white;
  padding: 8rem 2rem 4rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  background: white;
  color: #1a1a1a;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  transform: translateY(0);
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  touch-action: manipulation;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card.touch-active {
  transform: scale(0.98);
  background: #f8f9fa;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #e9ecef;
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Founder Section */
.founder-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.founder-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.founder-text p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

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

.founder-list li {
  padding: 0.5rem 0;
  color: #333;
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.founder-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #0051A5;
  font-weight: bold;
  font-size: 1rem;
  width: 1.5rem;
  text-align: center;
}

.founder-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: translateY(-5px);
}

/* Why Works Section */
.why-works-section {
  padding: 4rem 0;
  background: white;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

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

.pillar-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.pillar-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  background: #4a90e2;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* New Section 4 - Mobile First */
.new-section-4 {
  padding: 2rem 0;
  background: #f8f9fa;
}

.subsection-4-1,
.subsection-4-2,
.subsection-4-3 {
  margin-bottom: 2rem;
}

.subsection-4-1:last-child,
.subsection-4-2:last-child,
.subsection-4-3:last-child {
  margin-bottom: 0;
}

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

.subsection-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.subsection-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Collapsible functionality for mobile */
.mobile-collapsible {
  display: block;
}

.desktop-text {
  display: none;
}

.collapsible-summary {
  cursor: pointer;
  font-weight: 600;
  color: #0051A5;
  padding: 0.5rem 0;
  list-style: none;
  position: relative;
  margin-bottom: 0.5rem;
}

.collapsible-summary::-webkit-details-marker {
  display: none;
}

.collapsible-summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-collapsible[open] .collapsible-summary::after {
  transform: rotate(180deg);
}

.mobile-collapsible p {
  margin-top: 0.5rem;
  padding-left: 0;
}

.subsection-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.subsection-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subsection-image img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .new-section-4 {
    padding: 3rem 0;
  }
  
  .subsection-4-1,
  .subsection-4-2,
  .subsection-4-3 {
    margin-bottom: 3rem;
  }
  
  .subsection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
  }
  
  .subsection-4-2 .subsection-image {
    order: -1;
  }
  
  .subsection-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .subsection-text p {
    font-size: 1.05rem;
  }
  
  .subsection-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .subsection-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  /* Hide collapsible elements on desktop, show desktop text */
  .mobile-collapsible {
    display: none;
  }
  
  .desktop-text {
    display: block;
  }
}

@media (min-width: 1024px) {
  .new-section-4 {
    padding: 4rem 0;
  }
  
  .subsection-4-1,
  .subsection-4-2,
  .subsection-4-3 {
    margin-bottom: 4rem;
  }
  
  .subsection-content {
    gap: 3rem;
  }
  
  .subsection-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .subsection-text p {
    font-size: 1.1rem;
  }
}

/* Services Page Hero Section */
.services-hero {
  background: linear-gradient(180deg, #001F3F 0%, #0051A5 100%);
  color: white;
  padding: 8rem 2rem 4rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Programs Section */
.programs-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.program-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
  border: 2px solid #4a90e2;
  transform: scale(1.02);
}

.program-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #4a90e2;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.program-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2, #0051A5);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.program-title {
  flex: 1;
}

.program-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.program-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.program-duration {
  background: #f8f9fa;
  color: #4a90e2;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

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

.program-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

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

.program-features h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.program-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-features li {
  padding: 0.4rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #4a90e2;
  font-weight: bold;
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
}

.program-outcome {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #4a90e2;
}

.program-outcome h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-outcome p {
  color: #333;
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

/* Inclusions Section */
.inclusions-section {
  padding: 4rem 0;
  background: white;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.inclusion-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  touch-action: manipulation;
}

.inclusion-card:hover {
  transform: translateY(-4px);
}

.inclusion-card.touch-active {
  transform: scale(0.98);
  background: #f8f9fa;
}

.inclusion-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.inclusion-card:hover .inclusion-icon {
  background: #e9ecef;
  transform: scale(1.05);
}

.inclusion-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.inclusion-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Fix checkmarks in inclusions if they exist */
.inclusion-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusion-card li {
  padding: 0.4rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.inclusion-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #4a90e2;
  font-weight: bold;
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
}

/* Services CTA Section */
.services-cta-section {
  padding: 4rem 0;
  background: #4a90e2;
  color: white;
  text-align: center;
}

.services-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-button {
  display: inline-block;
  background: white;
  color: #4a90e2;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.services-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-cta-button:active {
  transform: translateY(0);
}

/* About Page Hero Section */
.about-hero {
  background: linear-gradient(180deg, #001F3F 0%, #0051A5 100%);
  color: white;
  padding: 8rem 2rem 4rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* About Us Section */
.about-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.about-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-stats .stat-item:hover {
  transform: translateY(-2px);
}

.about-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.about-stats .stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background: white;
}

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

.team-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #4a90e2;
}

.team-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #4a90e2;
  transition: all 0.3s ease;
}

.team-card:hover .team-image {
  border-color: #0051A5;
  transform: scale(1.05);
}

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

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

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.team-role {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.team-bio {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 4rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  touch-action: manipulation;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card.touch-active {
  transform: scale(0.98);
  background: #f8f9fa;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: #e9ecef;
  transform: scale(1.05);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* About CTA Section */
.about-cta-section {
  padding: 4rem 0;
  background: #4a90e2;
  color: white;
  text-align: center;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-button {
  display: inline-block;
  background: white;
  color: #4a90e2;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.about-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-cta-button:active {
  transform: translateY(0);
}

/* Navigation Active State */
.nav-active {
  color: #4a90e2 !important;
  font-weight: 600 !important;
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
  background: white;
}

.cta-card {
  background: linear-gradient(180deg, rgba(0, 31, 63, 0.9) 45%, rgba(0, 81, 165, 1) 66%);
  border-radius: 16px;
  padding: 3rem;
  color: white;
}

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

.start-now-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d1d5db;
}

.cta-features {
  list-style: none;
  margin-bottom: 2rem;
}

.cta-features li {
  padding: 0.5rem 0;
  color: #d1d5db;
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  align-items: flex-start;
}

.cta-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #ffa412;
  font-weight: bold;
  font-size: 1rem;
  width: 1.5rem;
  text-align: center;
}

.book-now-btn {
  background: #ffa412;
  color: #1a1a1a;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  min-height: 48px;
  touch-action: manipulation;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 164, 18, 0.3);
}

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

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-placeholder-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.collaboration-image {
  width: 300px;
  height: 200px;
  background: #f8f9fa;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.people-group {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.person {
  width: 20px;
  height: 30px;
  background: #4a90e2;
  border-radius: 10px 10px 0 0;
}

.person-1 { background: #ff6b6b; }
.person-2 { background: #4ecdc4; }
.person-3 { background: #45b7d1; }
.person-4 { background: #96ceb4; }
.person-5 { background: #feca57; }

.laptop {
  width: 40px;
  height: 25px;
  background: #333;
  border-radius: 4px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.table {
  width: 100%;
  height: 20px;
  background: #ddd;
  position: absolute;
  bottom: 0;
}

/* Touch and Mobile Optimizations */
.touch-active {
  transform: scale(0.98) !important;
  transition: transform 0.1s ease !important;
}

/* Prevent zoom on input focus */
input, textarea, select {
  font-size: 16px;
}

/* Smooth scrolling for mobile */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    min-height: 60px;
  }
  
  .contact-btn {
    display: none;
  }
  
  .nav {
    padding: 1rem 1.5rem;
  }
  
  .logo {
    font-size: 1.125rem;
  }
  
  .logo img {
    width: 28px;
    height: 28px;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .features-grid {
    gap: 2rem;
  }
  
  .founder-content {
    gap: 3rem;
  }
  
  .pillars-grid {
    gap: 2rem;
  }
  

}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 90vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    min-height: 52px;
  }
  
  .features-section {
    padding: 3rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.375rem;
  }
  
  .feature-card p {
    font-size: 1rem;
  }
  
  .founder-section {
    padding: 3rem 0;
  }
  
  .founder-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .founder-text h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  
  .founder-text p {
    font-size: 1.125rem;
  }
  
  .founder-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  
  .founder-list li::before {
    font-size: 0.9rem;
    width: 1.25rem;
  }
  
  .founder-image {
    max-width: 400px;
  }
  
  .why-works-section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: 1.125rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .pillar-card {
    padding: 1.5rem;
  }
  
  .pillar-card h3 {
    font-size: 1.375rem;
  }
  
  .pillar-card p {
    font-size: 1rem;
  }
  
  .stats-section {
    padding: 2.5rem 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .services-hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 50vh;
  }
  
  .services-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }
  
  .services-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .programs-section {
    padding: 3rem 0;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .program-card {
    padding: 1.5rem;
  }
  
  .program-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .program-title h3 {
    font-size: 1.25rem;
  }
  
  .program-duration {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .program-features li {
    font-size: 0.85rem;
    padding-left: 1.25rem;
  }
  
  .program-features li::before {
    font-size: 0.8rem;
    width: 0.8rem;
  }
  
  .inclusions-section {
    padding: 3rem 0;
  }
  
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .inclusion-card {
    padding: 1.5rem;
  }
  
  .inclusion-card h3 {
    font-size: 1.125rem;
  }
  
  .inclusion-icon {
    width: 70px;
    height: 70px;
  }
  
  .services-cta-section {
    padding: 3rem 0;
  }
  
  .services-cta-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .services-cta-content p {
    font-size: 1.125rem;
  }
  
  .services-cta-button {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    min-height: 52px;
  }
  
  .about-hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 50vh;
  }
  
  .about-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .about-section {
    padding: 3rem 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .about-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .about-stats .stat-item {
    flex: 1;
    margin: 0 0.5rem;
  }
  
  .values-section {
    padding: 3rem 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  .value-card h3 {
    font-size: 1.375rem;
  }
  
  .value-card p {
    font-size: 1rem;
  }
  
  .about-cta-section {
    padding: 3rem 0;
  }
  
  .about-cta-content h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .about-cta-content p {
    font-size: 1.125rem;
  }
  
  .about-cta-button {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    min-height: 52px;
  }
  
  .team-section {
    padding: 3rem 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .team-image {
    width: 100px;
    height: 100px;
  }
  
  .team-info h3 {
    font-size: 1.125rem;
  }
  
  .team-role {
    font-size: 0.85rem;
  }
  
  .team-bio {
    font-size: 0.85rem;
  }
  
  .final-cta-section {
    padding: 3rem 0;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-text h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .cta-text h3 {
    font-size: 1.125rem;
  }
  
  .cta-features li {
    font-size: 1rem;
    padding: 0.75rem 0;
  }
  
  .cta-features li::before {
    font-size: 0.9rem;
    width: 1.25rem;
  }
  
  .book-now-btn {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    min-height: 52px;
  }
  
  .collaboration-image {
    width: 280px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav {
    padding: 1rem;
  }
  
  .hero {
    padding: 5rem 1rem 2.5rem;
    min-height: 85vh;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .features-section {
    padding: 2.5rem 0;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .founder-section {
    padding: 2.5rem 0;
  }
  
  .founder-text h2 {
    font-size: 1.875rem;
  }
  
  .founder-text p {
    font-size: 1rem;
  }
  
  .founder-list li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
  
  .founder-list li::before {
    font-size: 0.8rem;
    width: 1rem;
  }
  
  .founder-image {
    max-width: 300px;
  }
  
  .why-works-section {
    padding: 2.5rem 0;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .pillar-card {
    padding: 1.25rem;
  }
  
  .pillar-card h3 {
    font-size: 1.25rem;
  }
  
  .pillar-illustration {
    width: 100px;
    height: 100px;
  }
  
  .pillar-image {
    width: 100%;
    height: 100%;
  }
  

  
  .stats-section {
    padding: 2rem 0;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .services-hero {
    padding: 5rem 1rem 2.5rem;
    min-height: 40vh;
  }
  
  .services-hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .services-hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .programs-section {
    padding: 2.5rem 0;
  }
  
  .programs-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .program-card {
    padding: 1.25rem;
  }
  
  .program-header {
    gap: 0.5rem;
  }
  
  .program-title h3 {
    font-size: 1.125rem;
  }
  
  .program-subtitle {
    font-size: 0.8rem;
  }
  
  .program-duration {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .program-description p {
    font-size: 0.9rem;
  }
  
  .program-features h4 {
    font-size: 0.9rem;
  }
  
  .program-features li {
    font-size: 0.8rem;
    padding-left: 1rem;
  }
  
  .program-features li::before {
    font-size: 0.75rem;
    width: 0.75rem;
  }
  
  .program-outcome h4 {
    font-size: 0.8rem;
  }
  
  .program-outcome p {
    font-size: 0.8rem;
  }
  
  .inclusions-section {
    padding: 2.5rem 0;
  }
  
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .inclusion-card {
    padding: 1.25rem;
  }
  
  .inclusion-card h3 {
    font-size: 1rem;
  }
  
  .inclusion-card p {
    font-size: 0.9rem;
  }
  
  .inclusion-icon {
    width: 60px;
    height: 60px;
  }
  
  .services-cta-section {
    padding: 2.5rem 0;
  }
  
  .services-cta-content h2 {
    font-size: 1.75rem;
  }
  
  .services-cta-content p {
    font-size: 1rem;
  }
  
  .services-cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .about-hero {
    padding: 5rem 1rem 2.5rem;
    min-height: 40vh;
  }
  
  .about-hero-content h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .about-section {
    padding: 2.5rem 0;
  }
  
  .about-content {
    margin-top: 1.5rem;
  }
  
  .about-text h2 {
    font-size: 1.5rem;
  }
  
  .about-text h3 {
    font-size: 1.25rem;
  }
  
  .about-text p {
    font-size: 0.9rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-stats .stat-item {
    margin: 0;
    padding: 1rem;
  }
  
  .about-stats .stat-number {
    font-size: 2rem;
  }
  
  .about-stats .stat-label {
    font-size: 0.9rem;
  }
  
  .values-section {
    padding: 2.5rem 0;
  }
  
  .values-grid {
    margin-top: 1.5rem;
  }
  
  .value-card {
    padding: 1.25rem;
  }
  
  .value-card h3 {
    font-size: 1.25rem;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
  }
  
  .about-cta-section {
    padding: 2.5rem 0;
  }
  
  .about-cta-content h2 {
    font-size: 1.75rem;
  }
  
  .about-cta-content p {
    font-size: 1rem;
  }
  
  .about-cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .team-section {
    padding: 2.5rem 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .team-card {
    padding: 1.25rem;
  }
  
  .team-image {
    width: 80px;
    height: 80px;
  }
  
  .team-info h3 {
    font-size: 1rem;
  }
  
  .team-role {
    font-size: 0.8rem;
  }
  
  .team-bio {
    font-size: 0.8rem;
  }
  
  .final-cta-section {
    padding: 2.5rem 0;
  }
  
  .cta-card {
    padding: 1.5rem;
  }
  
  .cta-text h2 {
    font-size: 1.75rem;
  }
  
  .cta-text h3 {
    font-size: 1rem;
  }
  
  .cta-features li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  .cta-features li::before {
    font-size: 0.8rem;
    width: 1rem;
  }
  
  .book-now-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .collaboration-image {
    width: 250px;
    height: 160px;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 4rem 1.5rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .features-section,
  .founder-section,
  .why-works-section,
  .final-cta-section {
    padding: 2rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
