/* --- Hero Section --- */
.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/images/hero_wing.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

/* --- Content Sections --- */
.section-title {
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: var(--honda-red);
  margin-top: 8px;
}

.content-text {
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: justify;
}

/* --- Vision & Mission --- */
.vm-card {
  background: #f8f9fa;
  border-left: 5px solid var(--honda-red);
  padding: 2rem;
  height: 100%;
  transition: 0.3s;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  font-size: 2.5rem;
  color: var(--honda-red);
  margin-bottom: 1rem;
}

.vm-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* --- 58 Years Milestone Section --- */
.milestone-section {
  background: linear-gradient(
    135deg,
    var(--honda-red) 0%,
    #c41219 100%
  ); /* Gradasi Merah */
  color: white;
  padding: 5rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Angka 58 Besar di background (Efek watermark) */
.milestone-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1); /* Putih transparan */
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.milestone-content {
  position: relative;
  z-index: 1; /* Agar konten di atas watermark */
}

/* --- One Heart Section --- */
.one-heart-section {
  background-color: #000;
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
  background-image: url("https://placehold.co/1920x400/111/222?text=Pattern");
  /* Bisa diganti pattern */
}

.oh-logo {
  background: white;
  padding: 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--honda-red);
  font-weight: bold;
  font-style: italic;
  padding: 5px 20px;
}

/* --- Values --- */
.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 100px;
  height: 100px;
  background: #fff0f0;
  color: var(--honda-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem auto;
  transition: 0.3s;
}

.value-item:hover .value-icon {
  background: var(--honda-red);
  color: white;
}
