:root {
	--bs-primary: #C10A3A;
	--bs-primary-rgb: 193, 10, 58;
	--text-color: #333;
	--section-soft-bg: #FEEBDC;
	--wave-divider-fill: #FEEBDC;
	--fs-xs: 0.75rem;      /* 12px */
	--fs-13: 0.8125rem;	   /* 13px */
	--fs-sm: 0.875rem;     /* 14px */
	--fs-15: 0.9375rem;    /* 15px */
	--fs-md: 1rem;         /* 16px */
	--fs-17: 1.0625rem;    /* 17px */
	--fs-18: 1.125rem;	   /* 18px */
	--fs-base: 1.1875rem;  /* 19px */
	--fs-xl:   1.25rem;	   /* 20px */

	--fs-h3: 1.375rem;   /* 22px */
	--fs-h2: 1.75rem;    /* 28px */
	--fs-h1: 2.125rem;   /* 34px */
	color-scheme: only light;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: Arial, Verdana, Tahoma, Geneva, Helvetica, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-color);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #C10A3A;
  --bs-btn-border-color: #C10A3A;

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a00830;
  --bs-btn-hover-border-color: #a00830;

  --bs-btn-focus-shadow-rgb: 193, 10, 58;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a00830;
  --bs-btn-active-border-color: #a00830;

  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #C10A3A;
  --bs-btn-disabled-border-color: #C10A3A;

  padding: 10px 22px;
  font-weight: 500;
  border-radius: 10px;
}

.btn-outline-primary {
  --bs-btn-color: #C10A3A;
  --bs-btn-border-color: #C10A3A;

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #C10A3A;
  --bs-btn-hover-border-color: #C10A3A;

  --bs-btn-focus-shadow-rgb: 193, 10, 58;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a00830;
  --bs-btn-active-border-color: #a00830;

  --bs-btn-disabled-color: #C10A3A;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #C10A3A;

  padding: 10px 22px;
  font-weight: 500;
  border-radius: 10px;
}

a {
  color: #C10A3A;
  text-decoration: none;
}

a:hover {
  color: #a00830;
}

h1 {
  font-size: var(--fs-h1);
  color: #C10A3A;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: var(--fs-h2);
  color: #C10A3A;
  font-weight: 700;
  margin-bottom: 0.9rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  margin-bottom: 0.5rem;
}


/* DARK */
/*
@media (prefers-color-scheme: dark) {
  .wave-divider {
    display: none !important;
  }
}*/

/******************************************** BEGIN TOP BAR ********************************************/
.topbar {
  font-size: var(--fs-15);
  backdrop-filter: blur(8px);
}

.topbar-link {
  color: #fff;
  text-decoration: none;
  padding: 2px 2px;
  border-radius: 6px;
  transition: 0.2s ease;
  font-size: var(--fs-md);
}

.topbar-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.topbar-icon {
  color: #fff;
  font-size: var(--fs-sm);
  padding: 4px 8px;
  border-radius: 6px;
  transition: 0.2s ease;
}

.topbar-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
/******************************************** END TOP BAR ********************************************/

/******************************************** BEGIN NAV BAR ********************************************/
/* Logo */
.navbar-logo {
  max-height: 54px;
  height: auto;
  width: auto;
}

.navbar-nav {
  flex-wrap: wrap;
}

.navbar .nav-link {
  font-size: var(--fs-17);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;

  color: #333;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;

  display: inline-block;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .nav-link:hover {
  background-color: #C10A3A;
  color: #fff;
}
.navbar .nav-link.active {
  background-color: #C10A3A;
  color: #fff; 
}
.navbar .nav-link.active:hover {
  background-color: #a00830;
  color: #fff;
}
.navbar-light .navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.custom-toggler {
  border: 0;
  padding: 0.4rem;
  box-shadow: none !important;
}

.custom-toggler:focus {
  box-shadow: none;
}

.custom-toggler-box {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 22px;
}

.custom-toggler-line {
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #1f2d3d;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.custom-toggler-line:nth-child(1) {
  top: 0;
}

.custom-toggler-line:nth-child(2) {
  top: 10px;
}

.custom-toggler-line:nth-child(3) {
  top: 20px;
}

.custom-toggler.is-open .custom-toggler-line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.custom-toggler.is-open .custom-toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler.is-open .custom-toggler-line:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.custom-toggler.is-open .custom-toggler-line {
  background: #c10a3a;
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 34px;
  }
  .navbar-nav {
    gap: 6px;
    padding-top: 10px;
  }

  .navbar .nav-link {
    padding: 8px 12px;
  }
}
/******************************************** END NAV BAR ********************************************/


