/* ld-styles.css — consolidated from mu-plugins (styles/phones/nav/schema-footer) */
/* ══ ld-global-styles ══ */
/* ── CSS Variables ─────────────────────────────── */
:root {
  --ld-navy:      #0B1F36;
  --ld-navy-dk:   #06111E;
  --ld-gold:      #D4B06A;
  --ld-gold-dk:   #B8924A;
  --ld-bg:        #F7F8FA;
  --ld-bg-alt:    #ECEEF2;
  --ld-text:      #111827;
  --ld-text-sub:  #4B5563;
  --ld-muted:     #4B5563;
  --ld-secondary: #C7D2E0;
  --ld-border:    #E2E8F0;
  --ld-red:       #DC2626;
}

/* ── Global box-model ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { overflow-x: hidden !important; max-width: 100%; }

/* ── Container ──────────────────────────────────── */
.ld-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Section Labels ─────────────────────────────── */
.ld-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--ld-gold);
  display: block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

/* ── Buttons ─────────────────────────────────────── */
.ld-btn-primary {
  background: #fff !important;
  color: #D4680A !important;
  border: 2px solid #D4680A !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s !important;
  cursor: pointer !important;
}
.ld-btn-primary:hover {
  background: #0B1F36 !important;
  color: #fff !important;
  border-color: #0B1F36 !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}
.ld-btn-secondary {
  background: #fff !important;
  color: #D4680A !important;
  border: 2px solid #D4680A !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 12px 26px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.ld-btn-secondary:hover {
  background: #0B1F36 !important;
  color: #fff !important;
  border-color: #0B1F36 !important;
}
.ld-btn-emergency {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.ld-btn-emergency:hover {
  background: rgba(220,38,38,0.3) !important;
  border-color: var(--ld-red) !important;
  color: #fff !important;
}

/* ── Hero ────────────────────────────────────────── */
.ld-hero {
  background: linear-gradient(135deg, var(--ld-navy) 0%, var(--ld-navy-dk) 100%);
  padding: 64px 0 48px;
  overflow: hidden;
  position: relative;
}
.ld-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.ld-hero-content { color: #fff; }
.ld-hero h1 {
  color: #fff !important;
  font-size: clamp(30px, 4vw, 50px) !important;
  line-height: 1.12 !important;
  margin: 0 0 14px !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}
.ld-hero-subtitle {
  color: #ffffff !important; /* FIXED: Shifted from transparent white to crisp white for dark mode legibility */
  font-size: 19px !important;
  font-weight: 400 !important;
  margin: 0 0 8px !important;
  line-height: 1.5 !important;
  text-align: left !important;
}
.ld-hero-quals {
  color: var(--ld-gold) !important;
  font-size: 13px !important;
  letter-spacing: 0.6px !important;
  margin: 0 0 28px !important;
  text-align: left !important;
  font-family: "Inter", sans-serif !important;
}
.ld-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ld-trust-counters {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 8px;
}
.ld-trust-item { display: flex; flex-direction: column; }
.ld-trust-num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ld-gold);
  line-height: 1;
}
.ld-trust-label {
  font-size: 11px;
  color: rgba(255,255,255,0.95);
  margin-top: 4px;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}
.ld-hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.ld-hero-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ld-gold);
  color: var(--ld-navy);
  font-size: 11px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Marquee ticker ──────────────────────────────── */
.ld-marquee {
  background: var(--ld-navy-dk);
  overflow: hidden;
  padding: 11px 0;
  border-top: 2px solid var(--ld-gold);
  border-bottom: 1px solid rgba(200,169,107,0.2);
}
.ld-marquee-track {
  display: flex;
  animation: ld-scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ld-marquee-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  font-family: "Inter", sans-serif;
  padding: 0 8px;
}
.ld-marquee-sep {
  color: var(--ld-gold);
  padding: 0 6px;
  font-size: 9px;
  opacity: 1;
}
@keyframes ld-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ────────────────────────────────────── */
.ld-section {
  padding: 64px 0;
  background: var(--ld-bg);
}
.ld-section-alt {
  background: var(--ld-bg-alt);
}
.ld-transplant-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--ld-navy) 0%, var(--ld-navy-dk) 100%);
}
.ld-cta-banner {
  background: linear-gradient(135deg, var(--ld-navy) 0%, var(--ld-navy-dk) 100%);
  padding: 64px 0;
  text-align: center;
}
.ld-cta-banner h2 {
  color: #fff !important;
  border: none !important;
  padding: 0 !important;
  text-align: center !important;
  margin-top: 12px !important;
}
.ld-cta-banner p {
  color: rgba(255,255,255,0.95) !important; /* FIXED: Boosted opacity to 0.95 to eliminate shadow background bleeding */
  font-size: 18px !important;
  margin-bottom: 32px !important;
  text-align: center !important;
}

