/* =====================================================
   MEDICAL PAGE – PREMIUM LIGHT LUXURY DESIGN
   Uses global color variables
===================================================== */

/* ================= SECTION SPACING ================= */

.medical-intro,
.image-strip,
.medical-destinations,
.medical-support,
.process,
.psychometric-section {
  padding: 100px 0;
}

/* =====================================================
   HERO SECTION
===================================================== */

.medical-hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 90px 8%;
}

.medical-hero .banner-overlay {
  background: linear-gradient(
    120deg,
    rgba(2,6,23,.85),
    rgba(2,6,23,.45)
  );
}

.medical-hero .banner-text h1 {
  font-size: clamp(40px,4vw,58px);
  font-weight: 900;
  color: #fff;
}

.medical-hero .banner-text p {
  font-size: 18px;
  color: #e2e8f0;
  margin-top: 14px;
}

/* =====================================================
   MEDICAL INTRO – SPLIT LAYOUT PREMIUM
===================================================== */

.medical-intro {
  padding: 120px 0;
  background: radial-gradient(circle at top, #ffffff 0%, #f1f5f9 70%);
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* IMAGE SIDE */

.intro-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow:
    0 60px 140px rgba(0,0,0,.18),
    0 20px 45px rgba(0,0,0,.08);
  transition: transform .6s ease;
}

.intro-image img:hover {
  transform: scale(1.03);
}

/* CONTENT SIDE */

.intro-content {
  max-width: 520px;
}

.pill-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.intro-content h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.intro-content .section-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-content {
    text-align: center;
    margin: 0 auto;
  }

}


/* =====================================================
   IMAGE STRIP
===================================================== */

.image-strip h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 50px;
}

.image-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.image-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 35px 95px rgba(0,0,0,.22);
}

.image-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .6s ease;
}

.image-tile:hover img {
  transform: scale(1.12);
}

.image-tile span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}

/* =====================================================
   MEDICAL DESTINATIONS
===================================================== */

.medical-destinations {
  background: var(--bg-light);
  text-align: center;
}

.feature-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 36px;
}

.feature-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,.14);
  transition: .4s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 60px 150px rgba(0,0,0,.22);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.feature-card h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 900;
}

.feature-card p {
  padding: 0 20px 25px;
  color: var(--text-muted);
}

/* =====================================================
   MEDICAL SUPPORT
===================================================== */

.medical-support {
  background: linear-gradient(180deg,#ffffff,#f1f5f9);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 45px 130px rgba(0,0,0,.18);
}

.check-list {
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 16px;
  font-size: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.check-list i {
  color: var(--primary);
  font-size: 18px;
}

.info-note {
  margin-top: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0,0,0,.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-note i {
  color: var(--accent);
  margin-top: 4px;
}

/* =====================================================
   PROCESS SECTION
===================================================== */

.process {
  text-align: center;
}

.process-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 40px;
}

.step {
  background: #fff;
  padding: 36px;
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0,0,0,.15);
  transition: .4s ease;
}

.step:hover {
  transform: translateY(-14px);
  box-shadow: 0 65px 180px rgba(0,0,0,.22);
}

.step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  margin: 20px 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,var(--primary),var(--accent));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  margin: 0 auto 15px;
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .medical-hero {
    grid-template-columns: 1fr;
    padding: 80px 6%;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .medical-intro,
  .image-strip,
  .medical-destinations,
  .medical-support,
  .process,
  .psychometric-section {
    padding: 70px 0;
  }

  .medical-hero .banner-text h1 {
    font-size: 34px;
  }
}
