/* ================================================================
   PREMIUM DESIGN SYSTEM — IVF Cyprus
   Part 1: Typography, Scaling & Header
   ================================================================ */

/* ──────────────────────────────────────────
   1. CSS Custom Properties (Brand Variables)
   ────────────────────────────────────────── */
:root {
  /* Inter replaces Poppins/Open Sans as the primary typeface */
  --font-inter: 'Inter', sans-serif;

  /* Typography scale */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  30px;
  --text-4xl:  36px;
  --text-5xl:  48px;
  --text-6xl:  64px;
  --text-hero: clamp(40px, 5.5vw, 72px);

  /* Border radii */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-3xl:  28px;
  --radius-full: 9999px;

  /* Premium shadow system */
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.09), 0 8px 20px rgba(0,0,0,0.05);
  --shadow-2xl:    0 32px 80px rgba(0,0,0,0.12), 0 12px 28px rgba(0,0,0,0.06);
  --shadow-blue:   0 8px 28px rgba(38,174,252,0.28);
  --shadow-orange: 0 8px 28px rgba(239,114,12,0.28);

  /* Brand colours (unchanged from existing palette) */
  --brand-blue:       #26aefc;
  --brand-blue-dark:  #169fed;
  --brand-blue-xdark: #0e85d4;
  --brand-orange:     #ef720c;
  --brand-blue-light: #b9e5ff;
  --brand-surface:    #f8fafc;
  --brand-text:       #334155;
  --brand-heading:    #0F172A;
  --brand-muted:      #64748b;
}

/* ──────────────────────────────────────────
   2. Global Font Override → Inter
   ────────────────────────────────────────── */
*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

body,
p,
li,
td,
th,
label,
input,
textarea,
select,
button {
  font-family: var(--font-inter) !important;
  font-size: var(--text-base);
  color: var(--brand-text);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-inter) !important;
  color: var(--brand-heading);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Fluid heading sizes */
h1, .h1 { font-size: var(--text-hero); }
h2, .h2 { font-size: clamp(28px, 3.8vw, 48px); }
h3, .h3 { font-size: clamp(20px, 2.4vw, 32px); font-weight: 700; }
h4, .h4 { font-size: var(--text-2xl); font-weight: 700; }
h5, .h5 { font-size: var(--text-xl);  font-weight: 600; }
h6, .h6 { font-size: var(--text-base); font-weight: 600; }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 1.15rem;
}

/* ──────────────────────────────────────────
   3. Global Utility Classes
   ────────────────────────────────────────── */

/* Radii */
.rounded-3xl { border-radius: var(--radius-3xl) !important; }
.rounded-2xl { border-radius: var(--radius-2xl) !important; }
.rounded-xl  { border-radius: var(--radius-xl)  !important; }
.rounded-lg  { border-radius: var(--radius-lg)  !important; }

/* Shadows */
.shadow-prem-xs  { box-shadow: var(--shadow-xs)  !important; }
.shadow-prem-sm  { box-shadow: var(--shadow-sm)  !important; }
.shadow-prem     { box-shadow: var(--shadow-md)  !important; }
.shadow-prem-lg  { box-shadow: var(--shadow-lg)  !important; }
.shadow-prem-xl  { box-shadow: var(--shadow-xl)  !important; }
.shadow-prem-2xl { box-shadow: var(--shadow-2xl) !important; }
.shadow-blue     { box-shadow: var(--shadow-blue)   !important; }
.shadow-orange   { box-shadow: var(--shadow-orange) !important; }

/* ──────────────────────────────────────────
   4. HEADER — Top Blue Bar (topNumberBar)
   ────────────────────────────────────────── */
.topNumberBar {
  background: linear-gradient(90deg, #0e85d4 0%, #169fed 50%, #26aefc 100%) !important;
  height: 46px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Contact links in top bar */
.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.92) !important;
  font-family: var(--font-inter) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: color 0.2s ease;
  line-height: 46px;
}

.top-contact-link i {
  font-size: 14px;
  opacity: 0.85;
}

.top-contact-link:hover {
  color: #ffffff !important;
}

.top-contact-sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.22);
  margin: 0 16px;
  vertical-align: middle;
}

/* Social icon pills in top bar */
.top-social-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #ffffff !important;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  line-height: 1;
}

.top-social-icon:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.5);
}

