/* ===== CSS Variables ===== */
:root {
  --primary-red: #FA2931;
  --primary-red-dark: #d91f27;
  --primary-dark: #0E1833;
  --primary-dark-light: #1a2847;
  --text-gray: #6b7280;
  --text-gray-dark: #374151;
  --bg-light: #f8fafc;
  --bg-gray: #f3f4f6;
  --white: #ffffff;
  --border-gray: #e5e7eb;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.3;
  color: var(--primary-dark);
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

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

/* ===== Utilities ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 24, 51, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(14, 24, 51, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.section-badge.red {
  background: rgba(250, 41, 49, 0.1);
  border-color: rgba(250, 41, 49, 0.2);
  color: var(--primary-red);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

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

.text-red { color: var(--primary-red); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(250, 41, 49, 0.3);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: scale(1.05);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--border-gray);
}

.btn-secondary:hover {
  border-color: var(--primary-dark);
  background: var(--bg-light);
}

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

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

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

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* White logo on dark background (default for home page) */
}

.header.scrolled .logo-img,
.header.light .logo-img {
  filter: none; /* Colored logo on white/light background when scrolled or on light pages */
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  color: white;
}

.header.scrolled .nav-link,
.header.light .nav-link {
  color: #374151;
}

.header.scrolled .nav-link.active,
.header.scrolled .nav-link:hover,
.header.light .nav-link.active,
.header.light .nav-link:hover {
  color: #E1111B;
}

.nav-link:hover {
  color: #E1111B;
}

.nav-link.active {
  color: #E1111B !important;
}

.nav-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  background: none;
  padding: 0.5rem;
  color: white;
}

.header.scrolled .mobile-menu-btn,
.header.light .mobile-menu-btn {
  color: #374151;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 5rem 1.5rem 2rem;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--border-gray);
}

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

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  padding: 0.5rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: -80px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 24, 51, 0.4), transparent, rgba(14, 24, 51, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 75px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge .stars {
  display: flex;
  gap: 2px;
}

.hero-badge .star {
  width: 16px;
  height: 16px;
  color: #facc15;
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 500;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  color: var(--primary-red);
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

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

.hero-btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

/* ===== Page Hero (Light) ===== */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: -80px;
  padding-top: 120px;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
}

/* ===== How It Works Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

.step-image {
  width: 290px;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  max-width: 290px;
  margin: 0 auto;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* ===== Core Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  border-radius: 1rem;
  padding: 2rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.value-card.blue { background: #E8F4FC; }
.value-card.peach { background: #FEF3E2; }
.value-card.mint { background: #E8F5F0; }
.value-card.pink { background: #F9F0F9; }

.value-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-circle.blue { background: rgba(59, 130, 246, 0.2); }
.value-icon-circle.amber { background: rgba(245, 158, 11, 0.2); }
.value-icon-circle.green { background: rgba(16, 185, 129, 0.2); }
.value-icon-circle.purple { background: rgba(168, 85, 247, 0.2); }

.value-icon-circle svg {
  width: 32px;
  height: 32px;
}

.value-icon-circle.blue svg { color: #3B82F6; }
.value-icon-circle.amber svg { color: #F59E0B; }
.value-icon-circle.green svg { color: #10B981; }
.value-icon-circle.purple svg { color: #A855F7; }

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  text-align: center;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.6;
}

/* ===== Team Section ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  position: relative;
}

.team-card-inner {
  border-radius: 1.5rem;
  padding: 1px;
}

.team-card-inner.red { background: linear-gradient(135deg, #FA2931, #d91f27); }
.team-card-inner.blue { background: linear-gradient(135deg, #3B82F6, #1d4ed8); }
.team-card-inner.green { background: linear-gradient(135deg, #10B981, #059669); }
.team-card-inner.purple { background: linear-gradient(135deg, #A855F7, #7c3aed); }

.team-card-content {
  background: var(--white);
  border-radius: calc(1.5rem - 1px);
  padding: 1.5rem;
}

.team-avatar-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.team-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
}

.team-role-badge.red { background: var(--primary-red); }
.team-role-badge.blue { background: #3B82F6; }
.team-role-badge.green { background: #10B981; }
.team-role-badge.purple { background: #A855F7; }

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  text-align: center;
}

.team-position {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-align: center;
}

.team-position.red { color: var(--primary-red); }
.team-position.blue { color: #3B82F6; }
.team-position.green { color: #10B981; }
.team-position.purple { color: #A855F7; }

.team-bio {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  color: var(--white);
}

.team-social a.red:hover { background: var(--primary-red); }
.team-social a.blue:hover { background: #3B82F6; }
.team-social a.green:hover { background: #10B981; }
.team-social a.purple:hover { background: #A855F7; }

.team-social svg {
  width: 16px;
  height: 16px;
}

/* ===== Organisation Section ===== */
.org-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark-light));
  padding: 6rem 0;
}

.org-header {
  text-align: center;
  margin-bottom: 4rem;
}

.org-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  color: var(--white);
}

.org-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.org-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.org-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.org-feature {
  display: flex;
  gap: 1.25rem;
}

.org-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-feature-icon.red { background: var(--primary-red); }
.org-feature-icon.blue { background: #3B82F6; }
.org-feature-icon.green { background: #10B981; }

.org-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.org-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.org-feature-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.org-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.org-images .col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.org-images .col:last-child {
  padding-top: 2rem;
}

.org-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.org-image.tall { height: 256px; }
.org-image.short { height: 192px; }

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

/* ===== CTA Section ===== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark-light));
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

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

/* ===== Contact Form ===== */
.contact-section {
  padding: 4rem 0;
}

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

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(250, 41, 49, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-red);
}

.contact-item h4 {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-gray);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* ===== CTA Section ===== */
.cta-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  padding: 4rem 0 2rem;
}

.footer-link {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: #FA2931;
}

.footer-email:hover {
  color: #FA2931;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.social-icon:hover svg {
  fill: white;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0;
  max-width: 300px;
}

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

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

.footer-social a:hover {
  background: var(--primary-red);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .steps-grid,
  .features-grid,
  .values-grid,
  .team-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .org-content {
    grid-template-columns: 1fr;
  }
  
  .org-images {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .steps-grid,
  .features-grid,
  .values-grid,
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 1rem auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Marquee Animation for Reviews */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Healthcare Image Cards Hover */
.healthcare-card:hover img {
  transform: scale(1.1);
}

/* Enterprise Image Card Hover */
.enterprise-img-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.enterprise-img-card:hover img {
  transform: scale(1.08);
}

/* Program Feature Card Hover */
.program-feature-card:hover {
  border-color: rgba(250, 41, 49, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-feature-card:hover > div:first-child {
  transform: scale(1.1);
}

/* Value Bento Card Hover */
.value-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive for Values Grid */
@media (max-width: 1024px) {
  .value-bento-card {
    min-height: 16rem !important;
  }
}

@media (max-width: 768px) {
  .value-bento-card {
    min-height: auto !important;
    padding: 1.5rem !important;
  }
}

/* Pulse animation for badge dot */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive for Who Can Benefit Section */
@media (max-width: 1024px) {
  .who-can-benefit-grid {
    grid-template-columns: 1fr !important;
  }
  
  .who-can-benefit-cards {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .who-can-benefit-bottom {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .who-can-benefit-cards,
  .who-can-benefit-bottom {
    grid-template-columns: 1fr !important;
  }
}
