:root{
  --primary:#1677ff;
  --primary-dark:#0f5fd6;
  --dark:#0f172a;
  --text:#1f2937;
  --muted:#6b7280;
  --light:#f7fafc;
  --white:#ffffff;
  --border:#e5edf5;
  --border-soft:#edf2f7;
  --shadow-sm:0 6px 18px rgba(15, 23, 42, 0.05);
  --shadow-md:0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg:0 18px 45px rgba(15, 23, 42, 0.10);
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:18px;
  --radius-xl:24px;
  --radius-2xl:30px;
  --font-main:'Inter',sans-serif;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-main);
  font-size:16px;
  font-weight:400;
  line-height:1.6;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  transition:all .25s ease;
}

section{
  overflow:hidden;
}

p{
  margin-bottom:0;
  color:var(--muted);
}

/* ---------------- TOP BAR ---------------- */
.topbar{
  background:var(--light);
  border-bottom:1px solid var(--border);
  font-size:13px;
  padding:8px 0;
}

.topbar-left span{
  margin-right:25px;
  color:#4b5563;
  font-weight:400;
}

.topbar-left i{
  color:var(--primary);
  margin-right:6px;
}

.social-icons a{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eaf2ff;
  border-radius:50%;
  margin-right:6px;
  color:var(--primary);
  font-size:13px;
}

.social-icons a:hover{
  background:var(--primary);
  color:#fff;
}

.top-contact-btn{
  background:var(--primary);
  color:#fff;
  padding:7px 14px;
  border-radius:8px;
  font-size:13px;
  font-weight:500;
  margin-left:12px;
}

.top-contact-btn:hover{
  background:var(--primary-dark);
  color:#fff;
}

/* ---------------- NAVBAR ---------------- */
.navbar{
  background:#fff;
  padding:14px 0;
  box-shadow:0 2px 14px rgba(15,23,42,0.04);
}

.navbar-brand{
  font-weight:600;
  font-size:22px;
  color:var(--dark);
  letter-spacing:-0.02em;
}

.navbar-brand img{
  max-height:56px;
  width:auto;
}

.nav-link{
  font-weight:500;
  font-size:15px;
  color:#334155;
  margin-right:14px;
  padding-top:10px;
  padding-bottom:10px;
}

.nav-link:hover,
.nav-link:focus{
  color:var(--primary);
}

.dropdown-menu{
  border:none;
  border-radius:14px;
  box-shadow:0 12px 32px rgba(15,23,42,0.10);
  padding:8px 0;
}

.dropdown-item{
  padding:10px 20px;
  font-size:14px;
  font-weight:400;
  color:#475569;
}

.dropdown-item:hover{
  background:#f8fbff;
  color:var(--primary);
}

@media(min-width:992px){
  .nav-item.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
  }
}

.btn-submit{
  background:var(--primary);
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  font-weight:500;
  font-size:14px;
  border:none;
  box-shadow:none;
}

.btn-submit:hover{
  background:var(--primary-dark);
  color:#fff;
}

/* ---------------- HERO ---------------- */
/* ===== HERO FINAL PREMIUM ===== */

.medical-hero {
  position: relative;
  height: 85vh;
  min-height: 700px;
  padding: 100px 0 120px;
  overflow: visible; /* allow floating cards */
}

/* SLIDER */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.medical-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* CONTENT */
.medical-hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 600px;
  color: #fff;
}

/* TEXT */
.hero-kicker {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-btn-primary {
  background: #1193a5;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
}

.hero-btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
}

/* MINI POINTS */
.hero-mini-points {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* ===== FLOATING TREATMENT BOXES ===== */
.hero-treatment-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px; /* ðŸ‘ˆ FLOAT OUTSIDE HERO */
  z-index: 5;
}

.hero-treatment-wrap .row {
  justify-content: center;
}

/* BOX STYLE */
.hero-treatment-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  min-height: 90px;
  border-radius: 18px;

  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.hero-treatment-box:hover {
  transform: translateY(-6px);
}

/* ICON */
.hero-treatment-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#1193a5,#38bdf8);
  color: #fff;
  font-size: 18px;
}

