/* =====================================================================
   EIRA INTEGRATED CARE CENTER — GLOBAL STYLESHEET
   Design system: colors, type, layout primitives, shared components.
   Built on top of Bootstrap 5 (grid, utilities, dropdowns) — this file
   overrides/extends Bootstrap defaults to match the Eira brand.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Brand colors — sampled from the Eira logo */
  --navy-deep:  #0E3564;   /* darkest navy — footer, top bar          */
  --navy:       #14487F;   /* primary navy — headings, primary button */
  --navy-mid:   #1B5DA6;   /* lighter navy — hover states, links      */
  --red:        #C41E28;   /* accent red — from the logo star          */
  --red-dark:   #9E1620;   /* red hover state                          */
  --whatsapp:   #25D366;   /* WhatsApp brand green (functional icon)   */

  --paper:      #F5F8FB;   /* alternate section background             */
  --white:      #FFFFFF;
  --ink:        #202B38;   /* body text                                 */
  --ink-soft:   #57626F;   /* secondary / muted text                   */
  --border:     #E2E8F0;

  --font-head: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Roboto, Arial, sans-serif;

  --container-max: 1220px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-card: 0 10px 30px rgba(14, 53, 100, 0.08);
  --shadow-header: 0 4px 18px rgba(14, 53, 100, 0.10);

  --header-height: 96px;
  --topbar-height: 40px;
}

/* ---------------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--red); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(1.5rem, 3.4vw, 3.1rem); }
h2 { font-size: clamp(1.65rem, 2.6vw, 2.35rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.1rem; color: var(--ink); }

.text-soft { color: #000000; }

/* Comfortable reading measure for long-form clinical content */
.prose { max-width: 74ch; }
.prose p, .prose li { color: var(--ink-soft); }

::selection { background: var(--red); color: var(--white); }