/******************************************** BEGIN FOOTER ********************************************/
/* Top footer */
.footer-top {
  background: var(--section-soft-bg);
}

/* Contact cards */
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  border-radius: 12px;
  color: #212529;
}

.footer-contact-link {
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
  color: #212529;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Icon */
.footer-contact-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(193, 10, 58, 0.08);
  color: #c10a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.footer-contact-icon svg {
  font-size: 40px;
}
/* Text */
.footer-contact-content {
  line-height: 1.65;
}

.footer-card-title {
  margin-bottom: 0.35rem;
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.3;
  color: #1f2d3d;
}

.footer-card-text {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: #212529;
}

/* Bottom footer */
.footer-bottom {
  background: var(--bs-primary);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  color: #fff;
}

.footer-copy {
  color: #fff;
}

/* Navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 0 0.6rem;
  line-height: 1.6;
  
}

.footer-nav a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav a:hover {
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .footer-contact-card {
    padding: 0.85rem;
    gap: 0.85rem;
  }

  .footer-contact-icon {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .footer-card-title {
    font-size: var(--fs-base);
  }

  .footer-card-text {
    font-size: var(--fs-md);
  }
}
/******************************************** END FOOTER ********************************************/

/******************************************** BEGIN SECTIONS HOME PAGE ********************************************/
.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-white {
  background-color: #fff;
}

.section-soft {
  background-color: var(--section-soft-bg);
}

.section-title {
  font-weight: 800;
  color: #C10A3A;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-size: var(--fs-h1);
}

.section-text {
  max-width: clamp(700px, 90%, 1100px);
  margin: 0 auto;
  padding-left: 4px;
  padding-right: 4px;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: #333;
}
/******************************************** END SECTIONS HOME PAGE ********************************************/

/******************************************** BEGIN PAGE ********************************************/
.container-page {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  /*border: 2px solid red;*/
}

.page-content {
  margin-bottom: 20px;
  margin-top: 10px;
  /*border: 2px solid blue;*/
}

.page-title {
  margin-bottom: 1.5rem;
}

.page-title h1 {
  color: #C10A3A;
  margin-bottom: 0;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
}

.page-title h2 {
  color: #333;
  margin-bottom: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

.page-subtitle {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: #1f2d3d;
  letter-spacing: 1px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-text {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-color, #6b7280);
}

.page-text p:last-child {
  margin-bottom: 0;
}

.page-text ul,
.page-text ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.page-text li + li {
  margin-top: 0.35rem;
}

.page-text a {
  color: var(--bs-primary);
  text-decoration: none;
}

.page-text a:hover {
  text-decoration: underline;
}

/* Back link */
.page-back-link {
  margin-bottom: 0.75rem;
}

.page-back-link a {
  font-size: 1.25rem;
  color: var(--bs-primary);
  text-decoration: none;
}

.page-back-link a:hover {
  text-decoration: underline;
}

.page-breadcrumb {
  margin-bottom: 1rem;
}

.page-breadcrumb .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(193, 10, 58, 0.10);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}

.page-breadcrumb .breadcrumb-item {
  font-size: var(--fs-sm);
  line-height: 1.4;
  color: #6c757d;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(108, 117, 125, 0.7);
  padding-right: 0.35rem;
}

.page-breadcrumb .breadcrumb-item a {
  color: #495057;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb .breadcrumb-item a:hover,
.page-breadcrumb .breadcrumb-item a:focus {
  color: #C10A3A;
  text-decoration: underline;
}

.page-breadcrumb .breadcrumb-item.active {
  color: #C10A3A;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .page-breadcrumb .breadcrumb {
    padding: 0.55rem 0.85rem;
    border-radius: 1rem;
  }

  .page-breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .page-subtitle {
	  font-size: 1.0rem;
	  margin-left: 10px;
	}
}
/******************************************** END PAGE ********************************************/


/******************************************** BEGIN PAGE FOOTER BOX ********************************************/
.content-box {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #f1f1f1;
}

.content-box-title {
  margin-bottom: 1rem;
  font-size: 1.65rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2d3d;
}

.content-box p {
  font-size: var(--fs-base);
  line-height: 1.2;
  color: #333;
}
/******************************************** END PAGE FOOTER BOX ********************************************/


/******************************************** BEGIN PAGE MOTTO ********************************************/
.brand-note {
  padding: 2rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border-left: 4px solid #C10A3A;
}

.brand-note-title {
  margin-bottom: 1rem;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.25;
  color: #C10A3A;
}

.brand-note-text {
  margin: 0 auto;
  max-width: 760px;
  font-size: var(--fs-base);
  line-height: 1.8;
  color: #333;
}
/******************************************** END PAGE MOTTO ********************************************/


/******************************************** BEGIN PHONE CONTACT BOX ********************************************/
.highlight-contact-box {
  display: flex;
  align-items: center;
  gap: 18px;

  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px 26px;

  text-decoration: none;
  transition: 0.25s ease;
  margin-bottom: 1.2rem;
}

.highlight-contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border-color: rgba(193, 10, 58, 0.25);
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff0f4;
  color: #C10A3A;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  flex-shrink: 0;
}

