body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-top);
  color: var(--text);
}

/* HOME  */
:root {
  --primary: #1a237e;
  --accent: #ffc107;
  --muted: #5a6a8a;
  --bg-top: #f0f2fa;
  --bg-nav: #ffffff;
  --border: #c5cae9;
  --text: #1a237e;
}

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 500px;
  max-height: 780px;
  overflow: hidden;
  background: var(--primary);
  width: 96%;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Slides wrapper */
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Individual slide */
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Background image */
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

/* Overlay — dark gradient from center-left */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 50% 50%,
      rgba(15, 40, 100, 0.52) 0%,
      transparent 70%
    ),
    linear-gradient(to right, rgba(10, 20, 70, 0.55) 0%, transparent 70%);
}

/* Frosted circle behind text (like the reference) */
.hero-slide .glass-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
  pointer-events: none;
}

.cashless-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #f5a623 0%, #f7c05a 40%, #f5a623 100%);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
}

.cashless-banner strong {
  font-size: 14px;
  font-weight: 600;
  color: #2a1800;
}

.cashless-banner .cashless-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a2e00;
  flex-wrap: wrap;
  justify-content: center;
}
@media(max-width:900px){
    .cashless-banner .cashless-text{
        gap:0px;
    }
    
    .cashless-banner{
        padding:7px 20px;
    }
    
}

.cashless-icon {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b37a00;
  font-size: 15px;
  flex-shrink: 0;
}

.cashless-pill {
  background: rgba(255, 255, 255, 0.65);
  color: #7a4e00;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* Content overlay */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  pointer-events: none;
}

/* REPLACE the existing .hero-content .badge rule */
.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: 0s;
  pointer-events: none;
}

@media(max-width:450px){
    .hero-content .badge{
        font-size:8px;
    }
}

/* REPLACE the existing .hero-slide.active .hero-content .badge rule */
.hero-slide.active .hero-content .badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* REPLACE .hero-content h1 */
.hero-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: 0s;
}

/* REPLACE .hero-slide.active .hero-content h1 */
.hero-slide.active .hero-content h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

/* REPLACE .hero-content p */
.hero-content p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: 0s;
}

/* REPLACE .hero-slide.active .hero-content p */
.hero-slide.active .hero-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

/* REPLACE .hero-content .btn-hero */
.hero-content .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffc107;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  pointer-events: all;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    background 0.2s,
    box-shadow 0.2s;
  transition-delay: 0s;
}

/* REPLACE .hero-slide.active .hero-content .btn-hero */
.hero-slide.active .hero-content .btn-hero {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

.hero-content .btn-hero:hover {
  background: #ffca28;
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
}

.hero-content .btn-hero i {
  font-size: 14px;
}

/* Verified badge (top-right of slide, like reference) */
.hero-slide .verified-badge {
  position: absolute;
  top: 15%;
  right: 12%;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  animation: rotateBadge 12s linear infinite;
  opacity: 0;
  transition: opacity 0.5s 0.6s;
}

.hero-slide.active .verified-badge {
  opacity: 1;
}

.verified-badge i {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 2px;
  animation: rotateBadge 12s linear infinite reverse;
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* === ARROWS === */
.hero-arrows {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.08);
}

/* === DOTS === */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: #ffc107;
  transform: scale(1.4);
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #ffc107;
  width: 0%;
  z-index: 10;
  transition: width linear;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    height: 75vh;
    min-height: 420px;
  }

  .hero-slide .verified-badge {
    width: 60px;
    height: 60px;
    font-size: 7px;
    top: 12%;
    right: 6%;
  }

  .hero-arrows {
    bottom: 20px;
    right: 16px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .hero-dots {
    bottom: 26px;
  }

  .hero-content .btn-hero {
    font-size: 13px;
    padding: 11px 22px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 65vh;
    min-height: 380px;
  }

  .hero-slide .glass-ring {
    width: 90vw;
    height: 90vw;
  }

  .hero-slide .verified-badge {
    display: none;
  }
}

/* === TIMETABLE SECTION === */
.timetable-section {
  margin-top: 10px;
}

