:root {
  --navy: #000;
  --navy-light: #000;
  --blue: #000;
  --light-blue: #000;
  --sky: #e8f4fd;
  --gold: #1d79d5;
  --gold-dark: #1d79d5;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #eef1f5;
  --mid-gray: #6b7280;
  --text: #2d3748;
  --font-head: "Arial", "Helvetica Neue", sans-serif;
  --font-body: "Arial", "Helvetica Neue", sans-serif;

  /* Extended palette derived from brand */
  --blue-deep: #0d4fa0;
  --blue-mid: #1d79d5;
  --blue-pale: #ddeeff;
  --blue-ultra-pale: #f0f7ff;
  --section-divider: #e2ecf8;
  --shadow-blue: rgba(29, 121, 213, 0.12);
  --shadow-dark: rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

p {
  max-width: 72ch;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-rule {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 0 1.8rem 0;
}

.section-rule-center {
  margin: 0 auto 1.8rem auto;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 12px 30px;
  border-radius: 3px;
  transition:
    background 0.2s,
    border-color 0.2s;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 30px;
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--gold);
  padding: 9px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--navy);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white) !important;
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy) !important;
  padding: 6px 11px !important;
  border-radius: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--light-blue) !important;
}

.nav-link-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 3px;
}

.nav-link-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--navy);
  border-radius: 3px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a2e4a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO SLIDER ── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: opacity 0.8s ease;
}

.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 28, 46, 0.82) 40%,
    rgba(15, 28, 46, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 600px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: background 0.2s;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

.carousel-indicators {
  bottom: 24px;
  gap: 6px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  opacity: 1;
  transition: background 0.2s;
}

.carousel-indicators .active {
  background: var(--gold);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 168, 76, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.trust-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

/* ── ABOUT / FOUNDER ── */
.founder-section {
  background: var(--white);
  padding: 90px 0;
}

.founder-img-wrap {
  position: relative;
  display: inline-block;
}

.founder-img-wrap img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  object-position: top center;
  min-height: 520px;
}

.founder-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 18px 20px;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  line-height: 1.25;
}

.founder-badge .num {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.founder-badge .sub {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 3px;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text);
}

.credentials-list li:last-child {
  border-bottom: none;
}

.credentials-list li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.8rem;
}

.hospital-tag {
  background: var(--sky);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 3px;
  border: 1px solid rgba(44, 95, 138, 0.15);
}

/* ── SERVICES ── */
.services-section {
  background: var(--off-white);
  padding: 90px 0;
}

.service-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 46, 74, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26, 46, 74, 0.15);
}

.service-card-img {
  height: 210px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  flex: 1;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--mid-gray);
  border-bottom: 1px solid var(--light-gray);
}

.service-bullets li:last-child {
  border-bottom: none;
}

.service-bullets li i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--blue);
  transition:
    gap 0.2s,
    color 0.2s;
  margin-top: auto;
}

.service-link:hover {
  gap: 10px;
  color: var(--light-blue);
}

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--light-gray);
  padding: 90px 0;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 32px 28px;
  text-align: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  height: 100%;
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.2rem;
}

.why-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin: 0;
  max-width: none;
}

/* ── VIDEOS ── */
.video-section {
  /* background: var(--off-white); */
  padding: 90px 0;
}

.video-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 46, 74, 0.14);
}

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: rgba(201, 168, 76, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.video-card:hover .play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px 22px;
}

.video-info h4 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.video-info p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin: 0;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--mid-gray);
  border: 2px dashed rgba(107, 114, 128, 0.3);
}

.video-placeholder i {
  font-size: 2.4rem;
  opacity: 0.4;
}

.video-placeholder span {
  font-size: 0.8rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--sky);
  padding: 90px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text);
  flex: 1;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.2rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.author-stars {
  color: var(--gold);
  font-size: 0.8rem;
}

.cta-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
  padding: 90px 0;
}

.accordion-button {
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 18px 20px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--blue);
  background: var(--sky);
}

.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2e4a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
  border: none;
  border-bottom: 1px solid var(--light-gray);
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--mid-gray);
  padding: 14px 20px 14px;
  line-height: 1.8;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* ── CONTACT / CTA BAND ── */
.contact-section {
  background: var(--sky);
  padding: 90px 0;
}

.contact-form-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 34px;
}

.contact-form-card h3 {
  color: var(--navy);
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--light-gray);
  border-radius: 3px;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: var(--off-white);
  color: var(--text);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--light-blue);
  background: var(--white);
  box-shadow: none;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-item a,
