.about-brand-section {
  padding: 40px 0 0;
  background-color: #b50804;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TITLE */
.brand-q {
  font-size: 3.5rem;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  text-align: center;
}

.brand-logo-inline {
  height: 45px;
}

/* MAIN GRID */
.brand-grid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 50px;
  align-items: stretch;
  color: #fff;
}

/* LEFT IMAGE */
.brand-image {
  height: 100%;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}

/* RIGHT TEXT */
.brand-text {
  padding: 20px 0;
  text-align: left;
  font-weight: 500;
}

.brand-text p {
  margin-bottom: 34px;
  line-height: 1.6;
  font-size: 1.65rem;
}

.about-highlight {
  color: #fbd154;
}

/* MISSION + VISION */
.mission-vision-grid {
  margin-top: 50px;
  text-align: center;
}

.brand-feature-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.35rem;
  line-height: 1.9;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-card {
  padding: 40px 24px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-card h3 {
  font-size: 1.6rem;
  margin: 5px 0 0;
  font-weight: 800;
}

.info-card p {
  font-size: 1.1rem;
  color: #333;
}

.about-card {
  background: linear-gradient(135deg, #ffdd00 0%, #ffbe54 50%, #ff954e 100%);
}

.icon-box img {
  width: 80px;
  height: 80px;
}

.info-card p {
  margin-bottom: 0px;
}

/* ===============================
   BRAND FOOTER (FIX TOTAL)
================================ */

.brand-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;          /* tetap 1 baris */
  width: 100%;                /* ⭐ ikut layar */
  max-width: 600px;
  margin: 45px auto 35px;
  padding: 12px 20px;
  gap: 15px;

  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Logo boleh mengecil */
.brand-footer-image {
  flex: 0 1 auto;
}

.brand-footer-image img {
  display: block;
  height: clamp(35px, 7vw, 80px); /* ⭐ auto shrink logo */
  width: auto;
}

/* Text tetap 1 baris */
.brand-footer-text {
  color: #cc0000;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: bold;
  font-family: "Microsoft YaHei", sans-serif;
  white-space: nowrap;
  min-width: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-image {
    display: none;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }

  .brand-q {
    font-size: 2.5rem;
  }

  .brand-text p {
    font-size: 1rem;
  }

  .info-card {
    padding: 17px 12px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 300px;
  }

  .info-card h3 {
    font-size: 1rem;
    margin: 0;
  }

  .info-card p {
    font-size: 1rem;
  }

  .icon-box img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 600px) {

  .brand-q {
    font-size: 2.1rem;
    width: 100%;
  }

  .brand-footer {
    max-width: 100%;     /* ⭐ layar kecil full width */
    padding: 10px 15px;
    gap: 10px;
  }
}