/*.timetable-inner {*/
/*  max-width: 1391px;*/
/*  width: 96%;*/
/*  margin: 0 auto;*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr 1fr;*/
/*  gap: 10px;*/
/*  align-items: stretch;*/
/*}*/

/* === LEFT CARD — Doctor image === */
.timetable-doctor-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 0 32px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Decorative blob */
.timetable-doctor-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fde8e0;
  opacity: 0.7;
  z-index: 0;
}

.timetable-doctor-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #c8e6f5;
  opacity: 0.5;
  z-index: 0;
}

.timetable-doctor-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  line-height: 1.2;
  display: none;
}

.timetable-doctor-card p {
  font-size: 15px;
  color: #5a6a8a;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  max-width: 220px;
  margin-bottom: 20px;
  display: none;
}

.timetable-doctor-card .dr-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;

  padding: 8px 14px;
  border-radius: 8px;

  /* KEY PART 👇 */
  background: rgba(255, 255, 255, 0.86);
  /* semi-transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  position: relative;
  z-index: 2;
  transition: gap 0.2s;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 12px;
}

.timetable-doctor-card .dr-link:hover {
  gap: 12px;
}

.timetable-doctor-card .doctor-img {
  position: absolute;
  /* bottom: 0;
            right: -10px; */
  width: 100%;
  /* max-width: 260px; */
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  inset: 0;
}

/* === RIGHT CARDS — Schedule Hours === */
.schedule-card {
  background: #e98a00;
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.schedule-card.alt {
  background: var(--primary);
}

.schedule-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.schedule-card-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.schedule-card-header .clock-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.branch-address {
  background: #ffffff52;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ffffff84;
  font-size: 13px;
}

.schedule-card .location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.schedule-card .location-tag i {
  font-size: 10px;
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row .day {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.schedule-row .time {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.schedule-row .time.closed {
  color: #ffc107;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .timetable-inner {
    /*grid-template-columns: 1fr 1fr 1f;*/
  }

  .timetable-doctor-card {
    /*grid-column: 1 / -1;*/
    min-height: 280px;
    padding-bottom: 20px;
  }

  /* .timetable-doctor-card .doctor-img {
                width: 45%;
                max-width: 200px;
            } */
}

@media (max-width: 600px) {
  .timetable-inner {
    grid-template-columns: 1fr;
  }

  .timetable-doctor-card {
    grid-column: auto;
    min-height: 260px;
  }

  /* .timetable-doctor-card .doctor-img {
                width: 50%;
                right: 0;
            } */
}

/* === ABOUT SECTION === */
.about-section {
  padding: 100px 5%;
  background: var(--bg-nav);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
}

.about-img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 88%;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--border);
  box-shadow: 0 10px 40px rgba(26, 35, 126, 0.08);
}

.about-img-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-front {
  position: relative;
  width: 72%;
  margin-left: auto;
  margin-top: 60px;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--bg-nav);
  box-shadow: 0 16px 50px rgba(26, 35, 126, 0.13);
  z-index: 2;
}

.about-img-front img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-satisfaction {
  position: absolute;
  top: 38%;
  left: -10px;
  z-index: 4;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #1e5f8e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(30, 95, 142, 0.35);
}

.about-satisfaction .avatars {
  display: flex;
  margin-bottom: 6px;
}

.about-satisfaction .avatars img,
.about-satisfaction .avatars .avatar-more {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-nav);
  margin-left: -8px;
  object-fit: cover;
}

.about-satisfaction .avatars img:first-child,
.about-satisfaction .avatars .avatar-more:first-child {
  margin-left: 0;
}

.about-satisfaction .avatars .avatar-more {
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
}