/* TEXT */
.hero-treatment-box h6 {
  font-size: 15px;
  margin: 0;
  color: #fff;
}

.hero-treatment-box span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* ===== SPACE BELOW HERO ===== */
.trust-strip {
  margin-top: 100px; /* space for floating cards */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .medical-hero {
    height: auto;
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-treatment-wrap {
    position: relative;
    bottom: auto;
    margin-top: 30px;
  }

  .trust-strip {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-mini-points {
    flex-direction: column;
  }
}
/* ---------------- GLOBAL SECTION UI ---------------- */
.section-tag{
  display:inline-block;
  padding:7px 16px;
  border:1px solid #cfe0ff;
  background:#f3f8ff;
  color:var(--primary);
  font-size:13px;
  font-weight:500;
  border-radius:999px;
  margin-bottom:16px;
  letter-spacing:0;
}

.section-tag-light{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.22);
  color:#fff;
}

.section-title{
  font-size:52px;
  line-height:1.08;
  font-weight:600;
  letter-spacing:-0.045em;
  color:var(--dark);
  margin-bottom:18px;
}

.section-text{
  font-size:16px;
  line-height:1.9;
  font-weight:400;
  color:var(--muted);
}

/* ---------------- TRUST STRIP ---------------- */
.trust-strip{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  margin-top:-34px;
  position:relative;
  z-index:2;
}

.trust-card{
  background:#fff;
  border-radius:22px;
  padding:26px 22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border-soft);
  transition:all .25s ease;
}

.trust-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

.trust-icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#1b7cff,#5ca7ff);
  color:#fff;
  font-size:22px;
  box-shadow:0 10px 22px rgba(22,119,255,0.20);
}

.trust-card h5{
  font-size:20px;
  line-height:1.3;
  font-weight:600;
  color:var(--dark);
  letter-spacing:-0.02em;
  margin-bottom:8px;
}

.trust-card p{
  font-size:15px;
  line-height:1.8;
  font-weight:400;
  color:var(--muted);
}

/* ---------------- ABOUT ---------------- */
.about-home{
  background:#fff;
}

.about-image-wrap{
  position:relative;
  padding-right:40px;
}

.about-main-img{
  border-radius:28px;
  box-shadow:0 24px 55px rgba(15,23,42,0.10);
}

.about-badge{
  position:absolute;
  right:0;
  bottom:30px;
  background:#fff;
  border-radius:20px;
  padding:18px 20px;
  box-shadow:var(--shadow-lg);
  min-width:240px;
  border:1px solid var(--border-soft);
}

.about-badge .badge-title{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--primary);
  font-weight:600;
  margin-bottom:4px;
}

.about-badge strong{
  display:block;
  font-size:19px;
  line-height:1.35;
  color:var(--dark);
  font-weight:600;
}

.about-badge small{
  color:var(--muted);
  font-size:13px;
  font-weight:400;
}

.feature-list{
  margin-top:26px;
  display:grid;
  gap:14px;
}

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:15px;
  line-height:1.8;
  font-weight:400;
  color:#475467;
}

.feature-item i{
  color:var(--primary);
  margin-top:5px;
  font-size:15px;
}

.about-home .btn,
.final-cta .btn{
  font-weight:500;
  font-size:15px;
  border-radius:999px;
  padding:13px 24px;
}

/* ---------------- HOW IT WORKS ---------------- */
.how-it-works{
  background:linear-gradient(180deg,#f6faff 0%, #ffffff 100%);
}

.process-card{
  position:relative;
  background:#fff;
  border-radius:24px;
  padding:28px 22px;
  border:1px solid var(--border-soft);
  box-shadow:var(--shadow-sm);
  transition:all .25s ease;
}

.process-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

.process-number{
  position:absolute;
  top:18px;
  right:18px;
  font-size:32px;
  font-weight:700;
  color:#e7eff9;
  line-height:1;
}

.process-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#1677ff,#6bb5ff);
  color:#fff;
  font-size:24px;
  margin-bottom:18px;
  box-shadow:0 12px 24px rgba(22,119,255,.18);
}

