/* =========================================================
   PRO STEROID — ABOUT US STYLESHEET
   Extends css/style.css (shared header/footer/design tokens)
========================================================= */

/* ---------------------------------------------------------
   BREADCRUMB
--------------------------------------------------------- */
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: #a0a0a0; margin-bottom: 18px; }
.breadcrumb a { color: #a0a0a0; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb i { font-size: 0.65rem; color: #666; }
.breadcrumb span { color: var(--green); font-weight: 600; }

/* ---------------------------------------------------------
   HEADER / NAV OVERRIDES
--------------------------------------------------------- */
.nav-list-uppercase .nav-link { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.3px; }
.nav-hot-badge {
  display: inline-block;
  background: #e14b4b;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.hero-label-plain {
  background: none;
  border: none;
  padding: 0;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.78rem;
  display: inline-block;
  margin-bottom: 10px;
}
.footer-link-active { color: var(--green) !important; font-weight: 600; }

/* ---------------------------------------------------------
   SHARED SECTION HEADINGS
--------------------------------------------------------- */
.about-section-title { font-size: 1.6rem; margin-bottom: 10px; }
.about-section-title-center { text-align: center; }
.about-section-subtitle { text-align: center; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 36px; }

/* ---------------------------------------------------------
   ABOUT HERO
--------------------------------------------------------- */
.about-hero { background: linear-gradient(135deg, var(--dark) 60%, #1a1a1a 100%); color: var(--white); overflow: hidden; }
.about-hero-inner { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: stretch; min-height: 460px; }
.about-hero-content { display: flex; flex-direction: column; justify-content: center; padding: 56px 40px 56px 0; }
.about-hero-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.25; margin-bottom: 18px; }
.about-hero-title .accent { color: var(--green); }
.about-hero-text { color: #b8b8b8; font-size: 0.92rem; line-height: 1.7; max-width: 560px; margin-bottom: 12px; }

.about-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; max-width: 560px; }
.mini-trust-item { display: flex; align-items: flex-start; gap: 10px; }
.mini-trust-item i { color: var(--green); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.mini-trust-item strong { display: block; font-size: 0.82rem; color: var(--white); }
.mini-trust-item span { font-size: 0.72rem; color: #999; }

.about-hero-media { position: relative; }
.about-hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(17,17,17,0.5) 18%, rgba(17,17,17,0) 45%);
}

/* ---------------------------------------------------------
   STATISTICS STRIP
--------------------------------------------------------- */
.about-stats-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 26px 0; }
.about-stats-grid { display: flex; justify-content: space-between; }
.about-stat-item { flex: 1; text-align: center; position: relative; padding: 0 12px; }
.about-stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: var(--border); }
.about-stat-item i { color: var(--green-dark); font-size: 1.3rem; margin-bottom: 8px; display: block; }
.about-stat-item strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.about-stat-item span { font-size: 0.76rem; color: var(--text-muted); }