.about-satisfaction p {
  font-size: 11px;
  font-weight: 700;
  color: var(--bg-nav);
  line-height: 1.4;
  margin: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-eyebrow .eyebrow-icon {
  display: flex;
  gap: 3px;
}

.about-eyebrow .eyebrow-icon span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.about-eyebrow .eyebrow-icon span:last-child {
  background: var(--accent);
}

.about-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

.about-content .about-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.about-features {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 0;
  margin-top: 4px;
}

.about-stat-box {
  grid-row: 1 / 3;
  background: var(--accent);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 160px;
  min-height: 160px;
  margin-right: 28px;
  position: relative;
  overflow: hidden;
}

.about-stat-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.about-stat-box .stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-box .stat-label {
  font-size: 13px;
  color: rgba(26, 35, 126, 0.75);
  line-height: 1.4;
  font-weight: 500;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-item .feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-top);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 20px;
  color: #1e5f8e;
}

.about-feature-item .feat-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.about-feature-item .feat-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.about-phone .phone-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff8e1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-phone .phone-icon-wrap i {
  font-size: 22px;
  color: var(--accent);
}

.about-phone .phone-text p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 2px;
}

.about-phone .phone-text a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.about-phone .phone-text a:hover {
  color: var(--accent);
}

.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    min-height: 380px;
  }

  .about-img-front img {
    height: 280px;
  }
}

@media (max-width: 540px) {
  .about-section {
    padding: 50px 4%;
  }

  .about-features {
    grid-template-columns: none;
  }

  .about-image-wrap {
    min-height: 300px;
  }

  .about-img-front img {
    height: 220px;
  }

  .about-satisfaction {
    width: 120px;
    height: 120px;
    left: -6px;
  }

  .about-stat-box {
    min-width: 130px;
    min-height: 130px;
  }

  .about-stat-box .stat-num {
    font-size: 40px;
  }
}

/* === SERVICES SECTION === */
.services-section {
  padding: 70px 5% 60px;
  background: #edf2fb;
  position: relative;
  overflow: hidden;
  width: 96%;
  margin: 0 auto;
  border-radius: 10px;
}

/* Decorative eye illustration at top-center */
.services-eye-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.services-eye-icon svg {
  width: 120px;
  opacity: 0.6;
}

/* Header row */
.services-header {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.services-header-left h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #1a237e;
  margin: 0;
  line-height: 1.2;
}

.services-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.services-eyebrow .eyebrow-icon {
  display: flex;
  gap: 3px;
}

.services-eyebrow .eyebrow-icon span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.services-eyebrow .eyebrow-icon span:last-child {
  background: var(--accent);
}

.services-header-desc {
  font-size: 14px;
  color: #5a6a8a;
  line-height: 1.65;
  max-width: 400px;
}

.services-header-right {
  text-align: right;
}

.services-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #1e5f8e;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}

.services-see-all:hover {
  gap: 10px;
}

/* === CAROUSEL TRACK === */
.services-carousel-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
  padding: 6px 0px;
}

.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  /* Each card: ~260px wide + 20px gap */
}

/* === SERVICE CARD === */
.service-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  /* transform: translateY(-6px); */
  /* box-shadow: 0 20px 50px rgba(26, 35, 126, 0.14); */
}

.service-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

/* Label at bottom */
.service-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  /* backdrop-filter: blur(6px); */
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card .card-label span {
  font-size: 15px;
  font-weight: 700;
  color: #1a237e;
}

.service-card .card-label i {
  font-size: 14px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}

.service-card:hover .card-label i {
  opacity: 1;
  transform: translateX(0);
}

/* === ARROWS === */
.services-arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.services-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #1e5f8e;
  background: transparent;
  color: #1e5f8e;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}

.services-arrow:hover {
  background: #1e5f8e;
  color: #fff;
  transform: scale(1.08);
}

.services-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(33.33% - 14px);
  }
}

@media (max-width: 768px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-header-right {
    text-align: left;
  }

  .services-header-desc {
    max-width: 100%;
  }

  .service-card {
    flex: 0 0 calc(50% - 10px);
  }

  .service-card img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 50px 4% 40px;
  }

  .service-card {
    flex: 0 0 calc(80vw);
  }

  .service-card img {
    height: 200px;
  }
}

