.offline-estimate-section {
  position: relative;
  width: 90%;
  margin: 80px auto 120px;
  height: 320px;
  border-radius: 90px;
  overflow: hidden;
  user-select: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #dff4ff, #c9ebff);
}

.offline-estimate-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 clamp(8px, 4vw, 16px) rgba(0, 0, 0, 0.35);
}

.offline-estimate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  border-radius: inherit;
  z-index: 1;
  filter: brightness(1.1);
}

.offline-estimate-content {
  position: relative;
  z-index: 3;
  max-width: 480px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 35px 45px;
  border-radius: 60px;
  background: rgba(223, 252, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(15px) saturate(1.3);
  -webkit-backdrop-filter: blur(15px) saturate(1.3);
  color: #013f6c;
  text-align: center;
  font-weight: 500;
  transition: all 0.35s;
  text-decoration: none;
  display: block;
}

.offline-estimate-content:hover {
  transform: translateY(-50%) scale(1.01);
  backdrop-filter: blur(5px) saturate(1.3);
  -webkit-backdrop-filter: blur(5px) saturate(1.3);
  background: rgba(223, 252, 255, 0.512);
}

.offline-estimate-content h2 {
  margin-bottom: 12px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #01406c;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.offline-estimate-content p {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #01406c;
}

.offline-estimate-content strong {
  color: #6759ce;
  font-weight: 700;
  text-shadow: 0 0 10px #6759ce88;
}


@media (orientation: portrait), (max-width: 768px) {
  .offline-estimate-section {
    width: 95%;
    height: auto;
    margin: 40px auto 60px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    padding: 15px;
  }

  .offline-estimate-section::after {
    border-radius: 50px;
    box-shadow: inset 0 0 clamp(4px, 3vw, 8px) rgba(0, 0, 0, 0.35);
  }

  .offline-estimate-bg {
    border-radius: 50px;
  }

  .offline-estimate-content {
    max-width: 80%;
    padding: 10px 25px;
    top: 90px;
    transform: translateY(-50%);
    border-radius: 40px;
    font-size: 0.6rem;
  }

  .offline-estimate-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .offline-estimate-content p {
    font-size: 1rem;
    line-height: 1.3;
  }

  .offline-estimate-content strong {
    font-size: 1rem;
  }
}
