/* ===================== ABOUT PAGE CSS ===================== */

/* Hero */
.about-hero {
  background: #f7f7f7;
  padding: 80px 0;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-content {
  display: flex;
  flex-direction: column;
}
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,23,51,0.08);
  color: #b01733;
  border: 1.5px solid rgba(176,23,51,0.2);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}
.about-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin: 0 0 20px;
}
.about-hero-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.about-hero-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

/* Stats Bar */
.about-stats {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 40px 0;
}
.about-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.about-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.about-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #b01733;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}
.about-stat-divider {
  width: 1px;
  height: 50px;
  background: #f0f0f0;
  flex-shrink: 0;
}

/* Shared Section Labels */
.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf0f2;
  color: #b01733;
  border: 1.5px solid #f5c6ce;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.about-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0 0 20px;
}

/* Our Story */
.about-story {
  padding: 80px 0;
  background: #fafafa;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-img {
  position: relative;
}
.about-story-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}
.about-story-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #b01733;
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(176,23,51,0.4);
}
.about-story-img-badge .fas { font-size: 18px; }
.about-story-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 16px;
}

/* Values */
.about-values {
  padding: 80px 0;
  background: #fff;
}
.about-values-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-values-header .about-section-label { margin: 0 auto 14px; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-value-card {
  background: #fafafa;
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}
.about-value-card:hover {
  border-color: #b01733;
  box-shadow: 0 4px 20px rgba(176,23,51,0.1);
  transform: translateY(-4px);
}
.about-value-icon {
  width: 56px;
  height: 56px;
  background: #fdf0f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.about-value-icon .fas { font-size: 22px; color: #b01733; }
.about-value-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
}
.about-value-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us */
.about-why {
  padding: 80px 0;
  background: #fafafa;
}
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.about-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-why-check {
  width: 28px;
  height: 28px;
  background: #b01733;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-why-check .fas { font-size: 12px; color: #fff; }
.about-why-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.about-why-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.about-why-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Team */
.about-team {
  padding: 80px 0;
  background: #fff;
}
.about-team-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-team-header .about-section-label { margin: 0 auto 14px; }
.about-team-desc {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-team-card {
  background: #fafafa;
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}
.about-team-card:hover {
  border-color: #b01733;
  box-shadow: 0 4px 20px rgba(176,23,51,0.08);
}
.about-team-avatar {
  margin: 0 auto 16px;
  width: 80px;
  height: 80px;
}
.about-team-avatar-placeholder {
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-team-avatar-placeholder .fas { font-size: 32px; color: #ccc; }
.about-team-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
}
.about-team-role {
  font-size: 13px;
  color: #b01733;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-team-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Team Photo */
.about-team-photo-section {
  padding: 80px 0;
  background: #f7f7f7;
  border-top: 1px solid #eee;
}
.about-team-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-team-photo-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-team-photo-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.about-team-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
}
.about-team-photo-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #b01733;
  margin-bottom: 12px;
}
.about-team-photo-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #111;
  margin: 0 0 20px;
  line-height: 1.25;
}
.about-team-photo-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 14px;
}
.about-team-photo-text p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .about-team-photo-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-team-photo-img img { height: 240px; }
  .about-team-photo-text h2 { font-size: 24px; }
}

/* CTA */
.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0a0e 0%, #2d1017 100%);
}
.about-cta-inner {
  text-align: center;
}
.about-cta h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.about-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
}
.about-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-cta-btn-primary {
  background: #b01733;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.about-cta-btn-primary:hover { background: #8f1228; }
.about-cta-btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.about-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