.top-social-icon.si-whatsapp:hover  { background: #25D366; border-color: #25D366; }
.top-social-icon.si-viber:hover     { background: #7360F2; border-color: #7360F2; }
.top-social-icon.si-telegram:hover  { background: #28A8E9; border-color: #28A8E9; }
.top-social-icon.si-facebook:hover  { background: #1877F2; border-color: #1877F2; }
.top-social-icon.si-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; }

/* ──────────────────────────────────────────
   5. HEADER — Main Nav Bar (white section)
   ────────────────────────────────────────── */
.main-navbar {
  padding: 0 !important;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.055) !important;
}

.main-navbar .container-fluid {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.main-navbar .navbar {
  min-height: 76px;
  padding: 0 !important;
}

.main-navbar .navbar-brand img {
  transition: transform 0.25s ease;
}

.main-navbar .navbar-brand:hover img {
  transform: scale(1.03);
}

/* Nav items */
.main-navbar .navbar .navbar-nav .nav-item {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.main-navbar .navbar .navbar-nav .nav-item > a {
  font-family: var(--font-inter) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: #1e293b !important;
  padding-top: 26px !important;
  padding-bottom: 26px !important;
  white-space: nowrap;
  transition: color 0.2s ease !important;
}

.main-navbar .navbar .navbar-nav .nav-item > a:hover,
.main-navbar .navbar .navbar-nav .nav-item > a:focus,
.main-navbar .navbar .navbar-nav .nav-item > a.active {
  color: var(--brand-blue-dark) !important;
}

/* Active underline — override the pseudo-element */
.main-navbar .navbar .navbar-nav .nav-item a::after {
  bottom: 16px !important;
  height: 2px !important;
  border-radius: 2px !important;
}

/* ──────────────────────────────────────────
   6. HEADER — Dropdown Menus (premium)
   ────────────────────────────────────────── */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none !important;
  border-radius: var(--radius-xl) !important;
  padding: 8px !important;
  width: 240px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.11), 0 4px 16px rgba(0,0,0,0.06) !important;
  margin-top: 0 !important;
  top: 70px !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  font-family: var(--font-inter) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  padding: 9px 14px !important;
  border-radius: var(--radius-md) !important;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease !important;
  white-space: normal !important;
  display: block !important;
  line-height: 1.4 !important;
}

/* Override the ::before arrow on hover */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  display: none !important;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  background: #eff8ff !important;
  color: var(--brand-blue-dark) !important;
  padding-left: 18px !important;
}

/* Sub-dropdown position */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: -8px !important;
  left: -230px !important;
  border-radius: var(--radius-xl) !important;
}

/* ──────────────────────────────────────────
   7. HEADER — Language Switcher area
   ────────────────────────────────────────── */
.main-navbar .others-options {
  margin-left: 16px !important;
}

.language-switcher .dropdown-toggle {
  font-family: var(--font-inter) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-full) !important;
  background: var(--brand-surface) !important;
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
}

.language-switcher .dropdown-toggle:hover {
  border-color: var(--brand-blue) !important;
  background: #eff8ff !important;
  color: var(--brand-blue-dark) !important;
}

/* ──────────────────────────────────────────
   8. HEADER — Mobile nav bar
   ────────────────────────────────────────── */
.main-responsive-nav {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06) !important;
  padding: 10px 0 !important;
}

.mobile-nav-toggle {
  font-size: 26px !important;
  color: var(--brand-blue) !important;
}

/* Mobile phone pill button */
.mobile-phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  background: var(--brand-blue);
  color: #ffffff !important;
  font-family: var(--font-inter) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: var(--shadow-blue);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-phone-pill:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.mobile-phone-pill-orange {
  background: var(--brand-orange);
  box-shadow: var(--shadow-orange);
}

.mobile-phone-pill-orange:hover {
  background: #d6650a;
}

/* ──────────────────────────────────────────
   9. Sticky header polish
   ────────────────────────────────────────── */
.navbar-area.is-sticky {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
}

.navbar-area.is-sticky .topNumberBar {
  display: flex !important;
}

.navbarCover {
  /* Will be recalculated by JS, keep this as a reset fallback */
}

/* ──────────────────────────────────────────
   10. Section Title Typography
   ────────────────────────────────────────── */
.section-title h2 {
  font-family: var(--font-inter) !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  color: var(--brand-heading) !important;
}

.section-title h4 {
  font-family: var(--font-inter) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.section-title p {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: #64748b !important;
}

.section-title span {
  font-family: var(--font-inter) !important;
  font-weight: 600 !important;
}

/* ──────────────────────────────────────────
   11. Page Banner area headings
   ────────────────────────────────────────── */
.page-banner-content h2 {
  font-family: var(--font-inter) !important;
  font-size: clamp(26px, 3.5vw, 46px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

/* ================================================================
   PART 2 — Home Page Segments
   ================================================================ */

/* ──────────────────────────────────────────
   A. ABOUT + WHY US section
   ────────────────────────────────────────── */
.home-about-section {
  padding: 104px 0;
  background: #f8fafc;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-blue-dark);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(22,159,237,0.08);
  border-radius: 100px;
}

.home-about-section h2 {
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  line-height: 1.15 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.025em !important;
}

.about-tagline {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--brand-blue-dark) !important;
  margin-bottom: 4px !important;
}

.about-tagline-sub {
  font-size: 15px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 22px;
}

.home-about-section p {
  font-size: 16px !important;
  line-height: 1.78 !important;
  color: #475569 !important;
}

.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Why Us premium card */
.why-us-premium {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.03);
  border-bottom: 4px solid var(--brand-orange);
  height: 100%;
}

.why-us-premium-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 26px !important;
  letter-spacing: -0.015em;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.why-us-item:hover {
  background: #fffbf7;
}

.why-us-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 7px;
  background: rgba(239,114,12,0.1);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

.why-us-item span {
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  font-weight: 500;
}

/* ──────────────────────────────────────────
   B. DOCTOR section
   ────────────────────────────────────────── */
.home-doctor-section {
  padding: 104px 0;
  background: #ffffff;
}

.doctor-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue-dark);
  text-align: center;
  display: block;
  margin-bottom: 8px;
}