/* ---------------------------------------------------------
   WHY CHOOSE PRO STEROID
--------------------------------------------------------- */
.why-choose-section { padding: 56px 0; background: var(--light-gray); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 18px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.why-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ---------------------------------------------------------
   MISSION & VISION
--------------------------------------------------------- */
.mission-section { padding: 56px 0; background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.mission-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.mission-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.mission-text h2 { font-size: 1.3rem; margin-bottom: 10px; }
.mission-text h2:not(:first-of-type) { margin-top: 22px; }
.mission-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---------------------------------------------------------
   QUALITY PROMISE
--------------------------------------------------------- */
.quality-section { padding: 56px 0; background: var(--light-gray); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.quality-intro { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 10px 0 18px; }
.quality-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.quality-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--dark); }
.quality-checklist i { color: var(--green-dark); margin-top: 3px; }

.quality-image { display: flex; align-items: center; justify-content: center; }
.product-lineup {
  width: 100%;
  aspect-ratio: 4/3;
  background: radial-gradient(circle at 60% 30%, #262626, #050505 75%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4%;
  padding: 12% 8% 0;
}
.lineup-item { border-radius: 10px 10px 4px 4px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 6px 14px rgba(0,0,0,0.4); }
.lineup-jar-sm { width: 10%; height: 42%; background: linear-gradient(180deg, #4a4a4a, #232323); align-self: flex-end; }
.lineup-bottle-short { width: 9%; height: 55%; background: linear-gradient(180deg, #2f8f3a, #14571c); }
.lineup-jar { width: 13%; height: 68%; background: linear-gradient(180deg, #d8a63d, #a97b1e); }
.lineup-tub {
  width: 26%;
  height: 100%;
  background: linear-gradient(180deg, #2b2b2b 0%, #0c0c0c 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lineup-tub-label {
  width: 84%;
  background: linear-gradient(180deg, #b3181c, #7a0f12);
  border-radius: 4px;
  padding: 10px 4px;
  text-align: center;
  color: var(--white);
}
.lineup-tub-label em { display: block; font-style: normal; font-size: 0.5rem; letter-spacing: 1px; opacity: 0.85; }
.lineup-tub-label strong { display: block; font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; }
.lineup-bottle-tall { width: 10%; height: 88%; background: linear-gradient(180deg, #3a3a3a, #161616); }
.lineup-vial { width: 7%; height: 34%; background: linear-gradient(180deg, #c7c7c7, #8a8a8a); }

/* ---------------------------------------------------------
   MEET OUR TEAM
--------------------------------------------------------- */
.team-section { padding: 56px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; filter: grayscale(0.1); }
.team-card-body { padding: 18px; color: var(--white); }
.team-card-body h3 { font-size: 0.95rem; margin-bottom: 3px; }
.team-role { display: block; font-size: 0.76rem; color: var(--green); margin-bottom: 10px; }
.team-card-body p { font-size: 0.78rem; color: #a8a8a8; line-height: 1.5; margin-bottom: 14px; }
.team-card .social-icons a { background: rgba(255,255,255,0.08); color: #cfcfcf; }
.team-card .social-icons a:hover { background: var(--green); color: var(--dark); }

/* ---------------------------------------------------------
   OUR FACILITIES
--------------------------------------------------------- */
.facilities-section { padding: 56px 0; background: var(--light-gray); }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.facility-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.facility-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.facility-card figcaption { padding: 12px; text-align: center; font-size: 0.85rem; font-weight: 700; color: var(--dark); }

/* ---------------------------------------------------------
   TRUSTED BY ATHLETES (BRAND STRIP)
--------------------------------------------------------- */
.brands-section { padding: 48px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-strip { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #9a9e9a;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--transition), opacity var(--transition);
}
.brand-wordmark:hover { filter: grayscale(0); opacity: 1; }
.brand-wordmark small { font-weight: 600; font-size: 0.5rem; letter-spacing: 1.5px; margin-top: 4px; color: inherit; }
.brand-dymatize { color: #1a1a1a; font-style: italic; }
.brand-bsn { color: #b3181c; }
.brand-on { color: #1a1a1a; font-size: 1.3rem; }
.brand-muscletech { color: #1a1a1a; font-style: italic; letter-spacing: 0.5px; }
.brand-evl { color: #2f8f3a; }
.brand-rc { color: #1a3aa8; font-size: 1.3rem; }

/* ---------------------------------------------------------
   CUSTOMER TESTIMONIALS
--------------------------------------------------------- */
.about-testimonials-section { padding: 56px 0; background: var(--light-gray); }
.about-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.review-card .stars { color: var(--green); font-size: 0.85rem; display: block; margin-bottom: 12px; }
.review-card > p { font-size: 0.88rem; color: var(--dark); line-height: 1.6; margin-bottom: 16px; }
.review-card-head { display: flex; align-items: center; gap: 10px; }
.review-card-head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card-head strong { display: block; font-size: 0.86rem; color: var(--dark); }
.review-card-head .verified { font-size: 0.72rem; color: var(--text-muted); }

/* ---------------------------------------------------------
   BENEFITS FOR YOUR JOURNEY
--------------------------------------------------------- */
.journey-section { padding: 56px 0; background: var(--white); }
.journey-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px 30px;
  gap: 16px;
}
.journey-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--dark); position: relative; padding-right: 16px; }
.journey-item:not(:last-child)::after { content: ""; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); width: 1px; height: 22px; background: var(--border); }
.journey-item i { color: var(--green-dark); font-size: 1.05rem; }

/* ---------------------------------------------------------
   NEWSLETTER (compact bar)
--------------------------------------------------------- */
.privacy-newsletter-section { background: var(--dark); padding: 34px 0; }
.privacy-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.privacy-newsletter-text { display: flex; align-items: center; gap: 16px; color: var(--white); }
.privacy-newsletter-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(53,199,89,0.15);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.privacy-newsletter-text h2 { font-size: 1.05rem; margin-bottom: 4px; }
.privacy-newsletter-text p { font-size: 0.82rem; color: #a0a0a0; }
.privacy-newsletter-form { display: flex; gap: 10px; flex: 0 1 440px; }
.privacy-newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--dark-soft);
  color: var(--white);
}
.privacy-newsletter-form input::placeholder { color: #888; }
.privacy-newsletter-message { max-width: 1320px; margin: 10px auto 0; padding: 0 24px; text-align: right; color: var(--white); }
.privacy-newsletter-message.success { color: var(--green); }
.privacy-newsletter-message.error { color: #ff7676; }

/* ---------------------------------------------------------
   FLOATING WHATSAPP BUTTON
--------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  z-index: 300;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------------------------------------------------------
   SUBTLE SCROLL REVEAL
--------------------------------------------------------- */
.reveal-init { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .about-hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .about-hero-media { min-height: 260px; order: -1; }
  .about-hero-media::before { background: linear-gradient(180deg, var(--dark) 0%, rgba(17,17,17,0) 40%); }
  .about-hero-content { padding: 40px 24px; }
  .about-stats-grid { flex-wrap: wrap; }
  .about-stat-item { flex: 1 1 33%; margin-bottom: 16px; }
  .about-stat-item:nth-child(3)::after { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .quality-grid { grid-template-columns: 1fr; }
  .quality-image { order: -1; }
}

@media (max-width: 767px) {
  .about-trust-grid { grid-template-columns: 1fr; }
  .about-stat-item { flex: 1 1 50%; margin-bottom: 16px; }
  .about-stat-item::after { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .brands-strip { justify-content: center; }
  .journey-strip { flex-direction: column; align-items: flex-start; }
  .journey-item:not(:last-child)::after { display: none; }
}