.contact-detail-item span {
  color: var(--navy);
  font-size: 0.92rem;
}

.contact-detail-item a:hover {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 1.8rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── LOCATIONS ── */
.locations-section {
  background: var(--off-white);
  padding: 90px 0;
}

.location-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.location-card iframe {
  width: 100%;
  height: 330px;
  border: none;
  display: block;
}

.location-info {
  padding: 20px 24px;
}

.location-info h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.location-info p {
  color: var(--mid-gray);
  font-size: 0.86rem;
  margin: 0;
}

/* ── FOOTER ── */
.footer {
  background: #0e1b2e;
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.65);
}

.footer h5 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer-brand img {
  /*height: 60px;*/
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: var(--gold);
}

.footer .social-btn {
  color: var(--white);
}

/* ── VIDEO MODAL ── */
#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#videoModal.active {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 820px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

#videoFrame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  border: none;
}

/* ── GALLERY ── */
.gallery-section {
  background: var(--white);
  padding: 90px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.78rem;
  text-align: center;
  border: 2px dashed rgba(107, 114, 128, 0.3);
  gap: 6px;
}

.gallery-item i {
  font-size: 2rem;
  opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-slide {
    min-height: 520px;
  }

  .hero-content {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    min-height: 460px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .founder-badge {
    bottom: -12px;
    right: -8px;
    padding: 12px 14px;
  }

  .founder-badge .num {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── FADE-IN ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 {
  transition-delay: 0.1s;
}

.fade-up-d2 {
  transition-delay: 0.2s;
}

.fade-up-d3 {
  transition-delay: 0.3s;
}

/* ── HERO ── */
.service-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0d2d5a 45%, #1044a3 100%);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 400px at 80% 50%,
      rgba(29, 121, 213, 0.35) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 300px 300px at 10% 80%,
      rgba(29, 121, 213, 0.18) 0%,
      transparent 70%
    );
  pointer-events: none;
}

/* decorative circle rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(29, 121, 213, 0.25);
  pointer-events: none;
}
.hero-ring-1 {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -80px;
}
.hero-ring-2 {
  width: 280px;
  height: 280px;
  right: 60px;
  top: 20px;
  border-color: rgba(29, 121, 213, 0.15);
}
.hero-ring-3 {
  width: 140px;
  height: 140px;
  right: 160px;
  top: 120px;
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-eyeball {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 38%,
    #6cb4f5 0%,
    #2577d4 30%,
    #0a3a7a 65%,
    #051a3e 100%
  );
  box-shadow:
    0 0 60px rgba(29, 121, 213, 0.5),
    0 0 120px rgba(29, 121, 213, 0.2),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}
.hero-eyeball::after {
  content: "";
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a1a2e, #000);
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.05),
    0 0 20px rgba(0, 0, 0, 0.8);
}
.hero-eyeball::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 22%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(4px);
}

.breadcrumb-bar {
  background: rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}
.breadcrumb-bar a,
.breadcrumb-bar span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.breadcrumb-bar a:hover {
  color: var(--white);
}
.breadcrumb-bar .bi-chevron-right {
  font-size: 0.7rem;
  margin: 0 6px;
}
.breadcrumb-bar .current {
  color: var(--white);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 121, 213, 0.2);
  border: 1px solid rgba(29, 121, 213, 0.5);
  color: #7ec3f5;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span {
  color: #7ec3f5;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(29, 121, 213, 0.4);
}
.btn-hero-primary:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 121, 213, 0.5);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* stat pills */
.hero-stats {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: left;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: #7ec3f5;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--section-divider);
  padding: 56px 0;
}
.intro-strip .lead-text {
  font-size: 1.13rem;
  color: var(--text);
  line-height: 1.85;
}
.intro-strip .accent-line {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* feature badges */
.feature-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--blue-ultra-pale);
  border: 1px solid var(--blue-pale);
  border-radius: 10px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}
.feature-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--shadow-blue);
  transform: translateY(-2px);
}
.feature-badge .icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.feature-badge .fb-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.feature-badge .fb-desc {
  font-size: 0.81rem;
  color: var(--mid-gray);
  line-height: 1.5;
  margin: 0;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0d1f3c;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-body {
  font-size: 0.97rem;
  color: var(--mid-gray);
  line-height: 1.8;
}

/* ── ARTISTRY SECTION ── */
.artistry-section {
  padding: 90px 0;
  background: var(--off-white);
}

.artistry-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d2d5a 0%, #1044a3 100%);
  box-shadow: 0 24px 64px rgba(29, 121, 213, 0.2);
}
.artistry-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eye-svg-wrap {
  width: 260px;
  height: 260px;
}