/* Visible keyboard focus (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--navy-mid);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------------------
   3. LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container-eira {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 767.98px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
}

.section-alt { background-color: var(--paper); }
.section-deep {
  background-color: var(--navy-deep);
  color: rgba(255,255,255,.9);
}
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--white); }

.section-head { max-width: 900px; margin-bottom: 44px; }
.section-head p { font-size: 1.08rem; }

.divider-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---------------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------------- */
.btn-eira {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn-eira-primary {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-eira-primary:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-eira-accent {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-eira-accent:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-eira-outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-eira-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-eira-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-eira-outline-light:hover {
  background-color: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

.btn-eira-sm { padding: 9px 20px; font-size: 0.9rem; }

/* ---------------------------------------------------------------------
   5. TOP UTILITY BAR
   --------------------------------------------------------------------- */
.topbar {
  background-color: var(--navy-deep);
  color: rgba(255,255,255,.88);
  font-size: 0.86rem;
  height: var(--topbar-height);
}
.topbar a { color: rgba(255,255,255,.88); }
.topbar a:hover { color: var(--red); }
.topbar .topbar-inner {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 22px;
}
.topbar .topbar-item:last-child { margin-right: 0; }
.topbar .topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.topbar .topbar-social a:hover { background: var(--red); }

/* ---------------------------------------------------------------------
   6. MAIN HEADER / NAVIGATION
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-header); }

.navbar-eira { padding: 16px 0; }
.site-header.is-scrolled .navbar-eira { padding: 10px 0; }

.navbar-brand-eira { display: flex; align-items: center; gap: 12px; }
.navbar-brand-eira img {
  height: 90px;
  padding-top:5px;
  padding-bottom:5px;
  width: auto;
  transition: height .25s ease;
}
@media only screen and (max-width: 767px) {
.navbar-brand-eira img {
  height: 55px;
  padding-top:5px;
  padding-bottom:5px;
  width: auto;
  transition: height .25s ease;
}
}
.site-header.is-scrolled .navbar-brand-eira img { height: 90px; }
@media only screen and (max-width: 767px) {
.site-header.is-scrolled .navbar-brand-eira img { height: 50px; }
}
.navbar-brand-eira .brand-text { font-family: var(--font-head); line-height: 1.15; }
.navbar-brand-eira .brand-text strong {
  display: block;
  font-size: 1.0rem;
  color: var(--navy-deep);
  font-weight: 700;
}
.navbar-brand-eira .brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--red);
  font-weight: 600;
}

.nav-eira .nav-link {
  font-weight: 600;
  color: var(--ink);
  padding: 8px 10px !important;
  position: relative;
}
.nav-eira .nav-link:hover { color: var(--navy); }

.nav-eira .nav-link.active {
  color: var(--navy-deep);
}
.nav-eira .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}

.nav-eira .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  margin-top: 6px;
}
.nav-eira .dropdown-item {
  font-weight: 500;
  padding: 10px 22px;
  color: var(--ink);
}
.nav-eira .dropdown-item:hover,
.nav-eira .dropdown-item:focus {
  background-color: var(--paper);
  color: var(--navy);
}

.nav-cta { margin-left: 14px; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 18px 4px 8px;
    border-top: 1px solid var(--border);
    margin-top: 14px;
  }
  .nav-cta { margin-left: 0; margin-top: 10px; width: 100%; }
  .nav-cta .btn-eira { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------------------
   7. FLOATING CALL / WHATSAPP ACTIONS
   --------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.floating-btn:hover { transform: translateY(-3px); color: var(--white); }

.floating-btn.call-btn { background-color: #c41e28; }
.floating-btn.whatsapp-btn { background-color: var(--whatsapp); }

/* single deliberate motion moment: a pulsing ring behind the WhatsApp
   button, so the one channel most people expect a quick reply from
   draws the eye without animating every element on the page */
.floating-btn.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--whatsapp);
  opacity: .55;
  animation: eira-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes eira-pulse {
  0%   { transform: scale(1);   opacity: .5; }
  80%  { transform: scale(1.9); opacity: 0;  }
  100% { transform: scale(1.9); opacity: 0;  }
}

@media (max-width: 575.98px) {
  .floating-actions { right: 14px; bottom: 16px; }
  .floating-btn { width: 50px; height: 50px; font-size: 1.25rem; }
}

/* ---------------------------------------------------------------------
   8. PAGE HERO (sub-pages)
   --------------------------------------------------------------------- */
.page-hero {
  background-color: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(196, 30, 40, 0.14);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero .breadcrumb-eira {
  font-size: 0.92rem;
  color: rgba(255,255,255,.75);
}
.page-hero .breadcrumb-eira a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-eira a:hover { color: var(--white); }
.page-hero .breadcrumb-eira .sep { margin: 0 8px; opacity: .6; }

/* ---------------------------------------------------------------------
   9. CARDS / LIST TREATMENTS (used across service & facility pages)
   --------------------------------------------------------------------- */
.icon-list { list-style: none; padding: 0; margin: 0; }
.icon-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: #000000;
}
.icon-list li:last-child { border-bottom: none; }
.icon-list li i {
  color: var(--red);
  font-size: 1.15rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  background: var(--white);
}
.feature-tile .feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.stat-row { display: flex; flex-wrap: wrap; gap: 40px; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--white);
  line-height: 1;
}
.stat-item span { font-size: 0.92rem; color: rgba(255,255,255,.75); }

/* ---------------------------------------------------------------------
   10. TEAM PROFILE CARDS
   --------------------------------------------------------------------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
}
.team-card .team-photo {
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: var(--paper);
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .team-body { padding: 24px; }
.team-card .team-role {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* ---------------------------------------------------------------------
   11. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-deep);
  color: rgba(255,255,255,.78);
  position: relative;
  padding-top: 64px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.site-footer h5 {
  color: var(--white);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--white); }
.site-footer .footer-brand img {height: 150px;margin-bottom: 10px;align-items: center;background: white;border-radius: 20px;padding: 10px;}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 12px; }
.site-footer .footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.site-footer .footer-contact i { color: var(--red); margin-top: 4px; }
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  margin-right: 8px;
}
.site-footer .footer-social a:hover { background: var(--red); }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.footer-bottom a { color: rgba(255,255,255,.65); }

/* ---------------------------------------------------------------------
   12. FORMS (contact page)
   --------------------------------------------------------------------- */
.form-eira label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.form-eira .form-control,
.form-eira .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.96rem;
}
.form-eira .form-control:focus,
.form-eira .form-select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(27, 93, 166, 0.15);
}

