:root {
  --primary-blue: #1a3d7c;
  --primary-red: #ab2424;
  --light-bg: #f9fafc;
  --border-radius: 16px;
  padding-top: 90px;
}

/* ===== HERO ===== */
.about-hero {
  position: relative;
  background: url('/images/ship-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 7rem 1rem;
  overflow: hidden;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 61, 124, 0.75);
}
.about-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}
.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}
.about-hero p {
  font-size: 1.2rem;
  color: #f1f1f1;
}

/* ===== GENERAL SECTIONS ===== */
.about-section {
  max-width: 900px;
  margin: 3rem auto;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.about-section h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.about-section h2::after {
  content: '';
  width: 70px;
  height: 3px;
  background: var(--primary-red);
  position: absolute;
  bottom: -8px;
  right: 0;
  border-radius: 2px;
}
.about-section p {
  color: #444;
  line-height: 1.8;
}

/* ===== VALUES ===== */
.values-section {
  background: var(--light-bg);
  padding: 4rem 1rem;
  text-align: center;
}
.values-section h2 {
  color: var(--primary-blue);
  margin-bottom: 2.5rem;
  position: relative;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  border-top: 4px solid var(--primary-red);
}
.value-card i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 0.7rem;
}
.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* ===== TEAM ===== */
.team-section {
  padding: 4rem 1rem;
  text-align: center;
}
.team-section h2 {
  color: var(--primary-blue);
  margin-bottom: 2.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
}
.team-card i {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 0.8rem;
}
.team-card h3 {
  color: var(--primary-blue);
}
.team-card .role {
  color: var(--primary-red);
  font-weight: 500;
  margin: 0.3rem 0;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.5s 0.4s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}
