/* ========================================
   OVER-ONS.CSS - About Page Specific Styles
   ======================================== */

/* About Grid - Two column layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image {
  width: 100%;
  height: auto;
}

.rounded-image {
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mission & Vision Section */
.mission-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.mission-card {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #2274FF 0%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(34, 116, 255, 0.25);
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
}

.mission-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.mission-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* Team Section */
.team-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.team-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.team-feature {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.team-feature:hover {
  border-color: rgba(34, 116, 255, 0.3);
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.team-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.team-feature:hover .team-feature-icon {
  background: linear-gradient(135deg, #2274FF 0%, #3b82f6 100%);
  transform: scale(1.1) rotate(5deg);
}

.team-feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: #2274FF;
  transition: color 0.3s ease;
}

.team-feature:hover .team-feature-icon svg {
  color: white;
}

.team-feature-content {
  flex: 1;
}

.team-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.team-feature-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

/* Team Member Cards (if needed) */
.team-members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.team-member {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.team-member:hover {
  box-shadow: 0 12px 32px rgba(34, 116, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(34, 116, 255, 0.3);
}

.team-member-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.team-member-role {
  font-size: 0.9375rem;
  color: #2274FF;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-member-bio {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

/* Responsive Styles - About Page */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-members {
    grid-template-columns: repeat(3, 1fr);
  }
}