.contact-icon svg {
  font-size: 30px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-label {
  font-size: var(--bs-h2);
  color: #333;
}
.contact-phone {
 font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: 0.3px;
}
/******************************************** END PHONE CONTACT BOX ********************************************/

/******************************************** BEGIN SPECIALTY ********************************************/
/* SPECIALTY CARD */
.specialty-card {
  background: #fff;
  padding: 25px 15px;
  height: 100%;
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 1rem;
  box-shadow: 0 14px 34px rgba(20, 24, 32, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.specialty-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(20, 24, 32, 0.11);
  border-color: #f3c2cf;
}

.specialty-title {
  font-size: var(--fs-base);
  color: #333;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}

.specialty-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.2s;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1);
}
/* SPECIALTY LIST */
.specialties-list {
  display: grid;
  gap: 0.75rem;
}

.specialty-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  text-decoration: none;
  color: #1f2d3d;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.specialty-link span {
  font-size: 1.25rem;
  font-weight: 600;
}

.specialty-link:hover {
  color: var(--bs-primary);
  border-color: rgba(var(--bs-primary-rgb), 0.35);
  background-color: #f8fbff;
  transform: translateY(-2px);
}
/******************************************** END SPECIALTY ********************************************/

/******************************************** BEGIN SPECIALTY DOCTOR ********************************************/
.doctor-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doctor-schedule-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 0.1rem;
  background: #fff;
}

.doctor-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: #1f2d3d;
}

.doctor-role {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1f2d3d;
  letter-spacing: 1px;
}

.doctor-role p:last-child {
  margin-bottom: 0;
}