.doctor-section-name {
  font-size: clamp(22px, 3vw, 34px) !important;
  font-weight: 800 !important;
  color: var(--brand-orange) !important;
  text-align: center !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 56px !important;
  font-style: normal !important;
}

.doctor-photo-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.doctor-photo-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.doctor-photo-wrap:hover img {
  transform: scale(1.04);
}

.doctor-bio-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doctor-bio-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  border: 1px solid #f1f5f9;
  transition: all 0.25s ease;
}

.doctor-bio-item:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
  border-color: rgba(22,159,237,0.1);
}

.doctor-bio-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  background: rgba(22,159,237,0.1);
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.doctor-bio-item p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  color: #475569 !important;
}

/* ──────────────────────────────────────────
   C. IVF JOURNEY — Numbered Steps
   ────────────────────────────────────────── */
.ivf-journey-section {
  background: linear-gradient(150deg, #0e85d4 0%, #169fed 55%, #26aefc 100%);
  padding: 92px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.ivf-journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.07) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.ivf-journey-section .section-title {
  margin-bottom: 12px;
}

.ivf-journey-section .section-title h2 {
  color: #ffffff !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  letter-spacing: -0.025em !important;
}

.journey-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 52px;
}

/* 3-column grid for steps */
.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

/* Connector line between cards (desktop) */
.journey-steps-grid::before {
  content: '';
  position: absolute;
  top: 54px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  z-index: 0;
}

.journey-step-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.journey-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(0,0,0,0.18);
}

/* Giant ghost number in background */
.journey-step-number {
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  top: 10px;
  right: 18px;
  opacity: 0.055;
  color: #0F172A;
  user-select: none;
  font-variant-numeric: tabular-nums;
}

.journey-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px 4px 8px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.journey-step-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  margin-bottom: 22px !important;
  letter-spacing: -0.01em;
  line-height: 1.2 !important;
}

.journey-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
  font-weight: 500;
}

.journey-step-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.journey-step-check {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 8px;
  flex-shrink: 0;
  background: #169fed;
}

/* Bottom accent bar */
.journey-step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

/* Step colour variants — all unified blue */
.step-before .journey-step-badge,
.step-cyprus .journey-step-badge,
.step-after  .journey-step-badge  { background: rgba(22,159,237,0.1); color: #169fed; }

.step-before .journey-step-title,
.step-cyprus .journey-step-title,
.step-after  .journey-step-title  { color: #169fed !important; }

.step-before::after,
.step-cyprus::after,
.step-after::after                { background: #169fed; }

/* Step icon circle */
.journey-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #169fed;
  margin-bottom: 12px;
  line-height: 1;
}

/* Journey CTA */
.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--brand-blue-dark);
  padding: 16px 42px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.16);
  transition: all 0.3s ease;
  margin-top: 52px;
}

.journey-cta-btn:hover {
  background: var(--brand-heading);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

/* ================================================================
   PART 2b — Why Northern Cyprus / Treatments / Success Rates
   ================================================================ */

/* ──────────────────────────────────────────
   D. WHY NORTHERN CYPRUS — Feature Cards
   ────────────────────────────────────────── */
.northern-cyprus-section {
  padding: 100px 0;
  background: #ffffff;
}

.northern-feature-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 26px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.035);
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.northern-feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}

.northern-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.northern-feature-card:hover .northern-feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.northern-feature-card h4 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.01em;
}

.northern-feature-card p {
  font-size: 14px !important;
  line-height: 1.68 !important;
  color: #64748b !important;
  margin-bottom: 0 !important;
}

/* Icon colour variants */
.icon-v0 { background: #eaf7ff; color: #169fed; }
.icon-v1 { background: #eefbf4; color: #2ea86f; }
.icon-v2 { background: #fff6e9; color: #ef720c; }
.icon-v3 { background: #f3efff; color: #6f42c1; }
.icon-v4 { background: #ffeef3; color: #d63384; }

/* ──────────────────────────────────────────
   E. TREATMENTS — Premium Cards
   ────────────────────────────────────────── */
.treatments-section {
  padding: 100px 0;
  background: linear-gradient(150deg, #0e85d4 0%, #169fed 55%, #26aefc 100%);
  position: relative;
}

.treatments-section .section-title h2 {
  color: #ffffff !important;
}

.treatments-section .section-eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.15);
}

.treatment-card-premium {
  display: block;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  height: 100%;
  text-decoration: none !important;
  transition: transform 0.35s cubic-bezier(0.165,0.84,0.44,1),
              box-shadow 0.35s cubic-bezier(0.165,0.84,0.44,1);
}

.treatment-card-premium:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.18);
}

.treatment-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.treatment-card-premium:hover .treatment-card-img img {
  transform: scale(1.08);
}

.treatment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,133,212,0.72) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
}

.treatment-card-premium:hover .treatment-card-overlay {
  opacity: 1;
}

