/* ═══════════════════════════════════════════════════════
   about.css — Skyline Drone Solutions
   Page-specific styles for about.html
   ═══════════════════════════════════════════════════════ */

/* ───────── PAGE HERO OVERRIDES ───────── */
.page-hero-meta {
  margin-top: 4rem; display: flex; align-items: center; gap: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.meta-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; color: #fff; }
.meta-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.meta-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ───────── SECTION LABEL LIGHT ───────── */
.section-label-light { color: var(--blue-light); }

/* ───────── BTN OUTLINE DARK ───────── */
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--text-dark);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.875rem;
  padding: 0.58rem 1.4rem; border-radius: 8px; text-decoration: none;
  border: 1.5px solid var(--gray-200); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

/* ───────── STORY SECTION ───────── */
.story-section { background: #fff; padding: 7rem 0; }

.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}

.story-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); display: flex; align-items: center; gap: 8px; margin-bottom: 1.25rem;
}
.story-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }

.story-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.04em; color: var(--text-dark); margin-bottom: 1.5rem;
}

.story-body p {
  font-size: 0.975rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.25rem;
}
.story-body p:last-child { margin-bottom: 0; }

.story-img {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--navy-mid);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.story-img:hover img { transform: scale(1.04); }

.story-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,31,58,0.7) 100%);
}
.story-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem;
}
.story-img-caption p {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.story-img-caption span {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: #fff;
  line-height: 0.9; display: block; margin-top: 0.25rem;
}

/* ───────── MISSION SECTION ───────── */
.mission-section { background: var(--navy-dark); padding: 7rem 0; position: relative; overflow: hidden; }
.mission-section::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?w=900&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 80%);
  mask-image: linear-gradient(to left, black 0%, transparent 80%);
}

.mission-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }

.mission-block h3 {
  font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.03em;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 12px;
}
.mission-block h3 span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(47,107,255,0.15); border: 1px solid rgba(47,107,255,0.25);
  color: var(--blue-light); flex-shrink: 0;
}
.mission-block p { font-size: 0.975rem; line-height: 1.8; color: rgba(255,255,255,0.5); }

.mission-divider { width: 1px; background: rgba(255,255,255,0.08); }

/* ───────── TEAM SECTION ───────── */
.team-section { background: var(--gray-100); padding: 7rem 0; }

.team-header { text-align: center; margin-bottom: 4rem; }
.team-header .section-label { margin: 0 auto; }
.team-header .section-title { margin: 0 auto 1rem; text-align: center; }
.team-header p { font-size: 1rem; color: var(--gray-600); max-width: 480px; margin: 0 auto; line-height: 1.7; }

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

.team-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(47,107,255,0.08); }

.team-photo {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
  background: var(--navy-mid);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.team-card:hover .team-photo img { transform: scale(1.05); }

.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,0.55) 100%);
}

.team-info { padding: 1.25rem 1.25rem 1.5rem; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 0.2rem; }
.team-title { font-size: 0.78rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.65rem; }
.team-bio { font-size: 0.8rem; color: var(--gray-600); line-height: 1.6; }

.team-linkedin {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 0.85rem; font-size: 0.75rem; font-weight: 600; color: var(--blue);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.team-linkedin:hover { color: var(--blue-dark); }

/* ───────── VALUES SECTION ───────── */
.values-section { background: var(--navy-dark); padding: 7rem 0; }

.values-header { text-align: center; margin-bottom: 4rem; }
.values-header .section-title { color: #fff; margin: 0 auto 1rem; text-align: center; }
.values-header p { font-size: 1rem; color: rgba(255,255,255,0.42); max-width: 480px; margin: 0 auto; line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden; }

.value-card {
  background: rgba(255,255,255,0.02); padding: 2.5rem 2rem;
  transition: background 0.25s;
}
.value-card:hover { background: rgba(47,107,255,0.06); }

.value-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(47,107,255,0.1); border: 1px solid rgba(47,107,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); margin-bottom: 1.25rem;
}
.value-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.value-desc { font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* ───────── GHOST STATS ───────── */
.stats-section { background: var(--navy-dark); overflow: hidden; }
.stats-section-inner { border-top: 1px solid rgba(255,255,255,0.07); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-col { padding: 4rem 3.5rem; border-right: 1px solid rgba(255,255,255,0.07); position: relative; overflow: hidden; }
.stat-col:last-child { border-right: none; }

/* ───────── CTA — about has no stat column ───────── */
.cta-inner { align-items: center; }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .mission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mission-divider { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 3rem 2rem; }
  .stat-col:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .page-hero-meta { gap: 1.5rem; flex-wrap: wrap; }
  .team-grid { grid-template-columns: 1fr; }
}