.doctor-time {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.schedule-day,
.schedule-hours {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.schedule-day {
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}

.schedule-hours {
  background: #f8f9fa;
}

.schedule-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: #fff4e5;
  color: #9a6700;
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e9ecef;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-service {
  font-size: var(--fs-base);
  color: #212529;
  flex: 1 1 auto;
  min-width: 0;
}

.price-value {
  font-weight: 700;
  color: var(--bs-primary);
  white-space: nowrap;
  flex: 0 0 auto;
  margin-left: 1rem;
}
.price-value small {
  font-size: 1em;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .price-row {
    align-items: flex-start;
  }

  .price-value {
    text-align: right;
  }
}
/******************************************** END SPECIALTY DOCTOR ********************************************/

/******************************************** BEGIN DOCTOR ********************************************/

.doctor-card-box {
  display: flex;
  flex: 1 1 auto;
  height: 100%;
  background: #fff;
  padding: 20px 22px;
  text-decoration: none;
  position: relative;
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 1rem;
  box-shadow: 0 14px 34px rgba(20, 24, 32, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.doctor-card-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(20, 24, 32, 0.11);
  border-color: rgba(193, 10, 58, 0.18);
}

.doctor-card-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: #C10A3A;
  border-radius: 2px;
  opacity: 0;
  transition: 0.25s;
}

.doctor-card-box:hover::before {
  opacity: 1;
}

.doctor-card-box-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.doctor-card-box-name {
  margin: 0;
  font-size: var(--fs-base);
  font-weight: 600;
  color: #1f2d3d;
}

.doctor-card-box-specialty {
  font-size: var(--fs-md);
  color: #6b7280;
  font-weight: 500;
}

.doctor-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.doctor-card {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  padding: 1.1rem 1.25rem;
}

.doctor-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.doctor-card-info {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.doctor-card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  width: 100%;
}

.doctor-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2d3d;
  text-decoration: none;
}

.doctor-card-name:hover {
  color: var(--bs-primary);
}

.doctor-card-specialty a {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  color: var(--bs-primary);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.6);
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.doctor-card-specialty a:hover {
  color: #fff;
  background: var(--bs-primary);
}

.doctor-card-schedule {
 flex: 0 0 380px;
 max-width: 420px;
}

@media (max-width: 991.98px) {
  .doctor-card {
    padding: 1rem;
  }

  .doctor-card-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .doctor-card-info {
    width: 100%;
  }

  .doctor-card-header {
    width: 100%;
  }

  .doctor-card-schedule {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    padding-top: 0.8rem;
    border-top: 1px solid #eef1f4;
  }

  .doctor-card-name {
    font-size: 1.05rem;
  }
}

.schedule-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.table-doctor {
  margin-bottom: 0;
}

.table-doctor thead th {
  background-color: #f8f9fa;
  color: #1f2d3d;
  font-weight: 700;
  border-bottom: 1px solid #dee2e6;
  white-space: nowrap;
}

.table-doctor > :not(caption) > * > * {
  padding: 1rem 0.9rem;
  vertical-align: top;
}

.table-doctor tbody tr:last-child td {
  border-bottom: 0;
}

.doctor-table-name {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1f2d3d;
  text-decoration: none;
}

.doctor-table-name:hover {
  color: var(--bs-primary);
}

.doctor-table-specialty a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-primary);
  text-decoration: none;
}

.doctor-table-specialty a:hover {
   text-decoration: underline;
}

/* responsive */
@media (max-width: 767.98px) {
  .table-doctor thead th {
    white-space: normal;
  }

  .doctor-table-name {
    font-size: 1.1rem;
  }

  .doctor-table-specialty a {
    font-size: 1rem;
  }

  .table-doctor > :not(caption) > * > * {
    padding: 0.9rem 0.75rem;
  }
}



/******************************************** END DOCTOR ********************************************/

/******************************************** BEGIN CONACT ********************************************/
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-info-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6c757d;
}

.contact-info-value {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #212529;
}

.contact-info-value a {
  color: #212529;
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--bs-primary);
}

.form-label {
  font-weight: 500;
  color: #333;
  font-size: 1.3rem;
}

.form-control {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #ced4da;
}

textarea.form-control {
  min-height: auto;
  resize: vertical;
}

.form-check-label {
  font-size: 1.2rem;
}

