/* ── About Page Banner ── */
.about-banner {
  position: relative;
  height: 220px;
  background:
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80')
    center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.about-banner-overlay h1 {
  color: #00ccff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

.about-banner-overlay p {
  color: #ddd;
  font-size: 16px;
}

/* ── Tag Label ── */
.about-tag {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Who We Are ── */
.about-who {
  padding: 80px 20px;
  background: #fff;
}

.about-who-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-who-img {
  flex: 0 0 420px;
  height: 320px;
  border-radius: 10px;
  background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=800&q=80')
    center center / cover no-repeat;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-who-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-who-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.about-page-btn {
  display: inline-block;
  margin-top: 8px;
  background: #00aaff;
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}

.about-page-btn:hover {
  background: #0088cc;
  transform: translateY(-1px);
}

/* ── Why Choose Us ── */
.about-why {
  background: #0d1b2a;
  padding: 80px 20px;
}

.about-why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-why-inner h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.why-card {
  background: #132030;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 170, 255, 0.12);
  border-top: 3px solid #00aaff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  border-color: rgba(0, 170, 255, 0.35);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 170, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: #00aaff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #7a95b0;
}

/* ── Service Area ── */
.about-area {
  padding: 80px 20px;
  background: #fff;
}

.about-area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-area-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-area-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 28px;
}

.area-list li {
  font-size: 14px;
  color: #333;
  padding-left: 20px;
  position: relative;
}

.area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: 900;
}

.about-area-img {
  flex: 0 0 420px;
  height: 320px;
  border-radius: 10px;
  background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=800&q=80')
    center center / cover no-repeat;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ── Stats Bar ── */
.about-stats-bar {
  background: #0e0e0e;
  padding: 50px 20px;
}
.about-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.about-stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #00aaff;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}

/* ── Our Story ── */
.about-story {
  padding: 90px 20px;
  background: #f9f9f9;
}
.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-story-text {
  flex: 1;
}
.about-story-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-story-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.about-story-img {
  flex: 0 0 420px;
  height: 360px;
  border-radius: 10px;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&q=80')
    center center / cover no-repeat;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ── How It Works / Process ── */
.about-process {
  background: #fff;
  padding: 90px 20px;
}
.about-process-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-process-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 12px;
}
.about-process-sub {
  font-size: 16px;
  color: #777;
  margin-bottom: 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.process-step {
  background: #f7f9fc;
  border-radius: 10px;
  padding: 32px 28px;
  border-top: 4px solid #00aaff;
  position: relative;
}
.process-num {
  font-size: 48px;
  font-weight: 900;
  color: #e8f4ff;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Segoe UI', sans-serif;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}

/* ── Meet the Team ── */
.about-team {
  background: #f4f4f4;
  padding: 90px 20px;
}
.about-team-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-team-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 12px;
}
.about-team-sub {
  font-size: 16px;
  color: #777;
  margin-bottom: 50px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 18px;
}
.team-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  font-weight: 700;
  color: #00aaff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

/* ── Equipment Section ── */
.about-equipment {
  background: #fff;
  padding: 90px 20px;
}
.about-equipment-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-equipment-img {
  flex: 0 0 420px;
  height: 360px;
  border-radius: 10px;
  background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=800&q=80')
    center center / cover no-repeat;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.about-equipment-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #1f1f1f;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-equipment-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.equipment-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.equipment-list li {
  font-size: 14px;
  color: #333;
  padding-left: 20px;
  position: relative;
  font-weight: 600;
}
.equipment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: 900;
}

/* ── Community ── */
.about-community {
  background: #0e0e0e;
  padding: 90px 20px;
}
.about-community-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.about-community-inner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 48px;
}
.about-community-inner .about-tag {
  margin-bottom: 14px;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.community-block {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px 28px;
  border-left: 4px solid #00aaff;
}
.community-block h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.community-block p {
  font-size: 14px;
  line-height: 1.75;
  color: #888;
}

/* ── Active nav link ── */
.nav-links a.active {
  color: #00aaff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-who-inner,
  .about-area-inner,
  .about-story-inner,
  .about-equipment-inner {
    flex-direction: column;
  }

  .about-who-img,
  .about-area-img,
  .about-story-img,
  .about-equipment-img {
    flex: none;
    width: 100%;
    height: 240px;
  }

  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .equipment-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