/* ---------------------------------------------------------------------
   13B. HOMEPAGE — HERO
   --------------------------------------------------------------------- */
.hero-eira {
  padding: 68px 0 92px;
   /* background: linear-gradient(180deg, var(--paper) 0%, var(--white) 78%);
 background: linear-gradient(180deg, #c41e2833 0%, #fffafa 78%); */
  background: linear-gradient(180deg, #d9e9ff 0%, #f7fcff 78%); 
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
.hero-eira {
  padding: 35px 0 42px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 78%);
  position: relative;
  overflow: hidden;
}
}

.hero-eira .hero-lead {
  font-size: 1.14rem;
  color: #000000;
  max-width: 540px;
}

.hero-eira .hero-ctas { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0 38px; }

.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.hero-stats .stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--border);
}
.hero-stats .stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.85rem;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stats .stat span { font-size: 0.84rem; color: var(--ink-soft); }

/* Radial "care pillars" graphic — built from the logo's pinwheel/star
   motif, rendered in CSS/HTML rather than a stock photo */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.hero-visual .hv-ring {
  position: absolute;
  inset: 6%;
  border: 2px dashed #d56168;
  border-radius: 50%;
}
.hero-visual .hv-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 128px; height: 128px;
  border-radius: 50%;
  border: 2px solid #16478d;
  background: #fff;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
  padding: 10px;
  box-shadow: 0 20px 44px rgba(14, 53, 100, .28);
  z-index: 2;
}
.hero-visual .hv-core span { display: block; font-size: 1.6rem; color: var(--red); margin-bottom: 2px; }

.hero-visual .hv-node {
  position: absolute;
  width: 112px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-card);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep);
  z-index: 2;
}
.hero-visual .hv-node i { display: block; font-size: 1.3rem; color: var(--red); margin-bottom: 6px; }
.hero-visual .hv-node.n1 { top: -4%; left: 50%; transform: translateX(-50%); }
.hero-visual .hv-node.n2 { top: 50%; right: -8%; transform: translateY(-50%); }
.hero-visual .hv-node.n3 { bottom: -10%; left: 50%; transform: translateX(-50%); }
.hero-visual .hv-node.n4 { top: 50%; left: -8%; transform: translateY(-50%); }

@media (max-width: 991.98px) {
  .hero-visual { max-width: 320px; margin-top: 40px; }
  .hero-visual .hv-node { width: 96px; font-size: 0.74rem; padding: 10px 8px; }
}
@media (max-width: 575.98px) {
  .hero-stats { gap: 0 12px; }
  .hero-stats .stat { padding-right: 0; margin-right: 0; border-right: none; flex: 1 1 45%; }
}

/* ---------------------------------------------------------------------
   13C. HOMEPAGE — CARE CONTINUUM CARDS
   --------------------------------------------------------------------- */
.continuum-card {
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.continuum-card:hover {
  border-color: var(--navy-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}
.continuum-card .cc-step {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--red);
  margin-bottom: 12px;
}
.continuum-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.continuum-card p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 14px; }
.continuum-card .cc-link { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.continuum-card:hover .cc-link { color: var(--red); }

/* ---------------------------------------------------------------------
   13D. HOMEPAGE — TEAM PREVIEW AVATAR (icon placeholder, see team.php
   for full photo cards)
   --------------------------------------------------------------------- */
.avatar-placeholder {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
}

/* ---------------------------------------------------------------------
   13E. HOMEPAGE — ABOUT SPLIT SECTION
   --------------------------------------------------------------------- */
.about-media { position: relative; }
.about-media .about-badge {
  position: absolute;
  left: 24px; bottom: -22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.about-media .about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--navy-deep);
  line-height: 1;
}
.about-media .about-badge span { font-size: 0.78rem; color: var(--ink-soft); }

/* Reusable "icon panel" — a designed stand-in for photography, built
   from brand color + a large icon rather than a stock photo, so every
   section stays visually consistent without licensing concerns. */
