/* HERO */

.referral-hero {
  background: url("/images/clinic-bg.jpg") center/cover no-repeat;
  padding: 120px 0;
  position: relative;
}

.referral-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 70, 140, 0.55);
}

.hero-content {
  position: relative;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}


/* BUTTONS */

.btn-primary {
  background: linear-gradient(90deg, #1e73be, #3aa0ff);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-light {
  background: #fff;
  color: #333;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}


/* REFERRAL CARDS */

.referral-options {
  padding: 50px 0;
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .referral-grid {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.referral-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.heading-wrap {
  display: flex;
  align-items: center;
}

.referral-options .icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 28px;
  background: #1392ec1a;
  color: #1392ec;
  margin-right: 1.5rem;
}

.heading-text {
  text-align: start;
}

.heading-text h3 {
  font-size: 1.25rem;
  /* line-height: 1.75rem; */
  font-weight: 700;
}

.heading-text p {
  color: rgb(107, 114, 128);
  text-decoration: none;
}


/* PROCESS */

.referral-process {
  padding: 50px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .referral-process {
    padding: 80px 0;
  }
}

.section-title {
  font-size: 34px;
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}


/* CTA */

.referral-cta {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .referral-cta {
    padding: 80px 0;
  }
}

.referral-cta .cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.referral-cta .cta-card {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.referral-cta .cta-card.blue {
  background: linear-gradient(135deg, #1e73be, #3aa0ff);
  color: #fff;
}

.referral-cta .cta-card.light {
  background: #f5f8fc;
}

.referral-cta .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e9f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.referral-cta .icon-circle .material-icons {
  font-size: 28px;
  color: #1e73be;
}

.referral-process-sec {
  padding: 50px 1.5rem;
}

@media (min-width: 768px) {
  .referral-process-sec {
    padding: 80px 1.5rem 56px;
  }
}

.referral-process-sec .container,
.dual-cta-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.referral-process-sec .steps-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .referral-process-sec .steps-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.referral-process-sec .progress-line {
  display: none;
}

@media (min-width: 768px) {
  .referral-process-sec .progress-line {
    display: block;
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: #f1f5f9;
    z-index: -1;
  }
}

.referral-process-sec .step-item {
  text-align: center;
  padding: 24px;
}

.referral-process-sec .step-number {
  width: 64px;
  height: 64px;
  background-color: #1392ec;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: bold;
  margin: 0 auto 24px;
  border-radius: 9999px;
  border: 8px solid #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.referral-process-sec .step-item h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.referral-process-sec .step-item p {
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 0px;
  color: #6b7280;
}

.blue-outline-btn {
  border: 2px solid #1392ec;
  background: transparent;
  color: #1392ec;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 18px;
  font-weight: bold;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.referral-expectations {
  background: #f7f9fc;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .referral-expectations {
    padding: 80px 0;
  }
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1d2b4f;
}

.expect-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.expect-card .card-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.card-heading .icon-circle {
  width: 50px;
  height: 50px;
  background: #eaf4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #2d7dd2;
  font-size: 24px;
  margin-right: 15px;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 4rem;
}

.expect-list li {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

.check-icon {
  color: #fff;
  background: #2d7dd2;
  margin-right: 10px;
  font-weight: bold;
  padding: 4px 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}

.urgent-note {
  background: #eaf4ff;
  border-left: 4px solid #2d7dd2;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 15px;
}

.cta-card {
  /* background: linear-gradient(135deg, #2d7dd2, #5fa8ff); */
  background: #1392ec;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}

.cta-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-card p {
  margin-bottom: 20px;
}

.cta-card .cta-btn {
  background: #ffffff;
  color: #1392ec;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-btn:hover {
  background: #f1f1f1;
}

.cta-link {
  font-size: 14px;
  opacity: 0.9;
}

.card-heading {
  display: flex;
  align-items: center;
}