.treatment-overlay-btn {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.treatment-card-body {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.treatment-card-body h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  margin: 0 !important;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.treatment-card-arrow {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #eff8ff;
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s ease;
}

.treatment-card-premium:hover .treatment-card-arrow {
  background: var(--brand-blue-dark);
  color: #ffffff;
  transform: translateX(3px);
}

/* ──────────────────────────────────────────
   F. SUCCESS RATES — Premium Stats
   ────────────────────────────────────────── */
.success-rates-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.success-rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.success-stat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.success-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.success-stat-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.success-stat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.success-stat-info {
  flex: 1;
}

.success-stat-number {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.success-stat-number .odometer {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.success-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.success-stat-bar-wrap {
  height: 5px;
  border-radius: 3px;
  background: #f1f5f9;
  overflow: hidden;
}

.success-stat-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-image-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  min-height: 400px;
}

.success-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   PART 3 — Treatment Pages Standard Template
   ================================================================ */

/* ──────────────────────────────────────────
   G. PAGE HERO BANNER
   ────────────────────────────────────────── */
.treatment-page-hero {
  background: linear-gradient(135deg, #0b78c1 0%, #169fed 55%, #26aefc 100%);
  padding: 56px 0 50px;
  position: relative;
  overflow: hidden;
}

.treatment-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.treatment-page-hero-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  display: block;
}

.treatment-page-hero h1 {
  font-size: clamp(26px, 3.2vw, 40px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.treatment-breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.treatment-breadcrumb a {
  color: rgba(255,255,255,0.72);
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.treatment-breadcrumb a:hover {
  color: #ffffff;
}

.treatment-breadcrumb i {
  font-size: 15px;
  opacity: 0.6;
}

/* ──────────────────────────────────────────
   H. PAGE BODY WRAPPER
   ────────────────────────────────────────── */
.treatment-page-body {
  background: #f8fafc;
  padding: 56px 0 88px;
}

/* ──────────────────────────────────────────
   I. SIDEBAR
   ────────────────────────────────────────── */
.treatment-sidebar-nav {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.treatment-sidebar-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.treatment-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-sidebar-nav ul li {
  margin-bottom: 5px;
}

.treatment-sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: var(--radius-md);
  color: #475569;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  background: #f8fafc;
  text-decoration: none !important;
  line-height: 1.4;
}

.treatment-sidebar-nav ul li a::before {
  content: "\ea6e";
  font-family: "remixicon";
  font-size: 13px;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.treatment-sidebar-nav ul li a:hover,
.treatment-sidebar-nav ul li a.active {
  background: var(--brand-blue-dark);
  color: #ffffff;
}

.treatment-sidebar-nav ul li a:hover::before,
.treatment-sidebar-nav ul li a.active::before {
  color: rgba(255,255,255,0.6);
}

/* Nested sub-menu */
.treatment-sidebar-nav ul li ul {
  margin-top: 5px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid #f1f5f9;
}

.treatment-sidebar-nav ul li ul li a {
  font-size: 12.5px;
  background: transparent;
  padding: 7px 12px;
}

.treatment-sidebar-nav ul li ul li a:hover,
.treatment-sidebar-nav ul li ul li a.active {
  background: rgba(22,159,237,0.08);
  color: var(--brand-blue-dark);
}

/* Sidebar banner image */
.treatment-sidebar-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.treatment-sidebar-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Sidebar CTA card */
.treatment-sidebar-cta {
  background: linear-gradient(135deg, #0e85d4 0%, #26aefc 100%);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-blue);
}

.treatment-sidebar-cta h4 {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 7px !important;
}

.treatment-sidebar-cta p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 13px !important;
  margin-bottom: 18px !important;
  line-height: 1.5 !important;
}

.treatment-sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  color: var(--brand-blue-dark) !important;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.treatment-sidebar-cta-btn:hover {
  background: var(--brand-heading);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────
   J. CONTENT WRAP OVERRIDES
   ────────────────────────────────────────── */
.treatment-content-wrap {
  background: #ffffff !important;
  border-radius: var(--radius-2xl) !important;
  padding: 44px !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid rgba(0,0,0,0.025) !important;
}

.treatment-content-wrap > h1 {
  font-size: clamp(22px, 2.8vw, 32px) !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 22px !important;
  padding-bottom: 18px !important;
  border-bottom: 2px solid #f1f5f9 !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.treatment-content-wrap h2 {
  font-size: 21px !important;
  font-weight: 700 !important;
  color: var(--brand-blue-dark) !important;
  margin-top: 34px !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.01em;
}

.treatment-content-wrap h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  margin-top: 26px !important;
  margin-bottom: 12px !important;
}

.treatment-content-wrap p {
  font-size: 16px !important;
  line-height: 1.78 !important;
  color: #475569 !important;
  margin-bottom: 18px !important;
}

.intro-highlight {
  background: rgba(22,159,237,0.05) !important;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0 !important;
  padding: 22px 26px !important;
  margin-bottom: 26px !important;
  border-left: 4px solid var(--brand-blue-dark) !important;
}

.intro-highlight p {
  font-size: 16px !important;
  color: #334155 !important;
  line-height: 1.78 !important;
}

.important-notice {
  background: rgba(22,159,237,0.05) !important;
  border-left: 4px solid var(--brand-blue-dark) !important;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0 !important;
  padding: 22px 26px !important;
  margin: 28px 0 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #334155 !important;
}

/* ──────────────────────────────────────────
   K. PROCESS STEPS — 01/02/03/04
   ────────────────────────────────────────── */
.treatment-process-section {
  margin: 36px 0;
  padding: 36px;
  background: #f8fafc;
  border-radius: var(--radius-xl);
  border: 1px solid #f1f5f9;
}

.treatment-process-heading {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 24px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.015em;
}

.treatment-process-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  border-radius: 1px;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.process-step-tile {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid #f1f5f9;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.25s ease;
  position: relative;
}

.process-step-tile:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(22,159,237,0.15);
  transform: translateY(-2px);
}

.process-step-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-blue-dark);
  opacity: 0.18;
  min-width: 38px;
  margin-top: -3px;
}

.process-step-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 11px;
  background: rgba(22,159,237,0.1);
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.process-step-body h4 {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 4px !important;
  line-height: 1.3;
}

.process-step-body p {
  font-size: 12.5px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin-bottom: 0 !important;
}

/* ──────────────────────────────────────────
   L. TEST TABLE CARDS
   ────────────────────────────────────────── */
.treatment-tests-section {
  margin-top: 36px;
}

.treatment-tests-heading {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 20px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.015em;
}

.treatment-tests-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  border-radius: 1px;
}

.treatment-test-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  transition: all 0.25s ease;
}

.treatment-test-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.treatment-test-card-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
}

.treatment-test-card-hdr h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  margin: 0 !important;
}