.icon-panel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.icon-panel::before {
  content: "";
  position: absolute;
  width: 78%; padding-top: 78%;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 50%;
  z-index: 0;
}
.icon-panel::after {
  content: "";
  position: absolute;
  top: 10%; right: 10%;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  opacity: .9;
}
.icon-panel i {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 4.4rem;
}
.icon-panel.panel-tall { aspect-ratio: 4 / 4.6; }
.icon-panel.panel-wide { aspect-ratio: 16 / 11; }
.icon-panel.panel-square { aspect-ratio: 4 / 3.4; }
@media (max-width: 575.98px) {
  .icon-panel i { font-size: 3.4rem; }
}

/* ---------------------------------------------------------------------
   13F. HOMEPAGE — CARE PROGRAM CARDS (image / content / button)
   --------------------------------------------------------------------- */
.program-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.program-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.program-card .program-media { border-radius: 0; }
.program-card .program-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-card .program-body p { flex-grow: 1; }

/* ---------------------------------------------------------------------
   13G. HOMEPAGE — HOSPITAL-TO-HOME / FAMILY FRAMEWORK SPLIT SECTIONS
   --------------------------------------------------------------------- */
.split-highlights { list-style: none; padding: 0; margin: 22px 0 28px; }
.split-highlights li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: #000000;
}
.split-highlights li i { color: var(--red); margin-top: 4px; }

/* ---------------------------------------------------------------------
   13H. HOMEPAGE — MDT "HOW MEETINGS SUPPORT EACH CYCLE" TIMELINE
   --------------------------------------------------------------------- */
.mdt-timeline { position: relative; margin-top: 50px; }
.mdt-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 28px;
  width: 2px;
  background: var(--border);
}
.mdt-step {
  position: relative;
  padding-left: 76px;
  padding-bottom: 42px;
}
.mdt-step:last-child { padding-bottom: 0; }
.mdt-step .mdt-num {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(14,53,100,.25);
}
.mdt-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.mdt-step p { color: #000000; margin-bottom: 0; max-width: 66ch; }

@media (min-width: 992px) {
  /* On wide screens, alternate the timeline left/right around a centered line */
  .mdt-timeline { max-width: 980px; margin-left: auto; margin-right: auto; }
  .mdt-timeline::before { left: 50%; transform: translateX(-50%); }
  .mdt-step {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
  .mdt-step:nth-child(odd) {
    left: 0;
    padding-right: 56px;
    text-align: right;
  }
  .mdt-step:nth-child(even) {
    left: 50%;
    padding-left: 56px;
  }
  .mdt-step .mdt-num {
    left: auto;
    top: 0;
  }
  .mdt-step:nth-child(odd) .mdt-num { right: -28px; }
  .mdt-step:nth-child(even) .mdt-num { left: -28px; }
  .mdt-step:nth-child(odd) p { margin-left: auto; }
}

/* ---------------------------------------------------------------------
   13I. SECTION EYEBROWS (small red label above each heading)
   --------------------------------------------------------------------- */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.eyebrow-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
  display: inline-block;
}
.section-head .eyebrow-tag,
.text-center .eyebrow-tag {
  justify-content: center;
}

/* ---------------------------------------------------------------------
   13J. DECORATIVE SHAPE FRAME — used behind About / Hospital-to-Home /
   Family Framework imagery. Sits behind the image via ::before/::after
   so it keeps working after an icon-panel is swapped for a real photo.
   --------------------------------------------------------------------- */
.media-frame { position: relative; }
.media-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 72%;
  height: 72%;
  background: linear-gradient(135deg, rgba(196, 30, 40, .16), rgba(20, 72, 127, .16));
  border-radius: 42px;
  z-index: 0;
}
.media-frame::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 16%;
  width: 44px;
  height: 44px;
  border: 3px solid var(--red);
  border-radius: 12px;
  z-index: 0;
}
.media-frame > .icon-panel,
.media-frame > img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .media-frame::before { width: 60%; height: 60%; }
  .media-frame::after { width: 34px; height: 34px; }
}