/* === WHY CHOOSE SECTION === */
.why-section {
  padding: 80px 5%;
  background: #fff;
  overflow: hidden;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-eyebrow .eyebrow-icon {
  display: flex;
  gap: 3px;
}

.why-eyebrow .eyebrow-icon span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.why-eyebrow .eyebrow-icon span:last-child {
  background: var(--accent);
}

.why-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.why-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === 3-COLUMN GRID === */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 40px;
  align-items: center;
}

/* Left & Right feature columns */
.why-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Feature item */
.why-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-col.right .why-feature {
  align-items: flex-start;
}

/* Icon + title row */
.why-feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-col.right .why-feature-header {
  flex-direction: row;
}

.why-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 22px;
  color: #fff;
  transition:
    background 0.25s,
    transform 0.25s;
}

.why-feature:hover .why-feature-icon {
  background: var(--accent);
  transform: scale(1.06);
}

.why-feature-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

/* Divider line below header */
.why-feature-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.why-feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

/* === CENTER IMAGE === */
.why-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Glasses SVG above */
.why-glasses-svg {
  width: 140px;
  opacity: 0.55;
  margin-bottom: -10px;
}

/* Circle image container */
.why-circle {
  width: clamp(260px, 28vw, 380px);
  height: clamp(260px, 28vw, 380px);
  border-radius: 50%;
  background: #ddeef8;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(224, 123, 84, 0.3);
  box-shadow: 0 0 0 12px rgba(224, 123, 84, 0.07);
  flex-shrink: 0;
}

.why-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Glasses + chart floating top of circle */
.why-float-top {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 12px;
  z-index: 2;
  pointer-events: none;
}

/* === CTA STRIP === */
.why-cta {
  max-width: 1200px;
  margin: 52px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.why-cta .free-badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.why-cta p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.why-cta a {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.why-cta a:hover {
  color: var(--primary);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
  }

  .why-col.left {
    grid-column: 1;
    grid-row: 1;
  }

  .why-col.right {
    grid-column: 2;
    grid-row: 1;
  }

  .why-center {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .why-circle {
    width: clamp(220px, 50vw, 320px);
    height: clamp(220px, 50vw, 320px);
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 50px 4%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-col.left,
  .why-col.right {
    grid-column: 1;
    grid-row: auto;
  }

  .why-center {
    grid-column: 1;
    grid-row: auto;
    margin: 40px 0;
  }

  .why-col {
    gap: 32px;
  }

  .why-circle {
    width: 72vw;
    height: 72vw;
  }

  .why-cta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  padding: 70px 5%;
  background: #edf2fb;
  width: 96%;
  margin: 0 auto;
  border-radius: 10px;
}

.testimonials-card {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 35, 126, 0.12);
  min-height: 460px;
}

/* ===========================
       LEFT PANEL
       =========================== */
.testi-left {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px;
}

/* Hex/grid pattern overlay */
.testi-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 22px,
      rgba(255, 255, 255, 0.03) 22px,
      rgba(255, 255, 255, 0.03) 23px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 22px,
      rgba(255, 255, 255, 0.03) 22px,
      rgba(255, 255, 255, 0.03) 23px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 22px,
      rgba(255, 255, 255, 0.03) 22px,
      rgba(255, 255, 255, 0.03) 23px
    );
  pointer-events: none;
}

.testi-left h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  max-width: 260px;
}

/* Doctor / patient image — sits in centre */
.testi-left-img {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 78%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  pointer-events: none;
  /* Fade out at the top so it blends */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 28%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 28%);
}

/* Rating strip — bottom left */
.testi-rating {
  position: relative;
  z-index: 2;
}

.testi-rating .rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.testi-rating .rating-num {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.testi-rating .stars {
  display: flex;
  gap: 3px;
}

.testi-rating .stars i {
  font-size: 14px;
  color: var(--accent);
}

.testi-rating .rating-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===========================
       RIGHT PANEL
       =========================== */
.testi-right {
  background: #fff;
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

/* Top row: avatars + arrows */
.testi-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testi-avatars {
  display: flex;
  align-items: center;
}

/* Quote icon circle */
.testi-quote-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.testi-quote-circle i {
  font-size: 20px;
  color: #fff;
}

/* Active reviewer avatar */
.testi-reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: opacity 0.4s ease;
}

/* Arrow buttons */
.testi-arrows {
  display: flex;
  gap: 12px;
}

.testi-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--muted);
  padding: 4px;
  transition:
    opacity 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
}