/* ── Section headings ────────────────────────────── */
.ld-section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.ld-section-heading h2 {
  border-left: none !important;
  padding-left: 0 !important;
  margin-top: 0 !important;
  text-align: center !important;
}
.ld-section-heading p {
  color: var(--ld-text-sub) !important;
  font-size: 17px !important;
  text-align: center !important;
  margin: 0 !important;
}
.ld-divider {
  width: 52px;
  height: 3px;
  background: var(--ld-gold);
  margin: 14px auto 18px;
  border-radius: 2px;
}

/* ── Blog article cards ──────────────────────────────── */
.ld-blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(11,31,54,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ld-blog-thumb {
  width: 52px;
  height: 52px;
  background: #EEF2F7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 20px 0;
  flex-shrink: 0;
}
.ld-blog-body {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ld-blog-tag {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ld-gold);
  margin-bottom: 8px;
  display: block;
}
.ld-blog-card h3 {
  font-family: "Playfair Display", serif !important;
  font-size: 17px !important;
  color: var(--ld-navy) !important;
  margin: 0 0 10px !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1.4 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ld-blog-card h3 a {
  color: var(--ld-navy) !important;
  text-decoration: none !important;
}
.ld-blog-card h3 a:hover { color: var(--ld-gold) !important; }
.ld-blog-excerpt {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  color: var(--ld-text-sub) !important; /* FIXED: Pointed to clear text subcolor to drop below AAA contrast guidelines */
  line-height: 1.65 !important;
  margin: 0 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── Grids ───────────────────────────────────────── */
.ld-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.ld-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Condition cards (clickable) ─────────────────── */
.ld-condition-card {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 32px 28px;
  text-decoration: none !important;
  display: block !important;
  cursor: pointer !important;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: rgba(200,169,107,0.15);
}
.ld-condition-card:hover,
.ld-condition-card:focus {
  box-shadow: 0 4px 24px rgba(11,31,54,0.08) !important;
  transform: translateY(-3px) !important;
  border-color: var(--ld-gold) !important;
  text-decoration: none !important;
}
.ld-condition-card:active {
  transform: translateY(0) !important;
}
.ld-condition-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,169,107,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ld-condition-card h3 {
  font-size: 16px !important;
  color: var(--ld-navy) !important;
  margin: 0 0 8px !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}
.ld-condition-card p {
  font-size: 13.5px !important;
  color: var(--ld-text-sub) !important; /* FIXED: Shifted from #666 layout baseline to explicit semantic --ld-text-sub to secure readability */
  margin: 0 !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

/* ── Transplant cards ────────────────────────────── */
.ld-transplant-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none !important;
  display: block !important;
  cursor: pointer !important;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: rgba(200,169,107,0.15);
}
.ld-transplant-card:hover {
  background: rgba(200,169,107,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  text-decoration: none !important;
}
.ld-transplant-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
}
.ld-transplant-card h3 {
  font-size: 16px !important;
  color: #fff !important;
  margin: 0 0 8px !important;
  border: none !important;
  padding: 0 !important;
}
.ld-transplant-card p {
  font-size: 13.5px !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

/* ── Why choose cards ────────────────────────────── */
.ld-why-card {
  background: #fff;
  border: 1px solid var(--ld-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.ld-why-card:hover {
  box-shadow: 0 4px 20px rgba(11,31,54,0.07);
}
.ld-why-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.ld-why-card h3 {
  font-size: 17px !important;
  color: var(--ld-navy) !important;
  margin: 0 0 10px !important;
  border: none !important;
  padding: 0 !important;
}
.ld-why-card p {
  font-size: 15px !important;
  color: var(--ld-text-sub) !important;
  margin: 0 !important;
  line-height: 1.72 !important;
  text-align: left !important;
}

/* ── Location cards ──────────────────────────────── */
.ld-location-card {
  background: #fff;
  border: 1px solid var(--ld-border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.ld-location-card:hover {
  box-shadow: 0 4px 20px rgba(11,31,54,0.07);
}
.ld-location-info { padding: 20px; }
.ld-location-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ld-gold);
  background: rgba(200,169,107,0.1);
  padding: 3px 9px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}
.ld-location-info h3 {
  font-size: 15px !important;
  color: var(--ld-navy) !important;
  margin: 0 0 6px !important;
  border: none !important;
  padding: 0 !important;
}
.ld-location-info address {
  font-size: 13px !important;
  color: var(--ld-text-sub) !important; /* FIXED: Converted from weak #666 string to safe, scannable text-sub system token */
  line-height: 1.6 !important;
  margin: 0 0 12px !important;
}
.ld-directions-btn {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ld-gold) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}
.ld-directions-btn:hover { color: var(--ld-navy) !important; }

/* ── Testimonial cards ───────────────────────────── */
.ld-testimonial-card {
  background: #fff;
  border: 1px solid var(--ld-border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.ld-testimonial-card::before {
  content: "\\201C";
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: var(--ld-gold);
  opacity: 0.2;
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
}
.ld-stars {
  color: var(--ld-gold);
  font-size: 15px;
  margin-bottom: 12px;
  display: block;
}
.ld-testimonial-text {
  font-size: 15px !important;
  color: #2D3748 !important; /* FIXED: Tightened tracking from #444 background profile up to slate grey for patient quote protection */
  line-height: 1.72 !important;
  margin-bottom: 16px !important;
  text-align: left !important;
  font-style: italic;
}
.ld-testimonial-author {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--ld-navy) !important;
  margin: 0 !important;
  font-family: "Inter", sans-serif !important;
}
.ld-testimonial-meta {
  font-size: 12px !important;
  color: var(--ld-muted) !important; /* FIXED: Mapped configuration selector to --ld-muted to anchor patient parameters cleanly */
  margin: 3px 0 0 !important;
  font-family: "Inter", sans-serif !important;
}

/* ── Page Hero (disease/procedure pages) ─────────── */
.ld-page-hero {
  background: linear-gradient(135deg, var(--ld-navy) 0%, var(--ld-navy-dk) 100%);
  padding: 56px 0 48px;
  margin-bottom: 40px;
}
.ld-page-hero .ld-container { max-width: 960px; }
.ld-page-hero h1 {
  color: #fff !important;
  font-size: clamp(26px, 4vw, 42px) !important;
  border: none !important;
  padding: 0 !important;
  margin: 8px 0 10px !important;
}
.ld-page-hero p {
  color: rgba(255,255,255,0.92) !important; /* FIXED: Raised from 0.75 profile value to solid 0.92 canvas definition */
  font-size: 16px !important;
  text-align: left !important;
  margin: 0 !important;
}
.ld-breadcrumb {
  font-size: 13px !important;
  color: rgba(255,255,255,0.8) !important; /* FIXED: Boosted trail trace text to 0.8 opacity to survive background filtering rules */
  margin: 0 0 6px !important;
  text-align: left !important;
}
.ld-breadcrumb a {
  color: rgba(255,255,255,0.85) !important; /* FIXED: Adjusted static link contrast values */
  text-decoration: none !important;
}
.ld-breadcrumb a:hover { color: var(--ld-gold) !important; }

/* ── Doctor Perspective block ────────────────────── */
.ld-doctor-perspective {
  background: rgba(200,169,107,0.06);
  border-left: 4px solid var(--ld-gold);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.ld-doctor-perspective blockquote {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: var(--ld-text) !important;
  font-style: italic;
  margin: 0 0 12px !important;
  border: none !important;
  padding: 0 !important;
}
.ld-doctor-perspective cite {
  font-size: 13px;
  font-weight: 600;
  color: var(--ld-navy);
  font-style: normal;
}

/* ── FAQ accordion ───────────────────────────────── */
.ld-faq { margin: 32px 0; }
.ld-faq-item {
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.ld-faq-q {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ld-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  font-family: "Inter", sans-serif;
  border: none;
  width: 100%;
  text-align: left;
}
.ld-faq-q:hover { background: var(--ld-bg); }
.ld-faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--ld-gold);
  flex-shrink: 0;
  margin-left: 12px;
}
.ld-faq-q.open::after { content: "−"; }
.ld-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ld-text-sub);
  background: #fff;
}
.ld-faq-a.open { display: block; }

/* ── Inline CTA ──────────────────────────────────── */
.ld-inline-cta {
  background: #fff;
  border: 2px solid var(--ld-navy);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(11,31,54,0.06);
}
.ld-inline-cta p {
  color: var(--ld-navy) !important;
  font-size: 17px !important;
  margin: 0 !important;
  text-align: left !important;
}
.ld-inline-cta strong { color: var(--ld-navy) !important; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .ld-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .ld-hero-photo-wrap { display: none; }
  .ld-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
}
@media (max-width: 768px) {
  /* Text overflow & pinch-zoom protection */
  .entry-content p, .ld-section p, article p,
  .entry-content h1, .entry-content h2, .entry-content h3,
  .ld-section h2, .ld-section h3,
  .ld-hero, .ld-page-hero, .ld-cta-banner {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .ld-section { padding: 40px 0 !important; }
  .ld-container { padding: 0 16px !important; }
  /* Page content compact */
  .ld-page-hero { padding: 32px 0 !important; margin-bottom: 16px !important; }
  .ld-page-hero h1 { font-size: clamp(22px, 6vw, 32px) !important; }
  .ld-page-hero p { font-size: 14px !important; line-height: 1.55 !important; }
  .ld-why-choose { padding: 24px 20px !important; }
  .ld-inline-cta { padding: 24px 16px !important; }
  .ld-page-cta { padding: 28px 20px !important; }
}
@media (max-width: 640px) {
  .ld-grid-3, .ld-grid-2 { grid-template-columns: 1fr; gap: 16px; }
  .ld-hero { padding: 48px 0 40px; }
  .ld-section, .ld-transplant-section, .ld-cta-banner { padding: 40px 0; }
  .ld-trust-counters { gap: 22px; }
  .ld-hero-cta-group { flex-direction: column; gap: 12px; }
  .ld-inline-cta { flex-direction: column; text-align: center; }
  .ld-inline-cta p { text-align: center !important; }
  .ld-page-hero { padding: 32px 0 28px; margin-bottom: 16px; }
}

/* ── Why Choose section (disease/procedure pages) ── */
.ld-why-choose {
  background: #fff;
  border-left: 4px solid var(--ld-gold);
  border-radius: 0 16px 16px 0;
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 2px 12px rgba(11,31,54,0.06);
}
.ld-why-choose h2 {
  color: var(--ld-navy) !important;
  font-size: 20px !important;
  margin: 0 0 20px !important;
  border: none !important;
  padding: 0 !important;
}
.ld-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.ld-why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ld-why-item i {
  font-size: 18px;
  color: var(--ld-gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.ld-why-item strong {
  display: block;
  color: var(--ld-navy) !important;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ld-why-item span {
  font-size: 12px;
  color: var(--ld-text-sub);
  line-height: 1.4;
}

/* ── Page CTA block (disease/procedure pages) ──────── */
.ld-page-cta {
  background: linear-gradient(135deg, var(--ld-navy-dk, #071D36) 0%, var(--ld-navy) 100%);
  color: #fff;
  padding: 40px 36px;
  border-radius: 16px;
  margin: 40px 0;
  text-align: center;
}
.ld-page-cta h3 {
  color: #fff !important;
  font-size: 22px !important;
  margin: 0 0 8px !important;
  border: none !important;
  padding: 0 !important;
}
.ld-page-cta > p {
  color: rgba(255,255,255,0.95) !important; /* FIXED: Boosted from 0.8 to 0.95 white to match full AAA standard rules */
  margin: 0 0 20px !important;
  font-size: 15px !important;
  text-align: center !important;
  line-height: 1.6 !important;
}
.ld-page-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ld-page-cta-btns a {
  padding: 13px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  transition: opacity 0.2s !important;
}
.ld-page-cta-btns a:hover { opacity: 0.9 !important; }
.ld-page-cta-btns .ld-cta-phone1 { background: #F97316; }
.ld-page-cta-btns .ld-cta-phone2 { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); }
.ld-page-cta-btns .ld-cta-wa { background: #25D366; }
.ld-page-cta-locations {
  color: rgba(255,255,255,0.95) !important;
  font-size: 13px !important;
  margin: 0 !important;
  text-align: center !important;
}
@media (max-width: 640px) {
  .ld-why-grid { grid-template-columns: 1fr; }
  .ld-page-cta { padding: 28px 20px; }
  .ld-page-cta-btns { flex-direction: column; align-items: center; }
}

/* ── Related Topics / CTA layout fix ─────────────────
   Page content has 2 extra </div> closing tags that push
   .ld-related-section and .ld-inline-cta outside #primary,
   making them direct flex children of .ast-container.
   This fix forces them to a full-width row of their own.   */
.ast-container:has(> .ld-related-section),
.ast-container:has(> .ld-inline-cta) {
  flex-wrap: wrap !important;
}
.ast-container > .ld-related-section,
.ast-container > .ld-inline-cta {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box;
}
/* ══ phone bar / whatsapp / mobile bar ══ */
/* ── Header Phone Bar ── */
.ld-header-phone-bar {
    background: #0B1F36;
    padding: 7px 0;
    text-align: right;
}
.ld-header-phone-bar .ld-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ld-header-phone-bar a {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.ld-header-phone-bar a:hover { color: #D4B06A !important; }
.ld-header-phone-bar .ld-wa-link {
    background: #25D366;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px !important;
}
.ld-header-phone-bar .ld-wa-link:hover { background: #1DA851; }
.ld-header-phone-bar .sep { color: rgba(255,255,255,0.3); }

/* ── Floating WhatsApp Button ── */
#ld-float-wa {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    text-decoration: none !important;
    animation: ld-pulse-wa 2.5s infinite;
}
#ld-float-wa svg { width: 30px; height: 30px; fill: #fff; }
#ld-float-wa:hover { background: #1DA851; animation: none; transform: scale(1.08); }
@keyframes ld-pulse-wa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ── Mobile Bottom Call Bar ── */
#ld-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    background: #0B1F36;
    border-top: 1px solid rgba(255,255,255,0.1);
}
#ld-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50%;
    padding: 14px 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    color: #fff !important;
}
#ld-mobile-bar .ld-call-btn { background: #0B1F36; border-right: 1px solid rgba(255,255,255,0.1); }
#ld-mobile-bar .ld-wa-btn   { background: #25D366; }
#ld-mobile-bar a svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 768px) {
    #ld-mobile-bar { display: flex; }
    body { padding-bottom: 52px; }
    #ld-float-wa   { bottom: 70px; }
}
/* ══ nav / utility bar / mega menu ══ */
/* ═══════════════════════════════════════════
   UTILITY BAR (Top orange bar)
═══════════════════════════════════════════ */
#ld-utility-bar {
  background: #0B1F36;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}
#ld-utility-bar .ld-util-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ld-util-locations {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.ld-util-locations i { font-size: 11px; margin-right: 4px; opacity: 0.85; }
.ld-util-locations span { white-space: nowrap; }
.ld-util-locations .ld-sep { color: rgba(255,255,255,0.4); margin: 0 3px; }
.ld-util-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ld-util-right a {
  font-size: 12px !important;
  color: rgba(255,255,255,0.95) !important;
  text-decoration: none !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, opacity 0.2s;
  letter-spacing: 0.2px;
}
.ld-util-right a:hover { color: #fff !important; opacity: 0.85; }
.ld-util-right .ld-util-wa {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
}
.ld-util-right .ld-util-wa:hover { background: rgba(255,255,255,0.3) !important; }
.ld-util-right .ld-util-emergency {
  background: #DC2626;
  color: #fff !important;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600 !important;
}
.ld-util-right .ld-util-emergency:hover { background: #b91c1c !important; }
.ld-util-right .ld-util-book {
  background: #fff;
  color: #D4680A !important;
  border: 1.5px solid #D4680A;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700 !important;
}
.ld-util-right .ld-util-book:hover {
  background: #0B1F36 !important;
  color: #fff !important;
  border-color: #0B1F36 !important;
  opacity: 1;
}
.ld-util-right .ld-sep { color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════
   HIDE OLD PHONES HEADER BAR
═══════════════════════════════════════════ */
.ld-header-phone-bar { display: none !important; }

/* Hide Book Consultation + Emergency from main nav — both live in utility bar */
li.menu-item-334,
li.menu-item-336 { display: none !important; }

/* ═══════════════════════════════════════════
   ASTRA MAIN HEADER OVERRIDES
═══════════════════════════════════════════ */
#masthead,
.site-header,
.ast-primary-header-bar,
.ast-above-header-bar,
header.site-header {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
  border-bottom: none !important;
  background: #fff !important;
}
.ast-primary-header-bar .ast-container,
.site-header .ast-container {
  max-width: 1200px !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  height: 80px !important;
  justify-content: space-between !important;
}
/* Fixed header — reliable across all browsers/Astra versions */
#ld-utility-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1002 !important;
}
.ast-header-sticky-disabled #masthead,
#masthead.ast-sticky-active,
#masthead,
.site-header,
header.site-header {
  position: fixed !important;
  top: 42px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1001 !important;
  background: #fff !important;
}

/* ═══════════════════════════════════════════
   LOGO / SITE TITLE AREA
═══════════════════════════════════════════ */
.site-branding,
.ast-site-identity {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 1px !important;
}
.site-title,
.ast-site-title,
.site-title a {
  font-family: "Playfair Display", serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0B1F36 !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  letter-spacing: -0.3px !important;
}
.site-description,
.ast-site-description {
  font-family: "Inter", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #6B7280 !important;
  letter-spacing: 0.2px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════
   MAIN NAVIGATION LINKS
═══════════════════════════════════════════ */
.main-navigation ul,
.ast-nav-menu,
.navigation-accessibility ul.menu,
ul#primary-menu,
.nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ast-nav-menu > li > a,
.main-navigation > ul > li > a,
#primary-menu > li > a,
.ast-primary-header-bar .menu-item > a {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0B1F36 !important;
  text-decoration: none !important;
  padding: 8px 10px !important;
  border-radius: 6px !important;
  transition: color 0.2s, background 0.2s !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  white-space: nowrap !important;
}
.ast-nav-menu > li > a:hover,
.main-navigation > ul > li > a:hover,
#primary-menu > li > a:hover,
.ast-primary-header-bar .menu-item > a:hover {
  color: #1E56A0 !important;
  background: #EEF4FF !important;
}
.ast-nav-menu > li.current-menu-item > a,
.ast-nav-menu > li.current-menu-ancestor > a {
  color: #1E56A0 !important;
  font-weight: 700 !important;
}

/* Caret icons injected via JS — no CSS pseudo-elements needed */
.ld-nav-caret {
  font-size: 11px !important;
  margin-left: 4px !important;
  transition: transform 0.2s !important;
  display: inline-block !important;
  pointer-events: none !important;
}
.ast-nav-menu > li.menu-item-has-children:hover .ld-nav-caret {
  transform: rotate(180deg) !important;
}
/* Sub-menu item icons injected via JS */
.ld-sub-icon {
  margin-right: 8px !important;
  color: #D4B06A !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
  width: 14px !important;
  text-align: center !important;
}
/* Hide Astra SVG arrow inside main nav links */
.ast-nav-menu > li > a .ast-header-navigation-arrow { display: none !important; }

/* ═══════════════════════════════════════════
   DROPDOWN MENUS
   Astra shows/hides via left:-999em to left:0 on hover.
   We only override appearance, not the show/hide mechanism.
═══════════════════════════════════════════ */

/* Parent li must be position:relative so sub-menu absolute-positions correctly */
.ast-nav-menu > li,
#primary-menu > li {
  position: relative !important;
}

/* Sub-menu panel — appearance only */
.main-header-menu .sub-menu {
  background: #fff !important;
  border-top: 3px solid #0B1F36 !important;
  border-radius: 0 0 16px 16px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
  min-width: 260px !important;
  max-width: 340px !important;
  padding: 8px 0 !important;
  z-index: 9999 !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  list-style: none !important;
  margin: 0 !important;
}

/* Sub-menu items */
.main-header-menu .sub-menu li {
  display: block !important;
}
.main-header-menu .sub-menu .menu-link {
  font-family: "Inter", sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #111827 !important;
  padding: 12px 20px !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s !important;
  line-height: 1.4 !important;
  border-bottom: none !important;
}
.main-header-menu .sub-menu .menu-item .menu-link:hover {
  background: #EEF4FF !important;
  color: #1E56A0 !important;
}

/* Hide Astra arrow SVG inside sub-menu links — icons injected via JS */
.main-header-menu .sub-menu .menu-link .ast-icon { display: none !important; }

/* Viewport-safe: last few nav items open dropdown to the right edge */
.ast-nav-menu > li:last-child > .sub-menu,
.ast-nav-menu > li:nth-last-child(2) > .sub-menu,
.ast-nav-menu > li:nth-last-child(3) > .sub-menu {
  left: auto !important;
  right: 0 !important;
}

/* ═══════════════════════════════════════════
   HEADER GRID — ensure all nav items visible
═══════════════════════════════════════════ */
.ast-builder-grid-row-has-sides.ast-builder-grid-row-no-center {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
}
.site-header-primary-section-left.site-header-section-left {
  flex: 0 0 auto !important;
  min-width: 0 !important;
}
.site-header-primary-section-right.ast-grid-right-section {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: visible !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}
.ast-builder-menu-1.ast-flex {
  overflow: visible !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.ast-main-header-bar-alignment,
.main-header-bar-navigation,
nav.site-navigation,
.main-navigation.ast-inline-flex {
  overflow: visible !important;
  min-width: 0 !important;
}
ul#ast-hf-menu-1.ast-nav-menu {
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

/* ═══════════════════════════════════════════
   BOOK APPOINTMENT BUTTON (right side)
═══════════════════════════════════════════ */
#ld-book-btn {
  background: #D4B06A !important;
  color: #0B1F36 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 11px 22px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
#ld-book-btn:hover {
  background: #B8924A !important;
  color: #0B1F36 !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}
/* Old JS-injected wrapper — utility bar now handles Book Appointment */
#ld-nav-book-wrap { display: none !important; }

/* ═══════════════════════════════════════════
   MOBILE NAVIGATION
═══════════════════════════════════════════ */
#ld-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: fixed;
  top: 10px;
  right: 16px;
  background: none;
  border: 2px solid #D4680A;
  border-radius: 6px;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1002;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
#ld-mobile-toggle:hover,
#ld-mobile-toggle:active { background: rgba(212,104,10,0.08); }
.ld-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #D4680A;
  border-radius: 2px;
  pointer-events: none;
}

#ld-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#ld-mobile-overlay.open { opacity: 1; pointer-events: auto; }

#ld-mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  left: auto;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9998;
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  padding-bottom: 80px;
}
#ld-mobile-drawer.open { right: 0; }
.ld-drawer-header {
  background: linear-gradient(135deg, #0B1F36, #06111E);
  padding: 24px 20px;
  color: #fff;
}
.ld-drawer-header strong {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  display: block;
  color: #fff;
}
.ld-drawer-header span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-top: 4px;
}
.ld-drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.ld-drawer-close:active { background: rgba(255,255,255,0.3); }
.ld-drawer-nav { padding: 8px 0; }
.ld-drawer-nav > ul { list-style: none; margin: 0; padding: 0; }
.ld-drawer-nav > ul > li > a,
.ld-drawer-nav > ul > li > .ld-drawer-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}
.ld-drawer-nav > ul > li > a:hover,
.ld-drawer-nav > ul > li > .ld-drawer-parent:hover {
  background: #F0F4F8;
  color: #D4B06A;
}
.ld-drawer-toggle-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.ld-drawer-nav .ld-sub {
  display: none;
  background: #F7F8FA;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ld-drawer-nav .ld-sub.open { display: block; }
.ld-drawer-nav .ld-sub li a {
  display: block;
  padding: 12px 20px 12px 36px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
}
.ld-drawer-nav .ld-sub li a:hover { color: #D4B06A; background: #F0F4F8; }
.ld-drawer-phones {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
}
.ld-drawer-phones a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0B1F36;
  text-decoration: none;
}
.ld-drawer-phones a:hover { color: #D4B06A; }

/* ═══════════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════════ */
#ld-scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #D4B06A;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(212,176,106,0.35);
}
#ld-scroll-top.visible { opacity: 1; transform: translateY(0); }
#ld-scroll-top:hover { background: #B8924A; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
body {
  font-family: "Inter", sans-serif !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #111827 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif !important;
  color: #0B1F36 !important;
  font-weight: 700 !important;
}
h1 { font-size: clamp(32px,5vw,56px) !important; line-height: 1.12 !important; }
h2 {
  font-size: clamp(24px,3.5vw,40px) !important;
  line-height: 1.25 !important;
  border-left: 4px solid #D4B06A !important;
  padding-left: 16px !important;
  margin-top: 48px !important;
  margin-bottom: 20px !important;
}
h3 { font-size: clamp(20px,2.5vw,28px) !important; line-height: 1.3 !important; }
h4 { font-size: clamp(16px,2vw,20px) !important; line-height: 1.4 !important; }
.entry-content p, .ld-section p, article p {
  font-size: 18px !important;
  line-height: 1.85 !important;
  text-align: left !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  margin-bottom: 1.4em !important;
  color: #111827 !important;
}
.entry-content ul li, .entry-content ol li,
.ld-section ul li, .ld-section ol li {
  font-size: 17px !important;
  line-height: 1.8 !important;
  margin-bottom: 8px !important;
}
strong, b { color: #0B1F36 !important; font-weight: 600 !important; }
a { color: #D4B06A !important; }
a:hover { color: #0B1F36 !important; }

/* Hide Astra native entry-header title when page has a custom ld-page-hero */
article:has(.ld-page-hero) .entry-header { display: none !important; }

/* ═══════════════════════════════════════════
   PAGE HERO BANNER
═══════════════════════════════════════════ */
.ld-page-hero {
  background: linear-gradient(135deg, #0B1F36 0%, #06111E 100%);
  padding: 60px 0;
  margin-bottom: 40px;
}
.ld-page-hero .ld-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.ld-page-hero h1 {
  color: #fff !important;
  font-size: clamp(28px,4vw,44px) !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin: 8px 0 12px !important;
}
.ld-page-hero p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 17px !important;
  text-align: left !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}
.ld-breadcrumb {
  font-size: 13px !important;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 0 8px 0 !important;
  text-align: left !important;
}
.ld-breadcrumb a {
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none !important;
}
.ld-breadcrumb a:hover { color: #D4B06A !important; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* Hide Astra built-in toggle on ALL screens — we use our own custom hamburger */
button.ast-menu-toggle,
.ast-header-navigation-arrow { display: none !important; }
@media (max-width: 1024px) {
  .ast-nav-menu,
  .main-navigation,
  #primary-menu,
  .ast-primary-navigation { display: none !important; }
  #ld-mobile-toggle { display: flex !important; }
  .ld-util-locations { display: none; }
  .ast-primary-header-bar .ast-container,
  .site-header .ast-container {
    height: 64px !important;
    justify-content: space-between !important;
  }
}
/* Body padding for fixed header (JS will correct dynamically) */
body { padding-top: 122px !important; }
@media (max-width: 1024px) { body { padding-top: 106px !important; } }
@media (max-width: 768px) {
  body { padding-top: 64px !important; }
  #ld-utility-bar { display: none !important; }
  #masthead, .site-header, header.site-header { top: 0 !important; }
  .ld-util-right .ld-util-emergency { display: none; }
  html { overflow-x: hidden !important; max-width: 100%; }
  body {
    font-size: 16px !important;
    overflow-x: hidden;
    max-width: 100%;
  }
  /* Text overflow & zoom protection */
  .entry-content p, .ld-section p, article p {
    font-size: 16px !important;
    text-align: left !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .entry-content h1, .entry-content h2, .entry-content h3,
  .ld-section h2, .ld-section h3 {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .entry-content ul li, .entry-content ol li,
  .ld-section ul li, .ld-section ol li { font-size: 16px !important; }
  #ld-utility-bar { height: auto; padding: 6px 0; }
  .ld-util-inner { flex-wrap: wrap; gap: 4px; }
  .ld-util-right { flex-wrap: wrap; gap: 8px; }
}
/* ═══════════════════════════════════════════
   RELATED TOPICS + INLINE CTA
═══════════════════════════════════════════ */
.ld-related-section {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 28px 32px;
  margin: 48px 0 32px;
}
.ld-related-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1B3A5C !important;
  margin: 0 0 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ld-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ld-related-link {
  display: inline-block;
  background: #fff;
  border: 1px solid #93c5fd;
  color: #1B3A5C !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: background 0.18s, border-color 0.18s;
}
.ld-related-link:hover {
  background: #1B3A5C;
  color: #fff !important;
  border-color: #1B3A5C;
}
.ld-inline-cta {
  background: linear-gradient(135deg, #0B1F36 0%, #1B3A5C 100%);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ld-inline-cta strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 4px;
}
.ld-inline-cta span {
  color: #94a3b8;
  font-size: 14px;
}
.ld-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.ld-cta-primary {
  background: #D4680A;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
}
.ld-cta-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
}
.ld-cta-primary:hover { background: #b85a08; }
.ld-cta-secondary:hover { border-color: #fff; }
@media (max-width: 768px) {
  .ld-related-section, .ld-inline-cta { padding: 20px; }
  .ld-inline-cta { flex-direction: column; }
  .ld-cta-btns { width: 100%; }
  .ld-cta-primary, .ld-cta-secondary { text-align: center; flex: 1; }
}
/* ══ site footer ══ */
.ld-site-footer{
  background:#0B1F36;
  color:rgba(255,255,255,0.92);
  font-family:"Inter",sans-serif;
  border-top:5px solid #D4B06A;
}
.ld-site-footer a{color:rgba(255,255,255,0.92)!important;text-decoration:none!important;transition:color .2s;}
.ld-site-footer a:hover{color:#D4B06A!important;}
.ld-footer-main{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;
  padding:60px 24px 48px;
  max-width:1200px;
  margin:0 auto;
}
.ld-footer-col h4{
  font-family:"Inter",sans-serif !important;
  color:#D4B06A;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
  margin-bottom:18px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(212,176,106,.25);
  display:block;
}
.ld-footer-col p,.ld-footer-col address{font-size:14px;line-height:2.1;font-style:normal;color:rgba(255,255,255,0.82);}
.ld-footer-col ul{list-style:none;padding:0;margin:0;}
.ld-footer-col ul li{margin-bottom:11px;font-size:14px;line-height:1.6;}
.ld-footer-phone{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.9)!important;font-weight:600;font-size:14px;}
.ld-footer-wa{
  display:inline-flex;align-items:center;gap:5px;
  background:#25D366;color:#fff!important;
  padding:5px 14px;border-radius:100px;
  font-size:12px;font-weight:700;margin-top:8px;
}
.ld-footer-wa:hover{background:#1DA851!important;color:#fff!important;}
.ld-footer-creds{
  display:flex;flex-wrap:wrap;gap:6px;margin-top:12px;
}
.ld-footer-creds span{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  padding:2px 8px;border-radius:4px;
  font-size:11px;color:rgba(255,255,255,0.9);
}
.ld-footer-bottom-bar{
  border-top:1px solid rgba(255,255,255,.1);
  background:#06111E;
  padding:20px 24px;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,0.9);
}
.ld-footer-bottom-bar a{color:rgba(255,255,255,0.9)!important;}
.ld-footer-bottom-bar a:hover{color:#D4B06A!important;}
.ld-footer-seo{font-size:12px;color:rgba(255,255,255,.28);margin-top:6px;}
@media(max-width:768px){
  .ld-footer-main{grid-template-columns:1fr 1fr;gap:28px;padding:40px 20px 32px;}
}
@media(max-width:480px){
  .ld-footer-main{grid-template-columns:1fr;gap:24px;}
}
