/* repair-page.css - modern full width repair page */

.rd-repair-hero{
  background: linear-gradient(90deg, rgba(0,152,153,.20), rgba(0,0,0,.06));
  padding: 36px 0 26px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.rd-repair-hero h1{
  margin:0 0 8px;
  font-size: 36px;
  font-weight: 1000;
  color:#052f30;
}

.rd-repair-hero p{
  margin:0 0 18px;
  font-weight: 850;
  color: rgba(0,0,0,.62);
  max-width: 920px;
}

.rd-repair-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.rd-repair-btn{
  background: #009899;
  color:#fff;
  font-weight: 950;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  transition: .25s ease;
}
.rd-repair-btn:hover{
  transform: translateY(-4px);
  background: #007c7d;
}

.rd-repair-wrap{
  padding: 30px 0 40px;
}

.rd-repair-grid{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items:start;
}

.rd-repair-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.rd-repair-card h2{
  margin:0 0 12px;
  font-size: 22px;
  font-weight: 1000;
  color:#052f30;
}

.rd-repair-card h3{
  margin:18px 0 10px;
  font-size: 18px;
  font-weight: 1000;
  color:#052f30;
}

.rd-repair-card p{
  margin:0 0 12px;
  font-weight: 780;
  color: rgba(0,0,0,.65);
  line-height: 1.85;
  font-size: 14.6px;
}

.rd-repair-list{
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.85;
  font-weight: 850;
  color: rgba(0,0,0,.66);
}

.rd-repair-highlight{
  margin: 18px 0;
  padding: 16px;
  background: rgba(0,152,153,.08);
  border: 1px solid rgba(0,152,153,.14);
  border-radius: 16px;
  font-weight: 900;
  color:#044444;
}

.rd-repair-brands{
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.16);
  background: rgba(0,0,0,.03);
}

.rd-repair-side{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.rd-side-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.rd-side-card h3{
  margin:0 0 8px;
  font-size: 16px;
  font-weight: 1000;
  color:#052f30;
}

.rd-side-card p{
  margin:0;
  font-weight: 820;
  color: rgba(0,0,0,.63);
  line-height: 1.7;
  font-size: 14px;
}

.rd-side-link{
  display:inline-block;
  margin-top: 12px;
  font-weight: 1000;
  color:#007c7d;
  text-decoration: underline;
}

.rd-repair-banner{
  margin-top: 24px;
  display:flex;
  justify-content:flex-end;
}

.rd-repair-banner img{
  width: 100%;
  max-width: 760px;
  display:block;
}

/* responsive */
@media (max-width: 980px){
  .rd-repair-grid{
    grid-template-columns: 1fr;
  }
  .rd-repair-banner{
    justify-content:center;
  }
}