.testi-arrow:hover {
  opacity: 0.7;
  transform: scale(1.15);
}

/* Review text */
.testi-body {
  flex: 1;
}

.testi-text {
  font-size: clamp(14px, 1.5vw, 17px);
  color: #3a4a6a;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.testi-text.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* Footer: name + stars + divider */
.testi-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  transition: opacity 0.35s ease;
}

.testi-footer.fade-out {
  opacity: 0;
}

.testi-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.testi-footer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.testi-footer .stars {
  display: flex;
  gap: 3px;
}

.testi-footer .stars i {
  font-size: 13px;
  color: var(--accent);
}

.testi-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Dot indicators */
.testi-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.testi-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

/* ===========================
       RESPONSIVE
       =========================== */
@media (max-width: 860px) {
  .testimonials-card {
    grid-template-columns: 1fr;
  }

  .testi-left {
    min-height: 300px;
    padding: 36px 28px;
  }

  .testi-left-img {
    height: 85%;
  }

  .testi-right {
    padding: 32px 28px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 50px 4%;
  }

  .testi-left {
    min-height: 240px;
    padding: 28px 20px;
  }

  .testi-right {
    padding: 24px 20px;
  }

  .testi-text {
    font-size: 14px;
  }
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay utility classes */
.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.4s;
}

/* Hero verified badge entrance */
.hero-slide .verified-badge {
  opacity: 0;
  transform: scale(0.7) rotate(-15deg);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0s;
}

.hero-slide.active .verified-badge {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.75s;
}

/* Cashless banner slides down from top */
.cashless-banner {
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.9s;
}

.hero-slide.active .cashless-banner {
  transform: translateY(0);
}

/* Image zoom on active */
.hero-slide img {
  transform: scale(1.08);
  transition: transform 7s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

/* ABOUT  */

/* ───── DOCTOR SECTION ───── */
.doctor-section {
  max-width: 1290px;
  margin: 0 auto;
  padding: 72px 24px;
}

.doctor-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.doctor-heading {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 52px;
}

.doctor-heading em {
  font-style: normal;
  color: var(--accent);
}

.doctor-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--bg-nav);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 35, 126, 0.1);
  border: 1px solid var(--border);
}

/* ── LEFT: IMAGE ── */
.doctor-image-wrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.doctor-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.doctor-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(26, 35, 126, 0.55) 100%
  );
}

.doctor-exp-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--accent);
  color: var(--primary);
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.doctor-exp-badge strong {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

/* ── RIGHT: INFO ── */
.doctor-info {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-top);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  width: fit-content;
}

.doctor-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.doctor-name {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px;
}

.doctor-title {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.doctor-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 4px;
  margin-bottom: 22px;
}

.doctor-bio {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}

.doctor-contact-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.doctor-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--muted);
}

.doctor-contact-item svg {
  flex-shrink: 0;
  fill: var(--primary);
}

.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.doctor-stat {
  background: var(--bg-top);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
}

.doctor-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.doctor-stat span {
  font-size: 0.71rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.specialty-pill {
  background: var(--bg-top);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
}

.doctor-actions {
  display: flex;
  gap: 12px;
}

.btn-primary {
  flex: 1;
  padding: 13px 24px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-outline {
  padding: 13px 24px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg-top);
}

@media (max-width: 860px) {
  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-image-wrap {
    min-height: 340px;
  }

  .doctor-info {
    padding: 32px 24px;
  }

  .doctor-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CONTACT  */

/* ───── CARDS SECTION ───── */
.section {
  width: 96%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.section-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* ───── CARD BASE ───── */
.card {
  background: var(--bg-nav);
  border-radius: 20px;
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: cardIn 0.6s ease both;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.22s;
}

.card:nth-child(3) {
  animation-delay: 0.34s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 35, 126, 0.13);
}

/* .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--stripe);
            border-radius: 20px 20px 0 0;
        } */

.card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--blob);
  transition: transform 0.4s ease;
}

