/**
 * About page — token-aligned styles (extracted from inline Blade CSS)
 */
.about-page .values-section {
  background: linear-gradient(135deg, var(--bmga-brand) 0%, var(--bmga-brand-dark) 100%);
}

.about-page .values-section.caro-bg,
.about-page .caro-bg {
  background-color: var(--bmga-brand);
}

.about-page .value-card {
  transition: transform 0.3s ease;
  border-radius: var(--bmga-radius-md);
  box-shadow: var(--bmga-shadow-md);
}

.about-page .value-card:hover {
  transform: translateY(-8px);
}

.about-page .value-icon,
.about-page .icon-bg {
  background: var(--bmga-brand-soft);
  width: 60px;
  height: 60px;
  border-radius: var(--bmga-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .value-title,
.about-page .my_card-title,
.about-page .my_card-text {
  color: var(--bmga-text);
}

.about-page .value-text {
  color: var(--bmga-text-muted);
}

.about-page .carousel-slidess {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 40px;
}

.about-page .cardss-wrapperss {
  flex: 0 0 25%;
  padding: 10px;
  box-sizing: border-box;
  width: 500px;
}

.about-page .cardss {
  background-color: var(--bmga-surface);
  border-radius: var(--bmga-radius-sm);
  padding: 20px;
  text-align: center;
  box-shadow: var(--bmga-shadow-md);
}

.about-page .cardss-icon {
  font-size: 48px;
  margin-bottom: 10px;
  color: var(--bmga-brand);
}

.about-page .my_card {
  border: none;
  border-radius: var(--bmga-radius-md);
  box-shadow: var(--bmga-shadow-md);
  width: 290px;
  height: 358px;
  background: var(--bmga-surface);
}

.about-page .about-title {
  font-family: var(--bmga-font-display);
  font-weight: 500;
  font-size: 35px;
  line-height: 1;
}

.about-page .bmga {
  margin-bottom: 15px;
  font-size: 40px;
  line-height: 1;
  color: var(--bmga-brand);
  font-family: var(--bmga-font-display);
}

.about-page .about-p {
  font-size: 18px;
  line-height: 1.6;
}

.about-page .stat-box h3,
.about-page .span-k {
  color: var(--bmga-brand);
}

.about-page .stat-box h3 {
  font-size: 50px;
  margin-bottom: 5px;
}

.about-page .span-k {
  font-size: 22px;
  font-weight: 600;
}

.about-page .stat-box p {
  font-size: 20px;
  color: var(--bmga-text);
}

.about-page .stat-bg {
  background: #f5fbff;
}

.about-page .our-story {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}

.about-page .our-story img {
  width: 50%;
  object-fit: cover;
}

.about-page .our-story-text {
  width: 50%;
  background: var(--bmga-brand);
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .story-title {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.about-page .story-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

.about-page .offer-section {
  padding: 60px 20px;
  max-width: var(--bmga-container-wide);
  margin: auto;
}

.about-page .offer-section h2 span {
  border-bottom: 3px solid var(--bmga-brand);
  padding-bottom: 5px;
}

.about-page .carousel {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: var(--bmga-radius-md);
  box-shadow: var(--bmga-shadow-lg);
}

.about-page .carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.about-page .carousel-slide {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: var(--bmga-surface);
  align-items: center;
  padding: 20px;
}

.about-page .carousel-slide img {
  width: 50%;
  border-top-left-radius: var(--bmga-radius-md);
  border-bottom-left-radius: var(--bmga-radius-md);
  object-fit: cover;
}

.about-page .carousel-text {
  width: 50%;
  padding: 20px;
  text-align: left;
}

.about-page .carousel-text h3,
.about-page .indicator.active {
  color: var(--bmga-brand);
}

.about-page .logo-card {
  background: var(--bmga-brand);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page .strike-bar {
  display: inline-block;
  width: 48px;
  height: 5px;
  background: var(--bmga-brand);
  border-radius: 3px;
  margin-bottom: 16px;
}

.about-page .btn-custom {
  background: var(--bmga-brand);
  color: #fff;
  border-radius: var(--bmga-radius-sm);
  border: none;
}

.about-page .btn-custom:hover {
  background: var(--bmga-brand-dark);
  color: #fff;
}

@media (max-width: 768px) {
  .about-page .our-story {
    flex-direction: column;
  }

  .about-page .our-story img,
  .about-page .our-story-text {
    width: 100%;
  }

  .about-page .carousel-slide {
    flex-direction: column;
  }

  .about-page .carousel-slide img,
  .about-page .carousel-text {
    width: 100%;
    border-radius: 0;
  }
}