/* Real <img> version of the icon-panel treatment, so a photo can drop
   straight into the same visual language (rounded corners + fixed
   aspect ratio) used by the icon-panel placeholders. */
.media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  background-color: var(--paper);
}
.icon-panel.has-photo { background: var(--paper); }
.icon-panel.has-photo::before,
.icon-panel.has-photo::after { display: none; }
.icon-panel.has-photo img.media-photo { position: relative; z-index: 1; }

/* ---------------------------------------------------------------------
   13K. CARE PROGRAM IMAGE — cover photo + overlapping icon badge
   --------------------------------------------------------------------- */
.program-media-wrap { position: relative; }
.program-media-wrap .program-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background-color: var(--paper);
}
.program-badge {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 4px solid var(--white);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
  z-index: 2;
}
.program-card .program-body { padding-top: 44px; }

/* ---------------------------------------------------------------------
   13L. CTA STRIP (responsive closing call-to-action)
   --------------------------------------------------------------------- */
.cta-strip .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 992px) {
  .cta-strip .cta-actions { justify-content: flex-end; }
}
@media (max-width: 575.98px) {
  .cta-strip .cta-actions .btn-eira { flex: 1 1 100%; justify-content: center; }
}

/* ---------------------------------------------------------------------
   13M. ABOUT US — PULL QUOTE
   --------------------------------------------------------------------- */
.pull-quote {
  border-left: 4px solid var(--red);
  padding: 4px 0 4px 24px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin: 15px 0;
}

/* ---------------------------------------------------------------------
   13N. ABOUT US — CAREGIVER SUPPORT (left text / right image, with
   soft background shapes that don't depend on the image rendering)
   --------------------------------------------------------------------- */
.caregiver-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.caregiver-section::before,
.caregiver-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.caregiver-section::before {
  width: 420px; height: 420px;
  top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(20,72,127,.12), rgba(20,72,127,0) 72%);
}
.caregiver-section::after {
  width: 460px; height: 460px;
  bottom: -200px; right: -160px;
  background: radial-gradient(circle, rgba(196,30,40,.12), rgba(196,30,40,0) 72%);
}
.caregiver-section > .container-eira { position: relative; z-index: 1; }

/* ---------------------------------------------------------------------
   13N-2. STAT BLOCK DECORATION (Track Record section)
   --------------------------------------------------------------------- */
.stat-block { position: relative; }
.stat-block::before {
  content: "";
  position: absolute;
  inset: -10% -6%;
 /* border: 1px dashed rgba(255,255,255,.22); */
  border-radius: 50%;
  z-index: 0;
}
.stat-block .row { position: relative; z-index: 1; }
.stat-block .stat-cell {
  text-align: center;
  padding: 18px 10px;
}
.stat-block .stat-cell strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-block .stat-cell span {
  font-size: 0.84rem;
  color: rgba(255,255,255,.75);
}
@media (max-width: 767.98px) {
  .stat-block::before { display: none; }
}

/* ---------------------------------------------------------------------
   13P. OUR TEAM — "doctor directory" style cards + profile modal
   --------------------------------------------------------------------- */
.doctor-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
.doctor-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 2;
}
.doctor-card:hover::before { transform: scaleX(1); }
.doctor-card:hover { box-shadow: var(--shadow-card); transform: translateY(-6px); }

.doctor-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper);
}
.doctor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter .35s ease, transform .45s ease;
}
.doctor-card:hover .doctor-photo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.doctor-photo .doctor-avatar-fallback {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.doctor-photo .doctor-avatar-fallback::before {
  content: "";
  position: absolute;
  width: 66%; padding-top: 66%;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 50%;
}
.doctor-photo .doctor-avatar-fallback i {
  position: relative;
  color: var(--white);
  font-size: 3.2rem;
}

.doctor-body { padding: 24px 16px 26px; text-align: center; }
.doctor-body h3 { font-size: 1.14rem; margin-bottom: 2px; }
.doctor-role {
  color: var(--red);
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 14px;
}
.doctor-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 0;
  margin: 0 0 18px;
}
.doctor-tags li {
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
}