.form-check-label a {
  color: var(--bs-primary);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/******************************************** END CONACT ********************************************/

/******************************************** BEGIN CTA ********************************************/
.cta-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.cta-row-text {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.cta-row-text p {
  font-size: var(--fs-base);
  line-height: 1.25;
  color: #333;
  margin-bottom: 0px;
}

.cta-row-contact {
  margin-bottom: 0;
  height: 100%;
}

@media (max-width: 991.98px) {
  .cta-row {
    grid-template-columns: 1fr;
  }

  .cta-row-text {
    padding: 1rem 1.1rem;
  }
}
/******************************************** END CTA ********************************************/

/******************************************** BEGIN SITEMAP ********************************************/
.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sitemap-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.sitemap-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sitemap-link {
  display: inline-block;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2d3d;
  text-decoration: none;
}

.sitemap-link:hover {
  color: var(--bs-primary);
}

.sitemap-children {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.85rem;
  padding-left: 1.25rem;
  border-left: 2px solid #e9ecef;
}

.sitemap-sublink {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #495057;
  text-decoration: none;
}

.sitemap-sublink:hover {
  color: var(--bs-primary);
}

@media (max-width: 575.98px) {
  .sitemap-link {
    font-size: 1.05rem;
  }

  .sitemap-sublink {
    font-size: 0.95rem;
  }

  .sitemap-children {
    padding-left: 1rem;
  }
}
/******************************************** END SITEMAP ********************************************/

/******************************************** BEGIN CONTENT ARTICLE ********************************************/

.content-list-section {
  width: 100%;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.content-list-item {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.content-list-item:hover {
  transform: translateY(-2px);
  border-color: rgba(193, 10, 58, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.content-list-body {
  display: block;
  padding: 1rem 1.15rem;
}

.article-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(193, 10, 58, 0.08);
  color: #C10A3A;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.content-list-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--heading-color, #1f2937);
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.content-list-excerpt {
  color: var(--text-color, #6b7280);
  line-height: 1.65;
  font-size: var(--fs-md);
}

@media (max-width: 575.98px) {
  .content-list-body {
    padding: 1rem;
  }
}

.featured-content-section {
  width: 100%;
}

.section-heading-title {
  font-weight: 700;
  color: var(--heading-color, #1f2937);
  margin-bottom: 0.3rem;
}

.section-heading-text {
  color: var(--text-color, #6b7280);
  line-height: 1.7;
}

.featured-content-card {
  display: block;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  border-color: rgba(193, 10, 58, 0.16);
}

.featured-content-card-body {
  padding: 1.25rem;
}

.featured-content-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(193, 10, 58, 0.08);
  color: #C10A3A;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.featured-content-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.45;
  color: var(--heading-color, #1f2937);
  margin-bottom: 0.55rem;
}

.featured-content-text {
  font-size: var(--fs-md);
  color: var(--text-color, #6b7280);
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  .featured-content-card-body {
    padding: 1.05rem;
  }
}

.article-lead {
  font-size: var(--fs-base);
  line-height: 1.65;
}

.article-content {
  line-height: 1.75;
  color: #333;
}

.article-content h2 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-top: 1.2rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
  color: #1f2d3d;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-top: 2rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
  color: #1f2d3d;
}

.article-content p {
  font-size: 1.0625rem;
}

.article-content ol, ul {
  font-size: 1.0625rem;
  padding-left: 1.1rem;
  margin-bottom: 1.1rem;
}

.article-content li + li {
  margin-top: 0.65rem;
}

.article-note {
  margin-top: 1.1rem;
  padding: 1rem 1.25rem;
  background: rgba(193, 10, 58, 0.04);
  border: 1px solid rgba(193, 10, 58, 0.08);
  border-radius: 0.875rem;
  font-size: 1.0625rem;
  color: var(--bs-secondary-color);
}
.article-note p {
  margin-bottom: 0px;
}

/* mobile fine tuning */
@media (max-width: 575.98px) {
  .article-item {
    padding: 1rem;
  }

  .article-title {
    font-size: 1.05rem;
  }

  .article-excerpt {
    font-size: 0.9rem;
  }
}


/******************************************** END CONTENT ARTICLE ********************************************/

/******************************************** BEGIN PHOTO GALLERY ********************************************/
.gallery img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.35s ease;
}

.gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery img:hover {
  transform: scale(1.06);
}

.glightbox-clean .gslide-description {
    background: none !important;
    box-shadow: none !important;
}
.gallery-item-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-item-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
/******************************************** END PHOTO GALLERY ********************************************/

/******************************************** BEGIN WAVE ********************************************/
.wave-divider {
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(60px, 8vw, 80px);
  /*border: 2px solid green;*/
}

.wave-divider svg path {
  fill: var(--wave-divider-fill);
}

.wave-divider.flip {
  transform: rotate(180deg);
}

/******************************************** END WAVE ********************************************/

/******************************************** BEGIN CAROUSEL PHOTO GALLERY ********************************************/
.carousel {
 margin-bottom: 1.2rem;
}

#carouselSmart {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

#carouselSmart .carousel-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-caption {
  bottom: 20px;
  left: 20px;
  right: auto;
  text-align: left;
}

.carousel-caption h3 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

#carouselSmart .carousel-caption {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  width: 100%;
}

.hero-slider .carousel-item {
 height: clamp(300px, 40vw, 500px);
  overflow: hidden;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider #carouselSmart {
  border-radius: 0;
  overflow: hidden;
}

.hero-slider #carouselSmart img {
  border-radius: 0;
}
/******************************************** END HOME SLIDER ********************************************/

/******************************************** BEGIN POPUP ********************************************/
.site-notice {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.site-notice.is-visible {
  display: block;
}

.site-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.site-notice__dialog {
  position: relative;
  width: min(92vw, 560px);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.site-notice__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f8f9fa;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.site-notice__close:hover {
  background: #f1f3f5;
  color: #212529;
}

.site-notice__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff0f4;
  color: #c10a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.site-notice__title {
  margin-bottom: 0.85rem;
  font-size: 1.65rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f2d3d;
}

.site-notice__text {
  max-width: 460px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #495057;
}

.site-notice__text p {
	margin-bottom: 0px;
}
.site-notice__actions {
  margin-top: 1.5rem;
}

.site-notice__button {
  min-width: 220px;
}

body.has-notice-open {
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .site-notice__dialog {
    width: min(94vw, 560px);
    margin-top: 6vh;
    padding: 1.5rem 1rem 1.25rem;
    border-radius: 16px;
  }

  .site-notice__title {
    font-size: 1.4rem;
  }

  .site-notice__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .site-notice__button {
    width: 100%;
    min-width: 0;
  }
}
/******************************************** END POPUP ********************************************/

/******************************************** BEGIN MAP ********************************************/
.map-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.2rem;
}
.map-embed-sm {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.map-embed-lg {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

@media (max-width: 575.98px) {
  .map-embed-lg {
    height: 320px;
  }
}
/******************************************** END MAP ********************************************/

/******************************************** BEGIN OTHER ********************************************/

/* BACK TO TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 999;
  border-radius: 40%;
  padding: 10px 15px;
}

#scrollTopBtn svg {
  font-size: 25px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c10a3a;
}

.section-kicker::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

/* SVG */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
}

.icon-inline {
  margin-right: 6px;
}

.topbar-link:hover .icon {
  transform: scale(1.1);
}

/******************************************** END OTHER ********************************************/



/* FIX MEDIA */
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.7rem;
  }
  .container-page {
	  padding-left: 16px;
	  padding-right: 16px;
  }
  .carousel-caption h3 {
	  font-size: 1.0rem;
  }

  .brand-note {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 1.9rem;
  }
  .highlight-contact-box {
    padding: 20px;
    gap: 15px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .contact-phone {
    font-size: 1.2rem;
  }

  .carousel-caption h3 {
	  font-size: 1.6rem;
  }
}

/*
* {
  outline: 1px solid red;
}*/

/*
h1 font-size: 2.2rem;
h2 font-size: 1.9rem;
h3 font-size: 1.6rem;
text font-size: var(--fs-base);*/

/* quick links */
.quick-link-card {
  display: block;
  height: 100%;
  padding: 1.15rem 1rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 1rem;
  box-shadow: 0 14px 34px rgba(20, 24, 32, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.quick-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(20, 24, 32, 0.11);
  border-color: rgba(193, 10, 58, 0.18);
}

.quick-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(193, 10, 58, 0.06);
  color: #c10a3a;
  font-size: 20px;
}

.quick-link-title {
  margin-bottom: 0.45rem;
  font-size: var(--fs-17);
  line-height: 1.35;
  font-weight: 600;
  color: var(--bs-heading-color, #1f2430);
}

.quick-link-text {
  font-size: var(--fs-15);
  line-height: 1.7;
  color: var(--bs-secondary-color, #5d6874);
}



.clinic-highlight {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.clinic-highlight-title {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.clinic-highlight-text {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: #4b5563;
}

.clinic-highlight-image img {
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}


.appointments-section {
  position: relative;
}

.appointments-box {
  background: linear-gradient(135deg, #fff 0%, #fcf4f6 100%);
  border: 1px solid rgba(193, 10, 58, 0.10);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.appointments-lead {
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--text-color, #6b7280);
  max-width: 720px;
}

.appointments-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.appointment-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(193, 10, 58, 0.08);
  border-radius: 1rem;
}

.appointment-step-number {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C10A3A;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.appointment-step-text {
  color: var(--heading-color, #1f2937);
  font-weight: 500;
  line-height: 1.5;
}

.appointments-contact-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.appointments-contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 10, 58, 0.08);
  color: #C10A3A;
  font-size: 35px;
}

.appointments-contact-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color, #1f2937);
  margin-bottom: 0.55rem;
}

.appointments-contact-text {
  color: var(--text-color, #6b7280);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.appointments-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.appointments-contact-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-color, #6b7280);
}

@media (max-width: 575.98px) {
  .appointments-box,
  .appointments-contact-card {
    padding: 1.1rem;
  }

  .appointment-step {
    align-items: flex-start;
  }
}