.treatment-test-card-hdr .card-gender-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff8ff;
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.treatment-test-card-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.treatment-test-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-test-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  border-bottom: 1px solid #f8fafc;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  line-height: 1.4;
}

.treatment-test-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.test-check-dot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(239,114,12,0.1);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   N. HORIZONTAL SUBNAV (replaces sidebar nav)
   ────────────────────────────────────────── */
.treatment-subnav-wrap {
  margin-bottom: 28px;
}

.treatment-subnav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.treatment-subnav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  background: #ffffff;
  color: #475569;
  text-decoration: none !important;
  border: 1.5px solid #e2e8f0;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.treatment-subnav-item:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue-dark);
  background: #f0f9ff;
}

.treatment-subnav-item.active {
  background: var(--brand-blue-dark);
  color: #ffffff;
  border-color: var(--brand-blue-dark);
  box-shadow: var(--shadow-blue);
}

/* ──────────────────────────────────────────
   O. FULL-WIDTH CONTENT OVERRIDES
      (no sidebar layout)
   ────────────────────────────────────────── */

/* Process steps: 4 columns when full-width */
.treatment-content-wrap .process-steps-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Test cards section gets more breathing room */
.treatment-content-wrap .treatment-tests-section {
  margin-top: 40px;
}

/* Wider content wrap has more horizontal padding */
.treatment-content-wrap-wide {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 52px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.025);
}

.treatment-content-wrap-wide > h1 {
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 24px !important;
  padding-bottom: 22px !important;
  border-bottom: 2px solid #f1f5f9 !important;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.treatment-content-wrap-wide h2 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--brand-blue-dark) !important;
  margin-top: 38px !important;
  margin-bottom: 16px !important;
}

.treatment-content-wrap-wide h3 {
  font-size: 19px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  margin-top: 30px !important;
  margin-bottom: 14px !important;
}

.treatment-content-wrap-wide p {
  font-size: 16.5px !important;
  line-height: 1.8 !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
}

/* ──────────────────────────────────────────
   M. Sidebar classic widget override
      (old pages using widget_top-services)
   ────────────────────────────────────────── */
.widget_top-services {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-md);
  border: none;
}

.widget_top-services .widget-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #94a3b8 !important;
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.widget_top-services ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.widget_top-services ul li {
  margin-bottom: 5px !important;
}

.widget_top-services ul li::before {
  display: none !important;
}

.widget_top-services ul li a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 13px !important;
  border-radius: var(--radius-md) !important;
  color: #475569 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  background: #f8fafc !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.widget_top-services ul li a:hover,
.widget_top-services ul li a.active {
  background: var(--brand-blue-dark) !important;
  color: #ffffff !important;
}

/* ══════════════════════════════════════════
   PART 4 — BLOG & CONTACT
   ══════════════════════════════════════════ */

/* ──────────────────────────────────────────
   A. Blog List Page
   ────────────────────────────────────────── */
.blog-page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.blog-page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--brand-heading);
  margin-bottom: 12px;
}
.blog-page-hero p {
  font-size: 17px;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}

.blog-grid-modern {
  padding: 70px 0 90px;
  background: #f8fafc;
}

.blog-card-modern {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card-modern:hover .blog-card-img img {
  transform: scale(1.07);
}

.blog-card-content {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-content h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--brand-heading) !important;
  line-height: 1.45 !important;
  margin-bottom: 18px !important;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-modern-orange {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
  letter-spacing: 0.01em;
}
.btn-modern-orange:hover {
  background: #d4620a;
  color: #fff;
  transform: translateX(3px);
}
.btn-modern-orange::after {
  content: '→';
  font-size: 15px;
}

/* ──────────────────────────────────────────
   B. Blog Detail Page
   ────────────────────────────────────────── */
.blog-detail-modern {
  background: #f8fafc;
  padding: 70px 0 90px;
}

.blog-detail-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 0 0 48px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 22px 36px 18px;
  opacity: 0.8;
  transition: opacity 0.2s, gap 0.2s;
}
.back-to-blog:hover {
  opacity: 1;
  gap: 10px;
  color: var(--brand-blue-dark);
}