.process-card h5{
  font-size:20px;
  line-height:1.35;
  font-weight:600;
  color:var(--dark);
  letter-spacing:-0.02em;
  margin-bottom:10px;
}

.process-card p{
  font-size:15px;
  line-height:1.8;
  color:var(--muted);
}

/* ---------------- LEGACY COMPARE ---------------- */
.compare-section{
  background:#f6f9fc;
  padding:80px 0;
}

.compare-card{
  border-radius:16px;
  padding:35px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  height:100%;
}

.compare-card.bad{
  border-top:4px solid #ff5a5a;
}

.compare-card.good{
  border-top:4px solid var(--primary);
  background:var(--primary);
  color:#fff;
}

.compare-list{
  list-style:none;
  padding:0;
  margin:0;
}

.compare-list li{
  margin-bottom:16px;
  font-size:15px;
  display:flex;
  align-items:center;
}

.compare-list i{
  margin-right:10px;
  font-size:17px;
}

.compare-badge{
  font-size:12px;
  background:#e9f1ff;
  padding:6px 10px;
  border-radius:20px;
  display:inline-block;
  margin-bottom:15px;
  font-weight:500;
}

.compare-card.good .compare-badge{
  background:rgba(255,255,255,0.18);
  color:#fff;
}

/* ---------------- TREATMENT LEGACY ---------------- */
.cost-section{
  padding:90px 0;
  background:#f6f9fc;
}

.treatment-card{
  background:#fff;
  border-radius:18px;
  padding:32px;
  box-shadow:var(--shadow-sm);
  position:relative;
  transition:.3s;
}

.treatment-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

.treatment-icon{
  width:68px;
  height:68px;
  border-radius:16px;
  background:#eaf2ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:var(--primary);
  margin-bottom:18px;
}

.country-price{
  display:flex;
  justify-content:space-between;
  margin-top:18px;
  padding:12px 0;
  border-bottom:1px dashed var(--border);
}

.country-price:last-child{
  border:none;
}

.country-name{
  font-size:14px;
  color:var(--muted);
}

.price{
  font-weight:600;
  font-size:17px;
  color:var(--dark);
}

.save-badge{
  position:absolute;
  top:-12px;
  right:-12px;
  background:#22c55e;
  color:#fff;
  font-size:12px;
  font-weight:500;
  padding:6px 12px;
  border-radius:999px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.treatment-cost-section{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(90,160,255,0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(20,80,180,0.08), transparent 30%),
    linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
}

.treatment-box{
  background:#fff;
  border-radius:18px;
  padding:32px;
  box-shadow:var(--shadow-sm);
  transition:.3s;
  position:relative;
}

.treatment-box:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

.price-value{
  font-weight:600;
}

.save-tag{
  position:absolute;
  top:-10px;
  right:-10px;
  background:#22c55e;
  color:#fff;
  font-size:12px;
  font-weight:500;
  padding:6px 14px;
  border-radius:999px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* ---------------- PREMIUM COMPARISON ---------------- */
.comparison-card-premium{
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border-radius:28px;
  padding:24px;
  border:1px solid #dce8f5;
  box-shadow:0 14px 34px rgba(15,23,42,0.07);
  transition:.3s ease;
  position:relative;
  overflow:hidden;
}

.comparison-card-premium::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#79b8ff,#1677ff,#0f2c3f);
}

.comparison-card-premium:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(15,23,42,0.11);
}

.comparison-head-image{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:22px;
}