/* decorative corner accent */
.artistry-visual::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--gold);
  border-radius: 0 0 16px 16px;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.process-step:last-child {
  margin-bottom: 0;
}
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content .step-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  margin: 0;
  line-height: 1.65;
}

/* ── BIOCOMPAT SECTION ── */
.biocompat-section {
  padding: 90px 0;
  background: var(--white);
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--section-divider);
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}
.benefit-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px var(--shadow-blue);
  transform: translateY(-4px);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-ultra-pale);
  border: 1px solid var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.87rem;
  color: var(--mid-gray);
  margin: 0;
  line-height: 1.7;
}

/* ── POST-OP SECTION ── */
.postop-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #071429 0%, #0d2d5a 60%, #1044a3 100%);
  position: relative;
  overflow: hidden;
}
.postop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 800px 500px at 70% 50%,
    rgba(29, 121, 213, 0.2) 0%,
    transparent 70%
  );
}
.postop-section .section-title {
  color: var(--white);
}
.postop-section .section-label {
  color: #7ec3f5;
}
.postop-section .section-body {
  color: rgba(255, 255, 255, 0.68);
}

.care-timeline {
  position: relative;
  padding-left: 28px;
}
.care-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(29, 121, 213, 0.3));
  border-radius: 1px;
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.timeline-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-body {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 0;
}

.postop-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 32px;
}
.postop-highlight .ph-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.postop-highlight .ph-title i {
  color: #7ec3f5;
}
.postop-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.postop-highlight ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.postop-highlight ul li:last-child {
  border-bottom: none;
}
.postop-highlight ul li i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── INTERNATIONAL ── */
.international-section {
  padding: 90px 0;
  background: var(--off-white);
}
.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--section-divider);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.region-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px var(--shadow-blue);
}
.region-badge i {
  color: var(--gold);
}

.intl-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--section-divider);
  height: 100%;
  transition:
    box-shadow 0.25s,
    transform 0.2s;
}
.intl-card:hover {
  box-shadow: 0 12px 36px var(--shadow-blue);
  transform: translateY(-3px);
}
.intl-card .ic-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.intl-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 10px;
}
.intl-card p {
  font-size: 0.87rem;
  color: var(--mid-gray);
  margin: 0;
  line-height: 1.7;
}

/* ── CTA STRIP ── */
.cta-section {
  padding: 80px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 500px 300px at 90% 50%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 300px 300px at 10% 80%,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 70%
    );
}
.cta-section .cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-section .cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}
.btn-cta-white {
  background: var(--white);
  color: var(--gold);
  border: none;
  padding: 15px 36px;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-cta-white:hover {
  background: #f0f7ff;
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-cta-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 13px 32px;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-cta-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-eyeball {
    display: none;
  }
  .hero-ring {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-num {
    font-size: 1.5rem;
  }
}

/* subtle entrance animation */
/* @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
} */
.fade-up-1 {
  animation-delay: 0.05s;
}
.fade-up-2 {
  animation-delay: 0.15s;
}
.fade-up-3 {
  animation-delay: 0.25s;
}
.fade-up-4 {
  animation-delay: 0.35s;
}
.fade-up-5 {
  animation-delay: 0.45s;
}

.nav-services-dropdown {
  position: relative;
}

.nav-services-dropdown .dropdown-toggle::after {
  vertical-align: 2px;
  margin-left: 6px;
  border-top-color: var(--navy);
}

.nav-services-dropdown .dropdown-menu {
  border: none;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 8px;
  margin-top: 0px;
  min-width: 260px;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-services-dropdown .dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-services-dropdown .dropdown-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.nav-services-dropdown .dropdown-item:hover,
.nav-services-dropdown .dropdown-item:focus {
  background: var(--sky);
  color: var(--gold);
}

.nav-services-dropdown .dropdown-item i {
  color: var(--gold);
}

/* Desktop: open on hover */
@media (min-width: 992px) {
  .nav-services-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: dropdown-menu should sit inline inside collapsed navbar */
@media (max-width: 991px) {
  .nav-services-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--off-white);
    margin: 4px 0 8px;
    transform: none;
  }
}

.nav-services-dropdown .dropdown-toggle.menu-active::after {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .nav-services-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--off-white);
    margin: 4px 0 8px;
    transform: none;
    display: none;
  }
  .nav-services-dropdown .dropdown-menu.show {
    display: block;
  }
}
