/* ===================================
   ABOUT PAGE PROFESSIONAL STYLES
   =================================== */

/* COLOR VARIABLES */
:root {
  --primary-color: #0f3460;
  --secondary-color: #e94560;
  --accent-color: #00d4ff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.about-section .container {
  flex-direction: column;
  max-width: 900px;
}

.about-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

.section-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
  font-weight: 600;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* ===================================
   VALUE SECTIONS - MISSION & VISION
   =================================== */
.value-section {
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-section.mission {
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.08) 0%, rgba(233, 69, 96, 0.08) 100%);
}

.value-section.vision {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(233, 69, 96, 0.08) 100%);
}

.value-card {
  background: var(--bg-white);
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 700px;
  border-top: 4px solid var(--secondary-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(233, 69, 96, 0.25);
}

.value-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.value-card h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.value-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 600;
}

/* ===================================
   GOALS SECTION
   =================================== */
.goals-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.goals-section .container {
  flex-direction: column;
  max-width: 1200px;
}

.goals-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  width: 100%;
}

.goal-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 40px 32px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding-top: 80px;
  transform-style: preserve-3d;
}

.goal-card:hover {
  transform: translateY(-12px) scale(1.03) rotateY(2deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.goal-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.goal-card h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.goal-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
}

/* ===================================
   CORE VALUES HIGHLIGHT
   =================================== */
.values-highlight {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
}

.values-highlight .container {
  flex-direction: column;
  max-width: 1200px;
}

.values-highlight h2 {
  color: var(--bg-white);
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
}

.value-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px) scale(1.05) translateX(5px);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.value-item h3 {
  color: var(--bg-white);
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-top: 0;
  font-weight: 700;
}

.value-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 600;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 69, 96, 0.1) 100%);
  text-align: center;
}

.cta-section .container {
  flex-direction: column;
  max-width: 700px;
  gap: 30px;
}

.cta-section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.cta-section div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===================================
   CTA BUTTONS
   =================================== */
.cta-btn {
  background: var(--secondary-color);
  color: var(--bg-white);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(233, 69, 96, 0.35);
}

.cta-btn.secondary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.cta-btn.secondary:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.3);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .section-content p {
    font-size: 1rem;
    text-align: left;
  }

  .value-section {
    padding: 60px 20px;
  }

  .value-card {
    padding: 40px 30px;
  }

  .value-card h2 {
    font-size: 1.6rem;
  }

  .value-card p {
    font-size: 1rem;
  }

  .goals-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .goals-grid {
    gap: 24px;
  }

  .values-highlight h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .values-grid {
    gap: 24px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 16px;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }

  .section-content p {
    font-size: 0.95rem;
  }

  .value-section {
    padding: 50px 16px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .value-card h2 {
    font-size: 1.4rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }

  .value-icon {
    font-size: 3rem;
  }

  .goals-section {
    padding: 40px 16px;
  }

  .goals-section h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .goals-grid {
    gap: 16px;
  }

  .goal-card {
    padding: 35px 20px 20px 20px;
  }

  .goal-number {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .goal-card h3 {
    font-size: 1.1rem;
  }

  .goal-card p {
    font-size: 0.9rem;
  }

  .values-highlight {
    padding: 50px 16px;
  }

  .values-highlight h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .values-grid {
    gap: 16px;
  }

  .value-item {
    padding: 30px 20px;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .value-item p {
    font-size: 0.9rem;
  }

  .cta-section {
    padding: 50px 16px;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .cta-section div {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
button:focus,
a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}