/* Profile modal */
.modal-doctor .modal-content { border: none; border-radius: var(--radius-md); overflow: hidden; }
.modal-doctor .modal-header {
  background: var(--navy-deep);
  color: var(--white);
  border: none;
  padding: 22px 26px;
}
.modal-doctor .modal-header .modal-title { font-family: var(--font-head); }
.modal-doctor .modal-header .modal-title small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--red);
  margin-top: 4px;
}
.modal-doctor .modal-header .btn-close { filter: invert(1); }
.modal-doctor .modal-body {
  padding: 0;
  max-height: 80vh;
  overflow-y: auto;
}
/* Stop Bootstrap's default row stretch — without this, the photo column
   is forced to match the height of the (often much taller) bio text
   column, and object-fit: cover then crushes the portrait into a tall,
   narrow crop. This is the fix for that issue. */
.modal-doctor .modal-body .row { align-items: flex-start; }

.modal-doctor .modal-photo-col {
  background: var(--paper);
  position: sticky;
  top: 0;
}
.modal-doctor .modal-photo-col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.modal-doctor .modal-avatar-fallback {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
}
@media (max-width: 767.98px) {
  /* On narrow screens the columns stack, so sticky positioning would
     awkwardly pin the photo above scrolling text — turn it off there. */
  .modal-doctor .modal-photo-col { position: static; }
}
.modal-doctor .modal-avatar-fallback i { color: var(--white); font-size: 3.6rem; }
.modal-doctor .modal-content-col { padding: 28px 30px; }
.modal-doctor .modal-content-col p { font-size: 0.95rem; color: var(--ink-soft); }
.modal-doctor .modal-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.modal-doctor .modal-highlights li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.modal-doctor .modal-highlights li:last-child { border-bottom: none; }
.modal-doctor .modal-highlights li i { color: var(--red); margin-top: 3px; }

/* Kept for any future card that wants an inline expand/collapse instead
   of the modal (e.g. .team-more wrapping a <details> element) */
.team-more summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.team-more summary::-webkit-details-marker { display: none; }
.team-more summary:hover { color: var(--red); }
.team-more summary i { transition: transform .2s ease; }
.team-more[open] summary i { transform: rotate(180deg); }
.team-more .team-more-body {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.team-more .team-more-body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   13Q. CONTACT US PAGE
   --------------------------------------------------------------------- */
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-detail .contact-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 0; }
.contact-detail a:hover { color: var(--red); }

.contact-social { display: flex; gap: 10px; margin-top: 10px; }
.contact-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}
.contact-social a:hover { background: var(--red); color: var(--white); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 575.98px) {
  .contact-form-card { padding: 26px 20px; }
}

.quick-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  margin-top: 40px;
}
.quick-contact-strip .qc-text { display: flex; align-items: center; gap: 12px; }
.quick-contact-strip .qc-text i { color: var(--red); font-size: 1.5rem; }
.quick-contact-strip .qc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.map-wrap { border-top: 1px solid var(--border); line-height: 0; }
.map-frame { width: 100%; height: 420px; border: 0; display: block; }

/* Honeypot field — hidden from real visitors, catches simple spam bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; }

/* ---------------------------------------------------------------------
   13R. REUSABLE SOFT BACKGROUND SHAPES (any section can opt in)
   --------------------------------------------------------------------- */
.shapes-bg { position: relative; overflow: hidden; isolation: isolate; }
.shapes-bg::before,
.shapes-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.shapes-bg::before {
  width: 420px; height: 420px;
  top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(20,72,127,.12), rgba(20,72,127,0) 72%);
}
.shapes-bg::after {
  width: 460px; height: 460px;
  bottom: -200px; right: -160px;
  background: radial-gradient(circle, rgba(196,30,40,.12), rgba(196,30,40,0) 72%);
}
.shapes-bg > .container-eira { position: relative; z-index: 1; }

/* Bolder variant — for sections with lighter content (e.g. a single row
   of pills) where the default shapes read as too faint */
.shapes-bg-strong::before {
  width: 520px; height: 520px;
  top: -180px; left: -160px;
  background: radial-gradient(circle, rgba(20,72,127,.22), rgba(20,72,127,0) 72%);
}
.shapes-bg-strong::after {
  width: 560px; height: 560px;
  bottom: -220px; right: -180px;
  background: radial-gradient(circle, rgba(196,30,40,.20), rgba(196,30,40,0) 72%);
}