.comparison-image-wrap{
  width:96px;
  height:96px;
  min-width:96px;
  border-radius:22px;
  background:linear-gradient(135deg,#eef6ff,#ddeeff);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border:1px solid #d7e7f7;
}

.comparison-image{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:14px;
}

.comparison-head-content h5{
  font-size:22px;
  line-height:1.3;
  font-weight:600;
  color:#123250;
  letter-spacing:-0.025em;
  margin-bottom:8px;
}

.comparison-head-content p{
  color:#64748b;
  line-height:1.75;
  font-size:15px;
  font-weight:400;
}

.save-chip{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:linear-gradient(90deg,#ecf6ff,#dcebff);
  color:#0f5fd6;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
  border:1px solid #cfe3ff;
}

.price-list{
  background:linear-gradient(180deg,#f8fbff 0%, #f3f8ff 100%);
  border-radius:20px;
  padding:12px 16px;
  border:1px solid #e1ebf5;
}

.price-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 2px;
  border-bottom:1px solid #e4edf7;
  font-size:15px;
}

.price-row:last-child{
  border-bottom:none;
}

.price-row span{
  color:#64748b;
  font-weight:500;
}

.price-row strong{
  color:#0f172a;
  font-weight:600;
  text-align:right;
}

.price-row.highlight{
  background:linear-gradient(90deg,#e6f2ff 0%, #f3f8ff 100%);
  margin:0 -8px 8px;
  padding:14px 10px;
  border-radius:14px;
  border:1px solid #d4e7ff;
}

.price-row.highlight span,
.price-row.highlight strong{
  color:#0f5fd6;
}

/* ---------------- COUNTRY ADVANTAGE ---------------- */
.country-advantage{
  background:#fff;
}

.country-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.country-box{
  background:#f8fbff;
  border:1px solid #e5edf6;
  border-radius:22px;
  padding:24px;
  box-shadow:0 8px 22px rgba(15,23,42,0.04);
  transition:.25s;
}

.country-box.active,
.country-box:hover{
  background:linear-gradient(180deg,#1677ff 0%, #0f5fd6 100%);
  color:#fff;
  transform:translateY(-4px);
}

.country-box h5{
  font-size:21px;
  line-height:1.3;
  font-weight:600;
  margin-bottom:10px;
  letter-spacing:-0.02em;
}

.country-box p{
  font-size:15px;
  line-height:1.8;
  font-weight:400;
  color:inherit;
}

/* ---------------- NETWORK ---------------- */
.network-section{
  background:linear-gradient(180deg,#f6faff 0%, #ffffff 100%);
}

.network-wrap{
  background:linear-gradient(135deg,#0f2f49 0%, #143f65 100%);
  border-radius:32px;
  padding:48px;
  box-shadow:0 22px 50px rgba(6,42,74,.16);
}

.network-section .section-title{
  color:#fff;
}

.network-text{
  color:rgba(255,255,255,.78);
  line-height:1.95;
  font-size:16px;
  font-weight:400;
}

.network-points{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.network-points div{
  color:#fff;
  font-weight:400;
  line-height:1.8;
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.network-points i{
  color:#8ac7ff;
  margin-top:5px;
}

.network-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.mini-network-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(4px);
  border-radius:22px;
  padding:24px;
  color:#fff;
}

.mini-network-card i{
  font-size:26px;
  color:#8ac7ff;
  margin-bottom:14px;
}

.mini-network-card h6{
  font-size:19px;
  line-height:1.35;
  font-weight:600;
  margin-bottom:8px;
  letter-spacing:-0.02em;
}

.mini-network-card p{
  color:rgba(255,255,255,.72);
  line-height:1.75;
  font-size:15px;
  font-weight:400;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonials{
  background:#fff;
}

.testimonial-card{
  background:#fbfdff;
  border:1px solid #e8eff6;
  border-radius:22px;
  padding:28px;
  box-shadow:0 10px 26px rgba(15,23,42,.05);
}

.stars{
  font-size:18px;
  letter-spacing:2px;
  color:#ffb300;
  margin-bottom:16px;
}

.testimonial-card p{
  font-size:15px;
  line-height:1.95;
  color:#546678;
  margin-bottom:18px;
  font-weight:400;
}

.testimonial-card h6{
  font-size:17px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:3px;
  letter-spacing:-0.02em;
}

.testimonial-card small{
  color:#7a8794;
  font-size:13px;
}

/* ---------------- CTA ---------------- */
.final-cta{
  background:linear-gradient(180deg,#ffffff 0%, #f4f9ff 100%);
}

.cta-box{
  background:linear-gradient(135deg,#1677ff 0%, #0f5fd6 100%);
  border-radius:30px;
  padding:40px;
  box-shadow:0 18px 40px rgba(22,119,255,.18);
}

.cta-box h2{
  font-size:40px;
  line-height:1.15;
  font-weight:600;
  letter-spacing:-0.03em;
}

.cta-box p{
  color:rgba(255,255,255,.76) !important;
  font-size:15px;
  line-height:1.8;
}

/* ---------------- FOOTER ---------------- */
.site-footer{
  background:#0d3561;
  color:#fff;
  padding:70px 0 25px;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  margin-top:40px;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:28px;
}

.footer-brand h3{
  font-size:30px;
  line-height:1.2;
  font-weight:600;
  margin-bottom:10px;
  letter-spacing:-0.03em;
}

.footer-brand p{
  max-width:680px;
  color:rgba(255,255,255,.76);
  line-height:1.85;
  margin:0;
  font-size:15px;
  font-weight:400;
}

.footer-action{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.footer-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 22px;
  border-radius:12px;
  font-weight:500;
  font-size:14px;
}

.primary-btn{
  background:#1c8df2;
  color:#fff;
}

.primary-btn:hover{
  background:#0d7ce0;
  color:#fff;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.06);
}

.secondary-btn:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.footer-line{
  border-color:rgba(255,255,255,.14);
  margin:28px 0;
}

.footer-links-wrap h5{
  font-size:22px;
  line-height:1.3;
  font-weight:600;
  margin-bottom:20px;
  letter-spacing:-0.02em;
}

.footer-small{
  color:rgba(255,255,255,.75);
  line-height:1.8;
  max-width:300px;
  font-size:14px;
  font-weight:400;
}

.footer-social a{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#0d3561;
  border-radius:10px;
  margin-right:8px;
}

.footer-social a:hover{
  transform:translateY(-3px);
}

.footer-list{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-list li{
  margin-bottom:12px;
}

.footer-list a{
  color:rgba(255,255,255,.82);
  font-size:14px;
  font-weight:400;
}

.footer-list a:hover{
  color:#fff;
}

.footer-contact-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
  color:rgba(255,255,255,.84);
  font-size:14px;
  line-height:1.8;
  font-weight:400;
}

.footer-contact-item i{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:10px;
  color:var(--primary);
  font-size:16px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
}

.footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.footer-bottom-links a{
  color:rgba(255,255,255,.82);
  font-size:14px;
  font-weight:400;
}

.footer-copy{
  color:rgba(255,255,255,.72);
  font-size:14px;
  font-weight:400;
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:1199px){
  .carousel-caption h1{
    font-size:52px;
  }

  .section-title{
    font-size:44px;
  }
}

@media(max-width:991px){
  .navbar-nav{
    padding-top:15px;
  }

  .nav-link{
    margin-right:0;
    padding:10px 0;
  }

  .hero-img{
    height:500px;
  }

  .carousel-caption{
    bottom:18%;
    max-width:560px;
  }

  .carousel-caption h1{
    font-size:42px;
  }

  .carousel-caption p{
    font-size:17px;
  }

  .section-title{
    font-size:36px;
    line-height:1.12;
  }

  .about-image-wrap{
    padding-right:0;
  }

  .about-badge{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
  }

  .network-wrap{
    padding:30px;
  }

  .footer-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-box h2{
    font-size:32px;
  }
}

@media(max-width:767px){
  .hero-img{
    height:420px;
  }

  .carousel-caption{
    bottom:16%;
    left:8%;
    right:8%;
    max-width:none;
  }

  .carousel-caption h1{
    font-size:30px;
    line-height:1.1;
  }

  .carousel-caption p{
    font-size:15px;
    line-height:1.7;
  }

  .section-title{
    font-size:29px;
    line-height:1.18;
  }

  .section-text{
    font-size:15px;
  }

  .trust-card,
  .comparison-head-image{
    flex-direction:column;
  }

  .country-grid,
  .network-cards{
    grid-template-columns:1fr;
  }

  .comparison-image-wrap{
    width:88px;
    height:88px;
    min-width:88px;
  }

  .price-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .price-row strong{
    text-align:left;
  }

  .cta-box{
    padding:28px;
  }

  .cta-box h2{
    font-size:28px;
  }

  .footer-brand h3{
    font-size:26px;
  }

  .site-footer{
    border-top-left-radius:24px;
    border-top-right-radius:24px;
  }
}.medical-hero{
  position:relative;
  background:url('images/hero-doctor.webp') center center/cover no-repeat;
  min-height:920px;
  padding:120px 0 220px;
  overflow:hidden;
}

.medical-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,18,34,0.78) 0%, rgba(7,18,34,0.56) 35%, rgba(7,18,34,0.22) 70%, rgba(7,18,34,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.24) 100%);
  z-index:1;
}

.medical-hero .container{
  z-index:2;
}

.medical-hero-top{
  position:relative;
  z-index:2;
}

.hero-content{
  max-width:660px;
  color:#fff;
}

.hero-kicker{
  display:inline-block;
  font-size:15px;
  font-weight:600;
  color:#d7e9ff;
  margin-bottom:18px;
  padding:8px 16px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.10);
  border-radius:999px;
  backdrop-filter:blur(8px);
}

.hero-content h1{
  font-size:66px;
  line-height:1.02;
  font-weight:700;
  letter-spacing:-0.04em;
  color:#fff;
  margin-bottom:22px;
  max-width:760px;
}

.hero-content p{
  font-size:19px;
  line-height:1.85;
  color:rgba(255,255,255,0.88);
  max-width:620px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-btn-primary,
.hero-btn-outline{
  padding:14px 26px;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.hero-btn-primary{
  background:#1193a5;
  color:#fff;
  box-shadow:0 10px 24px rgba(17,147,165,0.28);
}

.hero-btn-primary:hover{
  background:#0e8090;
  color:#fff;
}

.hero-btn-outline{
  border:1px solid rgba(255,255,255,0.35);
  color:#fff;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
}

.hero-btn-outline:hover{
  background:rgba(255,255,255,0.16);
  color:#fff;
}

.hero-mini-points{
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
}

.hero-mini-points div{
  color:#fff;
  font-size:15px;
  line-height:1.7;
  font-weight:500;
}

.hero-mini-points i{
  color:#68e0ef;
  margin-right:8px;
}

.hero-form-card{
  background:rgba(255,255,255,0.90);
  border:1px solid rgba(255,255,255,0.45);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:28px;
  padding:32px;
  box-shadow:0 20px 50px rgba(0,0,0,0.18);
  max-width:420px;
  margin-left:auto;
}

.hero-form-card h3{
  font-size:34px;
  line-height:1.15;
  font-weight:600;
  color:#111827;
  margin-bottom:10px;
}

.hero-form-card p{
  font-size:15px;
  line-height:1.8;
  color:#667085;
  margin-bottom:22px;
}

.hero-input{
  height:54px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.08);
  background:rgba(255,255,255,0.75);
  color:#111827;
  font-size:15px;
  padding:12px 16px;
  box-shadow:none;
}

.hero-input:focus{
  border-color:#1193a5;
  box-shadow:none;
}

.hero-form-btn{
  height:56px;
  border:none;
  border-radius:14px;
  background:#1193a5;
  color:#fff;
  font-size:16px;
  font-weight:600;
}

.hero-form-btn:hover{
  background:#0e8090;
  color:#fff;
}

.hero-treatment-wrap{
  position:absolute;
  left:0;
  right:0;
  bottom:38px;
  z-index:3;
}

.hero-treatment-box{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:96px;
  padding:18px 18px;
  border-radius:22px;
  text-decoration:none;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  transition:.3s ease;
}

.hero-treatment-box:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.24);
}

.hero-treatment-icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(17,147,165,0.95), rgba(56,189,248,0.95));
  color:#fff;
  font-size:22px;
  box-shadow:0 10px 24px rgba(17,147,165,0.22);
}

.hero-treatment-box h6{
  margin:0 0 4px;
  font-size:18px;
  line-height:1.3;
  font-weight:600;
  color:#fff;
}

.hero-treatment-box span{
  display:block;
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,0.78);
}

@media(max-width:1199px){
  .medical-hero{
    min-height:980px;
    padding:110px 0 240px;
  }

  .hero-content h1{
    font-size:56px;
  }

  .hero-form-card{
    max-width:100%;
  }
}

@media(max-width:991px){
  .medical-hero{
    min-height:auto;
    padding:90px 0 80px;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-content h1{
    font-size:44px;
  }

  .hero-content p{
    font-size:17px;
    max-width:100%;
  }

  .hero-form-card{
    margin:20px 0 0;
  }

  .hero-treatment-wrap{
    position:relative;
    bottom:auto;
    margin-top:36px;
  }
}

@media(max-width:767px){
  .medical-hero{
    padding:80px 0 70px;
  }

  .hero-content h1{
    font-size:34px;
    line-height:1.08;
  }

  .hero-kicker{
    font-size:13px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.8;
  }

  .hero-mini-points{
    gap:10px;
    flex-direction:column;
  }

  .hero-form-card{
    padding:24px;
    border-radius:22px;
  }

  .hero-form-card h3{
    font-size:28px;
  }

  .hero-treatment-box{
    min-height:88px;
    padding:16px;
    border-radius:18px;
  }

  .hero-treatment-box h6{
    font-size:16px;
  }

  .hero-treatment-box span{
    font-size:13px;
  }
}.medical-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* SLIDER BACKGROUND */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

.hero-slider img {
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.medical-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* CONTENT ABOVE */
.medical-hero .container {
  position: relative;
  z-index: 3;
}


/* ===== DOCTOR FINAL (ALIGNED WITH SITE BRAND) ===== */

.doctor-card-premium {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.doctor-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* IMAGE */
.doctor-img {
  position: relative;
}

.doctor-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.4s;
}

.doctor-card-premium:hover img {
  transform: scale(1.05);
}

/* EXPERIENCE BADGE */
.exp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: 600;
}
/* ===== DOCTOR NAME BLOCK (FINAL FIX) ===== */

.doctor-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;

  background: rgba(15, 23, 42, 0.75); /* DARK GLASS (matches theme) */
  backdrop-filter: blur(10px);

  padding: 16px;
  border-radius: 14px;
  color: #fff;
}

/* NAME = STRONG */
.doctor-overlay h5 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* SPECIALITY = SOFT */
.doctor-overlay span {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
  color: #cbd5f5;
}
/* BODY */
.doctor-body {
  padding: 20px;
}

.doctor-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* 🔥 BUTTON FIX (MATCH SITE BUTTON SYSTEM) */
.btn-view {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view:hover {
  background: var(--primary-dark);
  color: #fff;
}
/* ===== HOSPITALS ===== */

.hospital-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.hospital-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.hospital-card:hover img {
  transform: scale(1.05);
}

.hospital-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
  padding: 16px;
  color: #fff;
}

.hospital-overlay h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.hospital-overlay span {
  font-size: 13px;
  opacity: 0.8;
}
/* ===== FAQ ===== */

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 15px;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f3f8ff;
  color: var(--primary);
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}.medical-insights{
background:#eef5fb;
}

/* CARD */
.medical-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:0.3s;
}

/* IMAGE */
.medical-card img{
width:100%;
height:240px;
object-fit:cover;
}

/* BODY */
.medical-card .card-body{
padding:20px;
}

/* TITLE */
.medical-card h5{
font-size:18px;
font-weight:600;
margin-bottom:10px;
color:#0f172a;
}

/* BUTTON */
.medical-card .btn{
border-radius:8px;
padding:6px 14px;
font-size:13px;
}

/* ACTIVE CARD (LIKE CENTER ONE IN YOUR IMAGE) */
.medical-card.active{
background:linear-gradient(180deg,#2f6dfc,#1e4ed8);
color:#fff;
}

.medical-card.active h5{
color:#fff;
}

.medical-card.active .btn{
background:#0b1e5b;
border:none;
}

/* HOVER */
.medical-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}