/* ============================================================
   ABOUT PAGE — PREMIUM CLEAN DESIGN
   Modern container layout with enhanced styling
============================================================ */

.about-section {
  padding: 80px 20px;
  background: #f5f5f5;
  font-family: "Inter", sans-serif;
}

/* Premium White Container */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* =========================================
   HEADER SECTION
========================================= */
.about-header h1 {
  font-size: 42px;
  font-family: "Poppins", sans-serif;
  color: #c62828;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-header .tagline {
  text-align: center;
  font-size: 20px;
  color: #666;
  margin-bottom: 50px;
  font-weight: 400;
}

/* =========================================
   CONTENT LAYOUT (TEXT + IMAGE)
========================================= */
.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

/* Text Section */
.about-text {
  flex: 1;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text strong {
  color: #c62828;
  font-weight: 600;
}

/* Image Section */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f5f5f5;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

/* =========================================
   TRUST STATS ROW
========================================= */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0 60px;
  padding: 36px 30px;
  background: linear-gradient(135deg, #c62828 0%, #a31616 100%);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(198, 40, 40, 0.25);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 16px;
    gap: 16px;
    margin: 36px 0 40px;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 16px;
  }

  .stat-card:nth-child(2n) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   SECTION BLOCKS
========================================= */
.milestones,
.brands,
.what-we-offer,
.community {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #f5f5f5;
}

.about-section h2 {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #c62828;
  margin-bottom: 24px;
  font-weight: 600;
}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

/* Timeline-style milestones */
.milestones ul {
  border-left: 3px solid #c62828;
  padding-left: 20px;
  margin-left: 8px;
}

.about-section ul li {
  padding: 10px 0 10px 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  position: relative;
  margin-bottom: 4px;
}

.milestones ul li::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #c62828;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #c62828;
}

.what-we-offer ul li::before,
.about-section ul li::before {
  display: none;
}

.what-we-offer ul li {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #444;
}

/* Internal link styles inside about content */
.about-text a {
  color: #c62828;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.about-text a:hover {
  color: #a31616;
  text-decoration-style: solid;
}

/* What We Offer CTA */
.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #c62828, #a31616);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(198, 40, 40, 0.3);
}

.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
  color: #fff;
}

/* =========================================
   BRAND LIST (TAGS)
========================================= */
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.brand-list span {
  background: linear-gradient(135deg, #c62828, #a31616);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-list span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.3);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
  .about-wrapper {
    padding: 50px 40px;
  }

  .about-header h1 {
    font-size: 32px;
  }

  .about-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 16px;
  }

  .about-wrapper {
    padding: 30px 20px;
  }

  .about-header h1 {
    font-size: 28px;
  }

  .about-header .tagline {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .about-content {
    flex-direction: column;
    gap: 20px;
  }

  .about-text {
    font-size: 15px;
    text-align: left;
  }

  .about-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-wrapper {
    padding: 30px 20px;
  }

  .about-header h1 {
    font-size: 26px;
  }

  .about-header .tagline {
    font-size: 16px;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-section ul li {
    font-size: 15px;
    padding-left: 24px;
  }

  .brand-list span {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* h1/h2/p responsive sizing handled globally in common.css */