/* ---------------------------------------------------------------------
   13S. FACILITY CARDS — ghost number + blob-shaped icon
   --------------------------------------------------------------------- */
.facility-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px 26px;
  height: 100%;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.facility-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.facility-card .facility-ghost-num {
  position: absolute;
  top: -8px; right: 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.6rem;
  color: var(--paper);
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.facility-card .facility-icon {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.facility-card h3 { position: relative; z-index: 1; font-size: 1.04rem; margin-bottom: 8px; }
.facility-card p { position: relative; z-index: 1; font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   13T. CONDITION PILLS (Who Can Benefit)
   --------------------------------------------------------------------- */
.condition-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.condition-pills li {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 999px;
}

/* ---------------------------------------------------------------------
   13U. PILLAR GRID — horizontal icon row with dividers (no boxes)
   --------------------------------------------------------------------- */
.pillar-grid .pillar-item {
  text-align: center;
  padding: 10px 20px;
  position: relative;
  height: 100%;
}
.pillar-grid .pillar-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--border);
}
@media (max-width: 767.98px) {
  .pillar-grid .pillar-item:not(:first-child)::before { display: none; }
}
.pillar-grid .pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.pillar-grid h3 { font-size: 1.05rem; margin-bottom: 8px; }
.pillar-grid p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   13V. PROCESS TIMELINE — generic alternating step timeline
   (same visual pattern as the homepage MDT cycle, under a reusable
   name so any future step-by-step content can use it too)
   --------------------------------------------------------------------- */
.process-timeline { position: relative; margin-top: 50px; }
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 28px;
  width: 2px;
  background: var(--border);
}
.process-step {
  position: relative;
  padding-left: 76px;
  padding-bottom: 42px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step .process-num {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(14,53,100,.25);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { color: var(--ink-soft); margin-bottom: 0; max-width: 66ch; }

@media (min-width: 992px) {
  .process-timeline { max-width: 980px; margin-left: auto; margin-right: auto; }
  .process-timeline::before { left: 50%; transform: translateX(-50%); }
  .process-step { width: 50%; padding-left: 0; padding-right: 0; }
  .process-step:nth-child(odd) { left: 0; padding-right: 56px; text-align: right; }
  .process-step:nth-child(even) { left: 50%; padding-left: 56px; }
  .process-step .process-num { left: auto; top: 0; }
  .process-step:nth-child(odd) .process-num { right: -28px; }
  .process-step:nth-child(even) .process-num { left: -28px; }
  .process-step:nth-child(odd) p { margin-left: auto; }
}

/* ---------------------------------------------------------------------
   13W. STAGE BADGE — small label inside a timeline step, indicating
   which broader stage it belongs to (e.g. Hospital / Rehab / Home)
   --------------------------------------------------------------------- */
.stage-badge {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

/* ---------------------------------------------------------------------
   13X. FACILITY BANNER — real photo strip, right under the header.
   Height is capped (via aspect-ratio + max-height) so the image never
   pushes the rest of the homepage below the fold; object-fit keeps it
   sharp and cropped sensibly at any width.
   --------------------------------------------------------------------- */
.facility-banner {
  width: 100%;
  aspect-ratio: 1920 / 731;
  max-height: 340px;
  overflow: hidden;
  line-height: 0;
  background: var(--paper); /* shows instantly while the photo loads */
}
.facility-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
@media (max-width: 991.98px) {
  .facility-banner { max-height: 260px; }
}
@media (max-width: 575.98px) {
  .facility-banner { max-height: 180px; }
}

/* ---------------------------------------------------------------------
   13. BACK TO TOP
   --------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 26px;
  z-index: 1049;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.back-to-top.is-visible { display: flex; }

.hv-node img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    margin-left: 35%;
    margin-bottom: 10px;
}


@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 1020px !important;
    }
}

.navbar-toggler {
    padding: 5px 5px !important;
  font-size: 1.0em !important;
}