:root {
  --primary-cyan: #00a8ec;
  --primary-cyan-hover: #0092cf;
  --primary-cyan-light: #e0f2fe;
  --secondary-blue: #0284c7;
  --dark-navy-bg: #0c1c2e;
  --text-heading: #081626;
  --text-dark: #2c3e50;
  --text-muted: #5f7082;
  --bg-page: #ffffff;
  --card-bg-light: #ffffff;
  --border-light: #d8edf9;
  
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-page);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- Vascular Page Wrapper ---------------- */
.vascular-page-wrapper {
  width: 100%;
  padding: 24px 24px 0px;
}

.vascular-container {
  max-width: 1350px;
  margin: 0 auto;
}

/* ---------------- Common Section Headings ---------------- */
.section-heading-main {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 36px;
  letter-spacing: -0.2px;
}

.section-heading-main.text-center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 25px;
  color: var(--text-muted);
  max-width: 820px;
  margin: -20px auto 36px auto;
}

.section-subtitle.text-center {
  text-align: center;
}

.highlight-cyan {
  color: var(--primary-cyan);
}

.about-body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: justify;
}

/* ==========================================================================
   1. VASCULAR HERO BANNER SECTION
   ========================================================================== */
.vascular-hero-card {
  position: relative;
  border-radius: 28px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-navy-bg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.vascular-hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.vascular-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.vascular-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 73%) 0%, rgb(0 0 0 / 26%) 100%);
}

.vascular-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
}

.vascular-hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.vascular-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.breadcrumb-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.breadcrumb-link:hover {
  color: var(--primary-cyan);
  opacity: 1;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  user-select: none;
}

.breadcrumb-current {
  color: #ffffff;
  opacity: 0.92;
  user-select: none;
}

/* ==========================================================================
   2. VASCULAR SURGERY SECTION
   ========================================================================== */
.vascular-main-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

/* 3-Column Image Cards Grid */
.vascular-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.vascular-img-card {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vascular-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 168, 236, 0.16);
}

.vascular-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2-Column Info Cards Grid */
.vascular-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.vascular-info-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 168, 236, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vascular-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 236, 0.4);
  box-shadow: 0 14px 32px rgba(0, 168, 236, 0.12);
}

.vascular-info-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-cyan-light);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(0, 168, 236, 0.12);
}

.vascular-card-text {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 27px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   3. VASCULAR TREATMENTS WE OFFERED (PILLS)
   ========================================================================== */
.vascular-treatments-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
}

.treatments-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

.treatments-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.treatment-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e1effa;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 236, 0.35);
  box-shadow: 0 8px 22px rgba(0, 168, 236, 0.12);
}

.treatment-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.treatment-pill-info {
  display: flex;
  flex-direction: column;
}

.treatment-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 1px;
  text-transform: uppercase;
}

.treatment-name {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 19px;
  font-weight: 500;
  color: var(--text-heading);
}

/* Category Color Accents */
.bg-blue { background: #00a8ec; }
.color-blue { color: #00a8ec; }

.bg-teal { background: #00ba9d; }
.color-teal { color: #00ba9d; }

.bg-red { background: #f43f5e; }
.color-red { color: #f43f5e; }

.bg-cyan { background: #0284c7; }
.color-cyan { color: #0284c7; }

.bg-indigo { background: #4f46e5; }
.color-indigo { color: #4f46e5; }

.bg-rose { background: #e11d48; }
.color-rose { color: #e11d48; }

.bg-blue-dark { background: #2563eb; }
.color-blue-dark { color: #2563eb; }

.bg-green { background: #10b981; }
.color-green { color: #10b981; }

.bg-amber { background: #f59e0b; }
.color-amber { color: #d97706; }

.bg-purple { background: #8b5cf6; }
.color-purple { color: #8b5cf6; }

/* ==========================================================================
   4. ADVANCED VASCULAR SURGICAL CARE
   ========================================================================== */
.vascular-advanced-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.advanced-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.advanced-img-frame {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.advanced-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advanced-care-title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
}

/* ==========================================================================
   5. GENERAL SURGERY SERVICES (TWO COLUMN)
   ========================================================================== */
.general-surgery-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
}

.general-surgery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.general-surgery-title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.general-img-frame {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.general-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   6. SPECIALIZED VASCULAR PROCEDURES
   ========================================================================== */
.specialized-procedures-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.specialized-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.specialized-img-frame {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.specialized-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialized-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.specialized-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.specialized-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-cyan);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 168, 236, 0.25);
}

.specialized-text {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  color: var(--text-heading);
}

/* ==========================================================================
   7. GENERAL SURGERY SERVICES (BOTTOM SUMMARY CARD)
   ========================================================================== */
.general-summary-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
}

.general-summary-card {
  background: #ffffff;
  border: 1px solid rgba(0, 168, 236, 0.15);
  border-radius: 22px;
  padding: 36px 48px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 10px 28px rgba(0, 168, 236, 0.08);
  text-align: center;
}

.summary-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-cyan);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 6px 16px rgba(0, 168, 236, 0.25);
}

.summary-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-dark);
}
