/* =====================================================
   About Page — Premium Styles
   Sunshine Home Painting Service · 2026
   ====================================================== */

/* ---------- Story Section ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-story-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-story-text h2 span { color: #60c3ad; }
.about-story-text p {
  font-size: .97rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-story-visual {
  position: relative;
}
.about-story-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0f5f0 0%, #c4f3ef 50%, #92dbd5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(96,195,173,.2);
}
.about-story-img svg {
  width: 55%;
  height: 55%;
  opacity: .45;
}
.story-floating-card {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.story-floating-card .fc-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60c3ad;
  line-height: 1;
}
.story-floating-card .fc-label {
  font-size: .78rem;
  color: #64748b;
  line-height: 1.3;
}

/* ---------- Stats Row ---------- */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-stat-card {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.about-stat-card:hover { transform: translateY(-4px); }
.about-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
}
.about-stat-card .as-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3faf9, #e0f5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.about-stat-card .as-icon svg { width: 22px; height: 22px; fill: #60c3ad; }
.about-stat-card .as-num {
  font-size: 2rem;
  font-weight: 700;
  color: #60c3ad;
  line-height: 1.1;
}
.about-stat-card .as-label {
  font-size: .85rem;
  color: #64748b;
  margin-top: 4px;
}

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.mv-card:hover { transform: translateY(-4px); }
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.mv-card.mission::before { background: linear-gradient(90deg, #60c3ad, #3ee3d8); }
.mv-card.vision::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.mv-card .mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mv-card.mission .mv-icon { background: linear-gradient(135deg, #60c3ad, #3ee3d8); }
.mv-card.vision .mv-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.mv-card .mv-icon svg { width: 26px; height: 26px; fill: #fff; }
.mv-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}
.mv-card p {
  font-size: .95rem;
  color: #475569;
  line-height: 1.75;
}

/* ---------- Values Section ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.value-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
  transition: width .3s, left .3s;
}
.value-item:hover::after { width: 100%; left: 0; }
.value-item .icon-circle {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
}
.value-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}
.value-item p {
  font-size: .9rem;
  color: #475569;
  line-height: 1.65;
}

/* ---------- Process Steps ---------- */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #c4f3ef, #60c3ad, #c4f3ef);
  z-index: 0;
}
.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.process-card .pc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(96,195,173,.3);
}
.process-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 6px;
}
.process-card p {
  font-size: .82rem;
  color: #64748b;
  line-height: 1.55;
}

/* ---------- Brands Strip ---------- */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.brand-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  font-size: .95rem;
  font-weight: 600;
  color: #334155;
  transition: transform .3s, box-shadow .3s;
}
.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

/* ---------- Service Areas Grid ---------- */
.areas-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-chip {
  background: #fff;
  border: 1.5px solid #e0f5f0;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .88rem;
  color: #334155;
  font-weight: 500;
  transition: all .25s;
}
.area-chip:hover {
  background: #60c3ad;
  color: #fff;
  border-color: #60c3ad;
  transform: translateY(-2px);
}

/* ---------- Testimonials Row ---------- */
.about-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .story-floating-card { right: 10px; bottom: -10px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps-grid::before { display: none; }
  .about-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .process-steps-grid { grid-template-columns: 1fr
}

/* ---------- Values Section ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.value-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #60c3ad, #3ee3d8);
  transition: width .3s, left .3s;
}
.value-item:hover::after { width: 100%; left: 0; }
.value-item .icon-circle {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
}
.value-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}
.value-item p {
  font-size: .9rem;
  color: #475569;
  line-height: 1.65;
}

/* ---------- Process Steps ---------- */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #c4f3ef, #60c3ad, #c4f3ef);
  z-index: 0;
}
.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.process-card .pc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60c3ad, #3ee3d8);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(96,195,173,.3);
}
.process-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 6px;
}
.process-card p {
  font-size: .82rem;
  color: #64748b;
  line-height: 1.55;
}

/* ---------- Brands Strip ---------- */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.brand-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  font-size: .95rem;
  font-weight: 600;
  color: #334155;
  transition: transform .3s, box-shadow .3s;
}
.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

/* ---------- Service Areas Grid ---------- */
.areas-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-chip {
  background: #fff;
  border: 1.5px solid #e0f5f0;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .88rem;
  color: #334155;
  font-weight: 500;
  transition: all .25s;
}
.area-chip:hover {
  background: #60c3ad;
  color: #fff;
  border-color: #60c3ad;
  transform: translateY(-2px);
}

/* ---------- Testimonials Row ---------- */
.about-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .story-floating-card { right: 10px; bottom: -10px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps-grid::before { display: none; }
  .about-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .process-steps-grid { grid-template-columns: 1fr 1fr; }
}