.blog-detail-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.services-details-desc {
  padding: 36px 48px 8px;
}

.blog-detail-title {
  font-size: clamp(24px, 3.5vw, 38px) !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  line-height: 1.25 !important;
  margin-bottom: 28px !important;
  padding-bottom: 24px !important;
  border-bottom: 2px solid #f1f5f9 !important;
}

.blog-detail-body {
  font-size: 17px;
  line-height: 1.85;
  color: #475569;
}
.blog-detail-body p {
  margin-bottom: 22px;
}
.blog-detail-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-heading);
  margin: 36px 0 14px;
}
.blog-detail-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-heading);
  margin: 28px 0 12px;
}
.blog-detail-body ul,
.blog-detail-body ol {
  padding-left: 22px;
  margin-bottom: 22px;
}
.blog-detail-body ul li,
.blog-detail-body ol li {
  margin-bottom: 8px;
}
.blog-detail-body img {
  border-radius: var(--radius-xl);
  max-width: 100%;
  margin: 18px 0;
}

/* ──────────────────────────────────────────
   C. Contact Page
   ────────────────────────────────────────── */
.contact-page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.contact-page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--brand-heading);
  margin-bottom: 12px;
}
.contact-page-hero p {
  font-size: 17px;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}

.appointment-form-area {
  background: #f8fafc;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 38px 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid #f1f5f9;
}
.contact-info-card .eyebrow-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 10px;
}
.contact-info-card h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
}
.contact-info-card > p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 32px !important;
}

.contact-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item-modern .icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(38,174,252,0.25);
}
.contact-item-modern .text-content span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 3px;
}
.contact-item-modern .text-content a {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-heading);
  text-decoration: none !important;
  transition: color 0.2s;
}
.contact-item-modern .text-content a:hover {
  color: var(--brand-blue-dark);
}

