/* ===============================
   ABOUT PAGE – RONNIE UI (FINAL)
=============================== */

/* ---------- HERO SECTION ---------- */

.about-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(28, 28, 28, 0.95) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  border-bottom: 1px solid rgba(167, 34, 29, 0.35);
  overflow: hidden;
} /* Diagonal texture */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.025) 2px,
    transparent 2px,
    transparent 8px
  );
  pointer-events: none;
} /* Title */
.about-hero-title {
  font-family: "Antonio", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.about-hero-title span {
  color: var(--primary-red);
} /* Subtitle */
.about-hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
} /* ---------- STORY SECTION ---------- */
.about-story-card {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.95),
    rgba(10, 10, 10, 0.95)
  );
  border: 1px solid rgba(167, 34, 29, 0.25);
  border-radius: 18px;
  padding: 4rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  position: relative;
} /* Soft red accent strip */
.about-story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 4px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-red),
    transparent
  );
  border-radius: 4px;
} /* Section Headings */
.about-story-card h2 {
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}
.about-story-card h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-red);
  display: block;
  margin: 12px auto 0;
}
.about-story-card h3 {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}
.about-story-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--primary-red);
  margin-top: 6px;
} /* Paragraph styling */
.about-story-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.8rem;
  max-width: 92%;
}
/* =================================================
   SHARED CARD BASE (NO GLOW BY DEFAULT)
================================================= */

.adv-card,
.why-card,
.growth-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(167, 34, 29, 0.25);
  border-radius: 16px;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* HOVER ONLY GLOW */
.adv-card:hover,
.why-card:hover,
.growth-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 0 34px rgba(167, 34, 29, 0.45);
}

/* ===============================
   ADVANTAGE CARDS
=============================== */

.adv-card {
  padding: 2.8rem 2.2rem;
  text-align: center;
}

.adv-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: rgba(167, 34, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.adv-icon i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.adv-card:hover .adv-icon {
  background: var(--primary-red);
  transform: scale(1.15);
}

.adv-card:hover .adv-icon i {
  color: #fff;
}

.adv-card h4 {
  font-family: "Antonio", sans-serif;
  color: #fff;
}

.adv-card p {
  color: var(--text-gray);
}

/* ===============================
   WHY CHOOSE RONNIE
=============================== */

.why-card {
  padding: 2.8rem;
}

.why-card-title {
  font-family: "Antonio", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
}

.why-card-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary-red);
  display: block;
  margin-top: 6px;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.why-item i {
  color: var(--primary-red);
}

.why-item h4 {
  color: #fff;
}

.why-item p {
  color: var(--text-gray);
}

/* ===============================
   GROWTH PARTNERSHIP
=============================== */

.growth-card {
  padding: 2.6rem;
  text-align: center;
}

.growth-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(167, 34, 29, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.growth-icon i {
  font-size: 1.6rem;
  color: var(--primary-red);
}

.growth-card:hover .growth-icon {
  background: var(--primary-red);
}

.growth-card:hover .growth-icon i {
  color: #fff;
}

.growth-card h4 {
  font-family: "Antonio", sans-serif;
  color: #fff;
}

.growth-card p {
  color: var(--text-gray);
}

/* ---------- MOBILE ---------- */

@media (max-width: 576px) {
  .adv-card,
  .growth-card {
    max-width: 90%;
    margin: 0 auto;
    padding: 1.8rem 1.4rem;
  }

  .adv-icon,
  .growth-icon {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.4rem;
  }
}