.card:hover::after {
  transform: scale(1.3);
}

/* card variants — all using only root vars */
.card--call {
  --stripe: linear-gradient(90deg, var(--primary), var(--muted));
  --blob: rgba(26, 35, 126, 0.07);
}

.card--visit {
  --stripe: linear-gradient(90deg, var(--primary), var(--muted));
  --blob: rgba(90, 106, 138, 0.08);
}

.card--msg {
  --stripe: linear-gradient(90deg, var(--accent), rgba(255, 193, 7, 0.5));
  --blob: rgba(255, 193, 7, 0.1);
}

/* icon */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.card--call .card-icon,
.card--visit .card-icon {
  background: var(--primary);
}

.card--msg .card-icon {
  background: var(--accent);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.card--msg .card-icon svg {
  fill: var(--primary);
}

.card-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 10px;
}

.card--call .card-link,
.card--visit .card-link {
  color: var(--primary);
}

.card--msg .card-link {
  color: var(--accent);
}

.card-link-arrow {
  font-size: 1rem;
  line-height: 1;
}

.card-link.plain {
  color: var(--muted);
  font-weight: 400;
}

.card-link.plain:hover {
  color: var(--primary);
}

/* hours badge */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-top);
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 6px;
  border: 1px solid var(--border);
  width: fit-content;
}

.hours-badge svg {
  width: 13px;
  height: 13px;
  fill: var(--primary);
}

@media (max-width: 820px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ───── APPOINTMENT SECTION ───── */
.appt-section {
  width: 96%;
  max-width: 1160px;
  position: relative;
  margin: 0 auto;
}

.appt-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.07);
  pointer-events: none;
}

.appt-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(26, 35, 126, 0.06);
  pointer-events: none;
}

/* ── SECTION HEADER ── */
.appt-header {
  text-align: center;
  margin-bottom: 44px;
  animation: fadeUp 0.6s ease both;
}

.appt-header .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.appt-header .icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.appt-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.appt-header h2 em {
  font-style: normal;
  color: var(--accent);
}

.appt-header p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── CARD WRAPPER ── */
.appt-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 35, 126, 0.12);
  animation: fadeUp 0.7s 0.15s ease both;
  position: relative;
  z-index: 1;
}

/* ── FORM PANEL ── */
.form-panel {
  background: var(--bg-nav);
  padding: 48px 44px;
}

.form-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-title {
  font-size: 1.55rem;
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

label span {
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-top);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--border);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.12);
  background: var(--bg-nav);
}

/* select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--primary);
  margin-top: 3px;
  pointer-events: none;
}

.select-wrap select {
  padding-right: 36px;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

/* location radio pills */
.location-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.loc-pill {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text);
  background: var(--bg-top);
  transition: all 0.2s;
  flex: 1;
  min-width: 120px;
}

.loc-pill input[type="radio"] {
  display: none;
}

.loc-pill .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.loc-pill input:checked ~ .dot {
  border-color: var(--primary);
  background: var(--primary);
}

.loc-pill input:checked ~ .dot::after {
  content: "";
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
}

.loc-pill:has(input:checked) {
  border-color: var(--primary);
  background: rgba(26, 35, 126, 0.05);
  color: var(--primary);
}

.loc-text {
  line-height: 1.3;
}

.loc-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.loc-text small {
  font-size: 0.71rem;
  color: var(--muted);
}

.loc-pill:has(input:checked) .loc-text small {
  color: var(--muted);
}

/* submit button */
.btn-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.25);
  margin-top: 4px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 35, 126, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 8px;
  font-size: 1rem;
  transition: transform 0.2s;
}

.btn-submit:hover .arrow {
  transform: translateX(4px);
}

/* ── IMAGE PANEL ── */
.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 35, 126, 0.65) 0%,
    rgba(90, 106, 138, 0.4) 50%,
    rgba(26, 35, 126, 0.7) 100%
  );
  z-index: 1;
}

.image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
}