.social-row-modern {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.social-row-modern a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-row-modern a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.social-row-modern a.si-whatsapp  { background: rgba(74,193,88,0.1);   color: #4AC158; }
.social-row-modern a.si-viber     { background: rgba(124,69,141,0.1);  color: #7c458d; }
.social-row-modern a.si-telegram  { background: rgba(40,168,233,0.1);  color: #28A8E9; }
.social-row-modern a.si-facebook  { background: rgba(13,138,240,0.1);  color: #0D8AF0; }
.social-row-modern a.si-instagram { background: rgba(230,69,78,0.1);   color: #E6454E; }

.contact-form-modern {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 38px 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid #f1f5f9;
}
.contact-form-modern h3 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-bottom: 26px !important;
}
.contact-form-modern .form-group {
  margin-bottom: 18px;
}
.contact-form-modern label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}
.contact-form-modern .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-modern .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(38,174,252,0.12);
  background: #fff;
  outline: none;
}
.contact-form-modern textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-form-modern .btn-submit-contact {
  display: block;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  background: var(--brand-orange);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.contact-form-modern .btn-submit-contact:hover {
  background: #d4620a;
  transform: translateY(-1px);
}

.secondary-img-modern {
  border-radius: var(--radius-xl);
  width: 100%;
  display: block;
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
}

.map-container-modern {
  border-radius: var(--radius-2xl) !important;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container-modern iframe {
  border-radius: var(--radius-2xl) !important;
  display: block;
}

/* ══════════════════════════════════════════
   PART 5 — FOOTER PREMIUM
   ══════════════════════════════════════════ */

.footer-premium {
  background-color: #b9e5ff;
  font-family: var(--font-inter);
}

/* ── Main body ── */
.footer-main {
  padding: 72px 0 56px;
}

/* ── Logo ── */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo {
  width: 140px;
  height: auto;
}

/* ── Tagline ── */
.footer-tagline {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #1e3a5f !important;
  margin-bottom: 24px !important;
  max-width: 240px;
}

/* ── Social icons ── */
.footer-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.fsi {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  background: rgba(255,255,255,0.55);
  color: #1e3a5f;
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.fsi:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.fsi-wa:hover  { background: #25D366; color: #fff; border-color: #25D366; }
.fsi-ig:hover  { background: #E6454E; color: #fff; border-color: #E6454E; }
.fsi-fb:hover  { background: #0D8AF0; color: #fff; border-color: #0D8AF0; }
.fsi-tg:hover  { background: #28A8E9; color: #fff; border-color: #28A8E9; }
.fsi-vb:hover  { background: #7c458d; color: #fff; border-color: #7c458d; }

/* ── Column titles ── */
.footer-col-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #0a2540 !important;
  margin-bottom: 20px !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid rgba(0,0,0,0.12) !important;
}

/* ── Link lists ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e3a5f;
  text-decoration: none !important;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-links li a:hover {
  color: #0a6eba;
  padding-left: 4px;
}

/* ── Contact items ── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0a6eba;
}
.footer-contact-text {
  font-size: 13.5px;
  color: #1e3a5f;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none !important;
  transition: color 0.2s;
}
.footer-contact-text:hover {
  color: #0a6eba;
}

.footer-ovu {
  margin-top: 20px;
}

/* ── Bottom bar ── */
.footer-bottom {
  background: rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-inner p {
  font-size: 13px !important;
  color: #1e3a5f !important;
  margin: 0 !important;
  font-weight: 500 !important;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #1e3a5f;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #0a6eba;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
  color: #fff;
}

/* ── Old float class override (backward compat) ── */
.float {
  display: none !important;
}

/* ──────────────────────────────────────────
   12. Responsive Adjustments
   ────────────────────────────────────────── */
@media (max-width: 1399px) {
  .main-navbar .navbar .navbar-nav .nav-item {
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .main-navbar .navbar .navbar-nav .nav-item > a {
    font-size: 13.5px !important;
  }
}

@media (max-width: 1199px) {
  .topNumberBar {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .journey-steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .journey-steps-grid::before {
    display: none;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .home-about-section,
  .home-doctor-section,
  .northern-cyprus-section,
  .treatments-section,
  .success-rates-section {
    padding: 70px 0;
  }
  .ivf-journey-section {
    padding: 70px 0 80px;
  }
  .doctor-photo-wrap {
    margin-bottom: 32px;
  }
  .success-rates-grid {
    grid-template-columns: 1fr 1fr;
  }
  .success-image-wrap {
    min-height: 300px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  h1, .h1 { font-size: clamp(32px, 8vw, 48px); }
  h2, .h2 { font-size: clamp(24px, 6vw, 36px); }
  h3, .h3 { font-size: clamp(18px, 5vw, 26px); }

  .why-us-premium {
    padding: 28px 22px;
    margin-top: 28px;
  }
  .home-about-section {
    padding: 60px 0;
  }
  .doctor-section-name {
    margin-bottom: 36px !important;
  }
  .journey-step-card {
    padding: 28px 24px;
  }
  .journey-step-number {
    font-size: 64px;
  }

  /* Treatment page mobile */
  .treatment-page-hero {
    padding: 40px 0 36px;
  }
  .treatment-page-body {
    padding: 36px 0 60px;
  }
  .treatment-content-wrap,
  .treatment-content-wrap-wide {
    padding: 28px 22px !important;
    border-radius: var(--radius-xl) !important;
  }
  .treatment-process-section {
    padding: 24px 18px;
  }
  .process-steps-grid,
  .treatment-content-wrap .process-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ──────────────────────────────────────────
   30. TREATMENT PAGES — Modern Layouts
   ────────────────────────────────────────── */
.treatment-page-hero-modern {
  padding: 80px 0 60px;
  background: #f8fafc;
  overflow: hidden;
}

.treatment-hero-content {
  padding-right: 40px;
}

.treatment-hero-subtitle {
  font-size: 18px;
  color: var(--brand-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.treatment-stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.success-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.success-stat-badge i {
  color: var(--brand-orange);
  font-size: 18px;
}

.success-stat-badge span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand-heading);
}

.treatment-hero-btns {
  display: flex;
  gap: 16px;
}

.treatment-hero-image-wrap {
  position: relative;
  z-index: 1;
  padding: 16px 16px 0 0;
}

.treatment-hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, rgba(38,174,252,0.12) 0%, rgba(239,114,12,0.08) 100%);
  border-radius: var(--radius-2xl);
  z-index: 0;
}

.treatment-hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 52px;
  height: 52px;
  background: var(--brand-orange);
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
}

.treatment-hero-image {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}

/* ══════════════════════════════════════════════
   Section Titles INSIDE treatment content cards
   ══════════════════════════════════════════════ */
.treatment-content-wrap-wide .section-title,
.treatment-content-wrap .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.treatment-content-wrap-wide .section-title h2,
.treatment-content-wrap .section-title h2 {
  font-size: clamp(22px, 2.6vw, 34px) !important;
  font-weight: 800 !important;
  color: var(--brand-heading) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.22 !important;
}

/* Kimlere Uygulanır — Target Audience */
.treatment-audience-section {
  padding: 0;
  background: transparent;
}

.target-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.target-profile-card {
  padding: 28px 24px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #eef2f7;
  transition: all 0.28s ease;
  height: 100%;
}

.target-profile-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(22,100,180,0.10);
  transform: translateY(-4px);
  border-color: rgba(38,174,252,0.18);
}

.target-profile-icon {
  width: 44px;
  height: 44px;
  background: rgba(239,114,12,0.10);
  color: var(--brand-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.target-profile-card h4 {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  color: var(--brand-heading) !important;
  line-height: 1.3 !important;
}

.target-profile-card p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #64748b !important;
  margin-bottom: 0 !important;
}

/* Neden Biz — Benefits Section */
.treatment-benefits-section {
  padding: 0;
  background: transparent;
}

.benefits-list-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-top: 8px;
}

.benefit-item-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #eef2f7;
  transition: background 0.2s;
}

.benefit-item-modern:hover {
  background: #eef6ff;
  border-color: rgba(38,174,252,0.2);
}

.benefit-check-modern {
  width: 22px;
  height: 22px;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.benefit-item-modern span {
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: var(--brand-heading) !important;
  line-height: 1.4 !important;
}

/* About page modern sections */
.about-hero-modern .treatment-hero-content h1 {
  max-width: 720px;
}

.about-hero-centered .treatment-hero-content {
  margin: 0 auto;
  max-width: 860px;
}

.about-hero-centered .treatment-hero-content h1 {
  margin-left: auto;
  margin-right: auto;
}

.about-banner-single {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e9eef5;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}

.about-banner-single img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-stat-card {
  background: #ffffff;
  border: 1px solid #e9eef5;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}

.about-stat-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--brand-blue-dark);
}

.about-stat-card span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
  font-weight: 600;
}

.about-approach-list .info-list-modern li {
  margin-bottom: 10px;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.about-approach-grid li {
  margin-bottom: 0 !important;
}

.about-values-grid,
.about-cyprus-grid {
  display: grid;
  gap: 16px;
}

.about-values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-cyprus-grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-value-card,
.about-cyprus-card {
  background: #f8fafc;
  border: 1px solid #eaf0f7;
  border-radius: 14px;
  padding: 20px;
}

.about-value-card h4,
.about-cyprus-card h4 {
  font-size: 16px !important;
  margin-bottom: 8px !important;
  color: var(--brand-heading) !important;
}

.about-value-card p,
.about-cyprus-card p {
  font-size: 14.5px !important;
  margin-bottom: 0 !important;
  color: #64748b !important;
  line-height: 1.65 !important;
}

/* Enhanced Process Timeline */
.timeline-modern {
  position: relative;
  padding-left: 30px;
  margin-top: 40px;
}

.timeline-modern::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.timeline-step {
  position: relative;
  padding-bottom: 40px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  z-index: 1;
}

.timeline-content {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
}

/* ──────────────────────────────────────────
   Premium Button System
   ────────────────────────────────────────── */
.btn-prem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-inter) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-prem:hover {
  transform: translateY(-2px);
}

.btn-prem-orange {
  background: var(--brand-orange);
  color: #ffffff !important;
  border-color: var(--brand-orange);
}

.btn-prem-orange:hover {
  background: #d4620a;
  border-color: #d4620a;
  color: #ffffff !important;
}

.btn-prem-outline {
  background: #ffffff;
  color: var(--brand-orange) !important;
  border-color: var(--brand-orange);
}

.btn-prem-outline:hover {
  background: var(--brand-orange);
  color: #ffffff !important;
}

.btn-prem-white {
  background: #ffffff;
  color: var(--brand-blue-dark) !important;
  border-color: #ffffff;
}

.btn-prem-white:hover {
  background: var(--brand-heading);
  color: #ffffff !important;
  border-color: var(--brand-heading);
}

.btn-prem-outline-white {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.6);
}

.btn-prem-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff !important;
}

/* CTA Banner — button overrides for light background */
.treatment-cta-banner .btn-prem-white {
  background: var(--brand-blue);
  color: #ffffff !important;
  border-color: var(--brand-blue);
}
.treatment-cta-banner .btn-prem-white:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}
.treatment-cta-banner .btn-prem-outline-white {
  background: transparent;
  color: var(--brand-blue-dark) !important;
  border-color: var(--brand-blue-dark);
}
.treatment-cta-banner .btn-prem-outline-white:hover {
  background: var(--brand-blue-dark);
  color: #ffffff !important;
}

/* CTA Banner */
.treatment-cta-banner {
  padding: 52px 40px;
  background: #f8fafc;
  border: 1px solid #e8eef5;
  border-top: 3px solid var(--brand-blue);
  color: var(--brand-heading);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 60px;
}

.treatment-cta-banner h2 {
  color: var(--brand-heading) !important;
  font-size: clamp(20px, 2.4vw, 28px) !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}

.treatment-cta-banner p {
  color: #64748b;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .about-stats-grid,
  .about-values-grid,
  .about-cyprus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .target-audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-list-modern {
    grid-template-columns: 1fr;
  }
  .treatment-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .treatment-hero-btns, .treatment-stats-row {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-approach-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid,
  .about-values-grid,
  .about-cyprus-grid {
    grid-template-columns: 1fr;
  }

  .target-audience-grid {
    grid-template-columns: 1fr;
  }
  .success-stat-badge {
    width: 100%;
    justify-content: center;
  }
  .treatment-hero-btns {
    flex-direction: column;
  }
  .success-rates-grid {
    grid-template-columns: 1fr;
  }
  .treatment-subnav {
    gap: 6px;
  }
  .treatment-subnav-item {
    font-size: 12.5px;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .process-steps-grid,
  .treatment-content-wrap .process-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .treatment-content-wrap .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .treatment-content-wrap-wide {
    padding: 40px 36px !important;
  }
}

/* Footer responsive */
@media (max-width: 991px) {
  .footer-main {
    padding: 56px 0 44px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom-links {
    gap: 14px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Blog & Contact responsive */
@media (max-width: 767px) {
  .blog-grid-modern {
    padding: 48px 0 64px;
  }
  .blog-card-content {
    padding: 18px 20px 22px;
  }
  .services-details-desc {
    padding: 24px 24px 8px;
  }
  .contact-info-card,
  .contact-form-modern {
    padding: 28px 24px;
  }
  .blog-page-hero,
  .contact-page-hero {
    padding: 44px 0 36px;
  }
}
