.rte-short-services {
  width: 100%;
  background: #ffffff;
  padding: 90px 20px;
  overflow: hidden;
}

.rte-short-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.rte-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.15);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.rte-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}

.rte-short-head h2 {
  max-width: 720px;
  margin: 0;
  color: #0F172A;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.rte-short-head p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #0F172A;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.78;
}

.rte-short-btn {
  flex: 0 0 auto;
  background: #EA580C;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
  transition: 0.3s ease;
}

.rte-short-btn:hover {
  background: #C2410C;
  transform: translateY(-3px);
}

.rte-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.rte-service-card {
  position: relative;
  min-height: 430px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rte-card-img {
  height: 290px;
  border-radius: 18px;
  overflow: hidden;
  background: #0F172A;
}

.rte-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.rte-card-content {
  position: relative;
  width: 82%;
  min-height: 240px;
  margin: -82px auto 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 24px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
  z-index: 2;

  display: flex;
  flex-direction: column;
}

.rte-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.rte-card-content h3 {
  margin: 0 0 12px !important;
  min-height: 58px !important;
  color: #0F172A;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
}

.rte-card-content p {
  margin: 0 !important;
  color: #0F172A;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;

  min-height: 100px;
}

.rte-service-card:hover .rte-card-img img {
  transform: scale(1.08);
}

.rte-service-card:hover .rte-card-content {
  transform: translateY(-8px);
  border-color: #EA580C;
}

/* Tablet */
@media(max-width:1024px) {
  .rte-short-services {
    padding: 70px 20px;
  }

  .rte-head-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .rte-short-head h2 {
    font-size: 38px;
  }

  .rte-service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Mobile */
@media(max-width:767px) {
  .rte-short-services {
    padding: 55px 16px;
  }

  .rte-short-head h2 {
    font-size: 30px;
  }

  .rte-short-head p {
    font-size: 15px;
  }

  .rte-service-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .rte-service-card {
    min-height: auto;
  }

  .rte-card-img {
    height: 250px;
  }

  .rte-card-content {
    width: 88%;
    margin: -70px auto 0;
    padding: 26px 22px;
  }

  .rte-short-btn {
    width: 100%;
    text-align: center;
  }
}