.stat-row {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 18px;
  flex: 1;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-size: 1.6rem;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-pill span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

.image-quote {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px 22px;
}

.image-quote p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.8rem;
  color: white;
}

.author-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

/* availability badge */
.badge-avail {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: white;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.1);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .appt-card {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 421px;
  }
  .appt-section::after{
      right:10px;
  }

  .form-panel {
    padding: 36px 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* === TIMETABLE SECTION === */
.timetable-section {
  margin-top: 10px;
}

.timetable-inner {
  /*max-width: 1391px;*/
  /* width: 96%; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.home-timetable-inner{
    max-width: 1391px;
   width: 96%; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
    
}

/* === LEFT CARD — Doctor image === */
.timetable-doctor-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 0 32px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Decorative blob */
.timetable-doctor-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fde8e0;
  opacity: 0.7;
  z-index: 0;
}

.timetable-doctor-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 60px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #c8e6f5;
  opacity: 0.5;
  z-index: 0;
}

.timetable-doctor-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  line-height: 1.2;
  display: none;
}

.timetable-doctor-card p {
  font-size: 15px;
  color: #5a6a8a;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  max-width: 220px;
  margin-bottom: 20px;
  display: none;
}

.timetable-doctor-card .dr-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  padding: 8px 14px;
  border-radius: 8px;

  /* KEY PART 👇 */
  background: rgba(255, 255, 255, 0.86);
  /* semi-transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  position: relative;
  z-index: 2;
  transition: gap 0.2s;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 12px;
}

.timetable-doctor-card .dr-link:hover {
  gap: 12px;
}

.timetable-doctor-card .doctor-img {
  position: absolute;
  /* bottom: 0;
            right: -10px; */
  width: 100%;
  /* max-width: 260px; */
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  height:100%;
  inset: 0;
}

/* === RIGHT CARDS — Schedule Hours === */
.schedule-card {
  background: #e98a00;
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.schedule-card.alt {
  background: var(--primary);
}

.schedule-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.schedule-card-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.schedule-card-header .clock-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.branch-address {
  background: #ffffff52;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ffffff84;
}

.schedule-card .location-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}

.schedule-card .location-tag i {
  font-size: 10px;
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row .day {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.schedule-row .time {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.schedule-row .time.closed {
  color: #ffc107;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  /*.timetable-inner {*/
  /*  grid-template-columns: 1fr 1fr;*/
  /*}*/

  .timetable-doctor-card {
    /*grid-column: 1 / -1;*/
    min-height: 280px;
    padding-bottom: 20px;
  }

  .timetable-doctor-card .doctor-img {
    /*width: 45%;*/
    /*max-width: 200px;*/
  }
}

@media (max-width: 600px) {
    
  .home-timetable-inner ,.timetable-inner {
    grid-template-columns: 1fr;
  }

  .timetable-doctor-card {
    grid-column: auto;
    min-height: 260px;
  }

  .timetable-doctor-card .doctor-img {
    /*width: 50%;*/
    right: 0;
  }
}

/* ── TOAST ── */
.form-toast {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 12px;
  grid-column: 1 / -1;
  animation: toastIn 0.35s ease both;
}

.form-toast.success {
  background: #e6f4ea;
  color: #1e6b2e;
  border: 1px solid #a8d5b0;
}

.form-toast.error {
  background: #fdecea;
  color: #a00;
  border: 1px solid #f5c2be;
}

.form-toast .toast-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════ MAP SECTION ═══════════ */
.map-section {
  width: 96%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 0px 50px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.map-card:hover {
  /* transform: translateY(-4px); */
  /* box-shadow: 0 16px 48px rgba(26, 35, 126, 0.13); */
}

.map-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px 18px;
}

.map-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-card-icon--alt {
  background: #e98a00;
}

.map-card-icon i {
  color: #ffffff;
  font-size: 18px;
}

.map-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.map-section em {
  font-style: normal;
  color: var(--accent);
}

.map-card-addr {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.map-embed-wrap {
  width: 100%;
  height: 280px;
  position: relative;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.map-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-top);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}

.map-directions-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.map-directions-btn i {
  font-size: 14px;
}

.map-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.map-call-btn:hover {
  border-color: var(--primary);
  background: rgba(26, 35, 126, 0.04);
}

.map-call-btn i {
  font-size: 13px;
}

@media (max-width: 720px) {
  .map-grid {
    grid-template-columns: 1fr;
  }

  .map-embed-wrap {
    height: 240px;
  }
}

/* All Treatment  */

/* ───── TREATMENTS GRID ───── */
.treatments-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
}

.treatments-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.treatments-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 48px;
}

.treatments-title em {
  font-style: normal;
  color: var(--accent);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: var(--bg-nav);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 35, 126, 0.14);
}

