/* =========================
   HERO FULL WIDTH IMAGE
========================= */

.oreli-hero {
    width: 100%;
    overflow: hidden;
}

.oreli-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   ORELI INTRO SECTION
========================= */
/* ===== ORELI INTRO ===== */
.oreliIntro {
  padding: 48px 16px;
  background: #fff;
}

.oreliIntro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.oreliIntro__title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
}

.oreliIntro__titleLine {
  display: block;
}

.oreliIntro__text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

/* RIGHT */
.oreliIntro__imageWrap {
  text-align: center;
}

.oreliIntro__image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Doctor card */
.oreliIntro__doctorCard {
  margin-top: 16px;
  text-align: left;
}

.oreliIntro__doctorRole {
  font-weight: 600;
  color: #666;
  margin-bottom: 4px;
}

.oreliIntro__doctorName {
  font-size: 20px;
  font-weight: 700;
  color: #b51b75;
  margin-bottom: 12px;
}

/* Button */
.oreliIntro__btn {
  display: inline-block;
  padding: 10px 22px;
  background: #b51b75;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.oreliIntro__btn:hover {
  background: #8e145c;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .oreliIntro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .oreliIntro__title {
    font-size: 26px;
    text-align: center;
  }

  .oreliIntro__text {
    text-align: left;
  }

  .oreliIntro__doctorCard {
    text-align: center;
  }
}
/* =========================
   VALUES SECTION
========================= */

.oreli-values {
  padding: 70px 0;
  background: #fafafa;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s ease;
}

.value-item:hover {
  border-color: #b51b75;
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.value-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.oreli-services {
  padding: 100px 0;
  background: #f4f4f4;
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.services-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #b51b75;
}

.services-left p {
  margin-top: 20px;
  color: #666;
  font-size: 16px;
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-block {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  text-decoration: none;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  transition: 0.3s ease;
}

.service-block:hover {
  background: #b51b75;
  color: #fff;
}

.service-number {
  font-size: 40px;
  font-weight: 700;
  color: #ddd;
  transition: 0.3s ease;
   white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.service-block:hover .service-number {
  color: rgba(255,255,255,0.3);
}

.service-block h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-block p {
  font-size: 15px;
  color: #666;
}

.service-block:hover p {
  color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
  .services-inner {
    grid-template-columns: 1fr;
  }

  .services-left h2 {
    font-size: 34px;
  }
   .services-left {
    text-align: center;
    margin-bottom: 40px;
  }
}
/* arrow dịch vụ */

.service-block {
  position: relative;
}

.service-arrow {
  margin-left: auto;
  font-size: 15px;
  color: #b51b75;
  transition: all .25s ease;

}

/* hover desktop */

.service-block:hover .service-arrow {
  transform: translateX(6px);
  color: #fff;
}

/* mobile luôn thấy rõ */

@media (max-width: 768px) {
  .service-arrow {
    opacity: .7;
  }
}
@media (max-width: 768px) {
  .service-block:active {
    transform: scale(.98);
  }
}

/* mô tả + mũi tên cùng hàng */

.service-desc {
  display: flex;
  align-items: center;
  gap: 6px;
}


/* hover desktop */

.service-block:hover .service-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* =========================
   DOCTOR SECTION
========================= */
.home-doctors.premium {
    padding: 120px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-header .line {
    width: 60px;
    height: 1px;
    background: #b51b75;
    margin: 20px auto 0;
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.doctor-item {
    text-align: center;
}

.doctor-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 25px;
}

.doctor-item h3 {
    font-size: 15px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-item p {
    font-size: 14px;
    color: #777;
}

/* Tablet */
@media (max-width: 1024px) {
    .doctor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .home-doctors.premium {
        padding: 80px 0;
    }

    .doctor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .doctor-item h3 {
        font-size: 13px;
    }
}

.doctor-item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease;
}

.doctor-item:hover {
    transform: translateY(-6px);
}

/* ===== RESULTS PRO ===== */
/* ===== RESULTS PRO ===== */




.home-results-pro {
    padding: 90px 0;
    background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.results-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ===== case card ===== */

.case-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    transition: all .35s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(181,27,117,.18);
}

/* ===== before after ===== */

.ba-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #eee;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-img.after {
    clip-path: inset(0 0 0 50%);
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
    pointer-events: none;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

/* ===== body ===== */

.case-body {
    padding: 20px 22px 24px;
}

.case-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.case-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.case-link {
    font-size: 14px;
    color: #b51b75;
    font-weight: 600;
    text-decoration: none;
}

/* ===== responsive ===== */

@media (max-width: 991px) {
    .results-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .results-pro-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA PREMIUM ===== */
/* ===== CTA PREMIUM ===== */

.home-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #b51b75 0%, #7a0f4f 100%);
  color: #fff;
  margin-top: -50px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

/* 🔥 TITLE CAM */

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ff8a00; /* CAM ORELI */
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 26px;
  max-width: 520px;
}

/* ===== BUTTONS ===== */

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 🔥 GỌI NGAY — mặc định */

.btn-primary {
  background: #fff;
  color: #b51b75 !important; /* tím */
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

/* 🔥 HOVER CAM */

.btn-primary:hover {
  background: #ff8a00; /* cam */
  color: #fff; /* chữ trắng */
  transform: translateY(-2px);
}

/* outline button */

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #b51b75;
}

/* ===== BADGE ===== */

.cta-badge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.badge-item {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
}

.badge-item strong {
  font-size: 28px;
  display: block;
  font-weight: 700;
}

.badge-item span {
  font-size: 13px;
  opacity: 0.9;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
