/* ===== AWARDS.HTML STYLESHEET ===== */
.page-hero {
  background: var(--honda-black);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1567443024551-f3e3cc2be870?w=1400&q=80")
    center/cover;
  opacity: 0.2;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honda-red);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.page-hero p {
  color: #aaa;
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 500px;
}
.stats-bar {
  background: var(--honda-red);
  padding: 20px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}
.awards-section {
  padding: 80px 0;
  background: white;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.award-card {
  background: var(--honda-black);
  color: white;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.award-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--honda-red), var(--honda-gold));
}
.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.award-year {
  font-family: var(--font-condensed);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.award-icon {
  font-size: 2.5rem;
  color: var(--honda-gold);
  margin-bottom: 20px;
}
.award-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.award-by {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--honda-red);
  margin-bottom: 12px;
}
.award-desc {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.6;
}
.certifications {
  padding: 80px 0;
  background: var(--honda-light-gray);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.cert-card {
  background: white;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cert-card i {
  font-size: 2.5rem;
  color: var(--honda-red);
  margin-bottom: 16px;
}
.cert-card h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cert-card p {
  color: #777;
  font-size: 0.85rem;
  line-height: 1.5;
}
.testimonial-wall {
  padding: 80px 0;
  background: var(--honda-black);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.t-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  transition: var(--transition);
}
.t-card:hover {
  border-color: var(--honda-red);
}
.t-stars {
  color: var(--honda-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.t-text {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.t-author {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}
.t-car {
  font-size: 0.8rem;
  color: var(--honda-red);
}
@media (max-width: 768px) {
  .awards-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border: none;
  }
}