.treatment-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-img-wrap img {
  transform: scale(1.05);
}

.treatment-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 35, 126, 0.35) 100%
  );
}

.treatment-body {
  padding: 18px 20px 22px;
}

.treatment-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.treatment-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition:
    color 0.2s,
    gap 0.2s;
}

.treatment-card:hover .treatment-link {
  color: var(--primary);
  gap: 8px;
}

.treatment-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

@media (max-width: 860px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }
}

/* ───── BANNER ───── */
.banner {
  position: relative;
  height: 380px;
  width: 96%;
  overflow: hidden;
  border-radius: 32px;
  margin: 10px auto 0;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(26, 35, 126, 0.85) 0%,
      rgba(26, 35, 126, 0.55) 60%,
      rgba(90, 106, 138, 0.4) 100%
    ),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1400&q=80")
      center/cover no-repeat;
  animation: slowZoom 8s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

.banner-bg::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(197, 202, 233, 0.15);
}

.banner-bg::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12);
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
  animation: fadeUp 0.7s ease both;
}
@media(max-width:900px){
    .banner-eyebrow{
        font-size:0.5rem;
    }
}

.banner-eyebrow em {
  font-style: normal;
  color: var(--accent);
}

.banner-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  animation: fadeUp 0.7s 0.15s ease both;
}

.banner-title em {
  font-style: normal;
  color: var(--accent);
}

.banner-sub {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeUp 0.7s 0.3s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───── PAGE LAYOUT ───── */
.page-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 40px auto 80px;
  padding: 0 24px;
}

/* ───── MAIN CONTENT ───── */
.content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* hero image */
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 363px;
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(26, 35, 126, 0.45) 100%
  );
}

/* heading */
.content-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.content-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

.content-title em {
  font-style: normal;
  color: var(--accent);
}

.content-body {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--muted);
  text-align: justify;
}

/* feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  background: var(--bg-nav);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px 18px;
  text-align: center;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  box-shadow: 0 2px 12px rgba(26, 35, 126, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 35, 126, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-top);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.feature-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
}

/* steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-nav);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(26, 35, 126, 0.04);
  transition: box-shadow 0.25s;
}

.step-item:hover {
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.09);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.step-body h4 span {
  color: var(--accent);
  margin-right: 4px;
}

.step-body p {
  font-size: 0.815rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: justify;
}

/* benefits split card */
.benefits-card {
  background: var(--bg-nav);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.06);
}

.benefits-img {
  position: relative;
  min-height: 300px;
}

.benefits-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.benefits-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.5) 0%,
    transparent 65%
  );
}

.benefits-list {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.benefits-list-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.benefits-list-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 4px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
}

.benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* FAQ */
.faq-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-top);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  transition:
    background 0.2s,
    color 0.2s;
}

.faq-icon.open {
  background: var(--primary);
  color: #ffffff;
}

.faq-a {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--muted);
  padding-bottom: 16px;
  display: none;
  text-align:justify;
}

.faq-a.open {
  display: block;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 860px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-card {
    grid-template-columns: 1fr;
  }

  .benefits-img {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}
/* ── Insurance Ticker ── */
.ticker-wrap {
  width: 100%;
  background: #f5c518;
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f5c518, transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f5c518, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 55s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 48px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a237e;
  text-transform: uppercase;
}
.ticker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ticker-highlight {
  color: #c00000;
  font-weight: 700;
}
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}