/* Mission Page Styles - Professional & Modern Design */

/* Hero Section with Parallax Effect */
.mission-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, var(--lightblue) 0%, #0056b3 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../../images/mission-hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
}

.mission-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
  /* animation: fadeInUp 1s ease-out; */
}

.mission-hero h1 {
  font-size: 4rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-hero .tagline {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mission Statement Card */
.mission-statement {
  background: #ffffff;
  border-radius: 20px;
  padding: 4rem;
  margin: -80px auto 4rem;
  max-width: 1100px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  /* animation: slideUp 0.8s ease-out 0.3s both; */
}

.mission-statement-content {
  text-align: center;
}

.mission-statement h2 {
  color: var(--lightblue);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.mission-statement h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lightblue), #80bb2d);
  border-radius: 2px;
}

.mission-statement p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

/* Vision Section with Grid Layout */
.vision-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.vision-header {
  text-align: center;
  margin-bottom: 4rem;
  /* animation: fadeIn 1s ease-out; */
}

.vision-header h2 {
  font-size: 3rem;
  color: var(--textblue);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.vision-header .vision-statement {
  font-size: 1.5rem;
  color: var(--lightblue);
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* Commitments Grid */
.commitments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.commitments-grid .commitment-card {
  flex: 0 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
}

.commitment-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.commitment-card:nth-child(1) {
  animation-delay: 0.1s;
}
.commitment-card:nth-child(2) {
  animation-delay: 0.2s;
}
.commitment-card:nth-child(3) {
  animation-delay: 0.3s;
}
.commitment-card:nth-child(4) {
  animation-delay: 0.4s;
}
.commitment-card:nth-child(5) {
  animation-delay: 0.5s;
}

.commitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lightblue), #80bb2d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.commitment-card:hover::before {
  transform: scaleX(1);
}

.commitment-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lightblue), #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.commitment-card h3 {
  color: var(--textblue);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.commitment-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: #ffffff;
}

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

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

.values-header h2 {
  font-size: 3rem;
  color: var(--textblue);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.values-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Values Cards with Hover Effects */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.values-grid .value-card {
  flex: 0 1 calc(33.333% - 1.7rem);
  min-width: 320px;
  max-width: 400px;
}

.value-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--lightblue), #80bb2d);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.value-card:hover::after {
  opacity: 0.1;
}

.value-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.value-number {
  width: 40px;
  height: 40px;
  background: var(--lightblue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
}

.value-card h3 {
  color: var(--textblue);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.value-card p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Philosophy Section */
.philosophy-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--lightblue) 0%, #0056b3 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophy-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: white;
}

.philosophy-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.philosophy-highlight {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid white;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
  .mission-hero h1 {
    font-size: 3.5rem;
  }

  .mission-hero .tagline {
    font-size: 1.35rem;
  }

  .vision-header h2,
  .values-header h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 980px) {
  .mission-hero h1 {
    font-size: 3rem;
  }

  .mission-statement {
    padding: 3rem;
    margin: -60px auto 3rem;
  }

  .commitments-grid .commitment-card {
    flex: 0 1 calc(50% - 1rem);
    min-width: 250px;
  }

  .values-grid .value-card {
    flex: 0 1 calc(50% - 1.25rem);
    min-width: 300px;
    max-width: none;
  }
}

@media screen and (max-width: 736px) {
  .mission-hero {
    min-height: 400px;
  }

  .mission-hero h1 {
    font-size: 2.5rem;
  }

  .mission-hero .tagline {
    font-size: 1.2rem;
  }

  .mission-statement {
    padding: 2rem;
    border-radius: 15px;
  }

  .mission-statement h2 {
    font-size: 2rem;
  }

  .mission-statement p {
    font-size: 1.1rem;
  }

  .vision-header h2,
  .values-header h2 {
    font-size: 2rem;
  }

  .vision-header .vision-statement {
    font-size: 1.25rem;
  }

  .commitment-card {
    padding: 2rem;
  }

  .commitments-grid .commitment-card {
    flex: 0 1 100%;
    min-width: 100%;
    max-width: none;
  }

  .values-grid .value-card {
    flex: 0 1 100%;
    min-width: 100%;
    max-width: none;
  }

  .philosophy-content h2 {
    font-size: 2rem;
  }

  .philosophy-content p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .mission-hero h1 {
    font-size: 2rem;
  }

  .mission-hero .tagline {
    font-size: 1.1rem;
  }

  .commitments-grid .commitment-card {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: none;
  }

  .values-grid .value-card {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: none;
  }

  .value-card {
    padding: 2rem;
  }

  .philosophy-highlight {
    padding: 1rem 1.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.commitment-card:focus,
.value-card:focus {
  outline: 3px solid var(--lightblue);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mission-hero {
    background: none;
    color: black;
  }

  .mission-hero h1,
  .mission-hero .tagline {
    color: black;
  }

  .commitment-card,
  .value-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
