@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #666666;
  background-color: #ffffff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.3;
}

a {
  color: #1A428A;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}
a:hover {
  color: #D92D20;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #1A428A;
}

::-webkit-scrollbar-thumb {
  background: #D92D20;
  border-radius: 50rem;
}

:focus-visible {
  outline: 3px solid #D92D20;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #D92D20;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus {
  top: 0;
}

.topbar {
  background: #1A428A;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.topbar a:hover {
  color: #D92D20;
}
.topbar .topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar .topbar-contact i {
  margin-right: 5px;
  color: #D92D20;
}
.topbar .topbar-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}
.topbar .topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  transition: all 0.35s ease-in-out;
}
.topbar .topbar-social a:hover {
  background: #D92D20;
  border-color: #D92D20;
  color: #fff;
}
.topbar .btn-book {
  background: #D92D20;
  color: #fff;
  border-radius: 50rem;
  padding: 2px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.35s ease-in-out;
}
.topbar .btn-book:hover {
  background: #ad2419;
  color: #fff;
}

.main-navbar {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.main-navbar .navbar-brand img {
  height: 74px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.main-navbar .navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1f1f1f;
  padding: 1.1rem 0.85rem;
  position: relative;
  transition: all 0.35s ease-in-out;
}
.main-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #D92D20;
  border-radius: 50rem;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.main-navbar .navbar-nav .nav-link:hover, .main-navbar .navbar-nav .nav-link.active {
  color: #D92D20;
}
.main-navbar .navbar-nav .nav-link:hover::after, .main-navbar .navbar-nav .nav-link.active::after {
  width: 60%;
}
.main-navbar .navbar-toggler {
  border: none;
  padding: 0.4rem;
}
.main-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.main-navbar .navbar-toggler .toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A428A;
  margin: 5px 0;
  transition: all 0.35s ease-in-out;
  border-radius: 50rem;
}

.main-navbar .dropdown-toggle::after {
  display: none;
}
.main-navbar .nav-dropdown {
  position: relative;
}
.main-navbar .nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-navbar .nav-dropdown > .nav-link .dropdown-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #f9d9d6;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
}
.main-navbar .nav-dropdown > .nav-link .dropdown-caret i {
  font-size: 0.6rem;
  color: #D92D20;
  transition: transform 0.35s ease;
}
.main-navbar .nav-dropdown > .nav-link:hover .dropdown-caret, .main-navbar .nav-dropdown > .nav-link[aria-expanded=true] .dropdown-caret {
  background: #D92D20;
}
.main-navbar .nav-dropdown > .nav-link:hover .dropdown-caret i, .main-navbar .nav-dropdown > .nav-link[aria-expanded=true] .dropdown-caret i {
  color: #fff;
  transform: rotate(180deg);
}
.main-navbar .nav-dropdown .nav-dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 240px;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(26, 66, 138, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #D92D20;
  padding: 0.5rem 0;
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-navbar .nav-dropdown .nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #D92D20;
}
.main-navbar .nav-dropdown .nav-dropdown-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  pointer-events: none;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: #1f1f1f;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
  position: relative;
  overflow: hidden;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #fadddb 0%, transparent 100%);
  transition: width 0.3s ease;
  z-index: 0;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item > * {
  position: relative;
  z-index: 1;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-icon {
  width: 34px;
  height: 34px;
  background: #fadddb;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease-in-out;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-icon i {
  font-size: 0.85rem;
  color: #D92D20;
  transition: all 0.35s ease-in-out;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-text span {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-text small {
  color: #aaa;
  font-size: 0.73rem;
  font-weight: 400;
  margin-top: 1px;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 0.7rem;
  transition: all 0.35s ease-in-out;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item:hover {
  color: #D92D20;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item:hover::before {
  width: 100%;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item:hover .item-icon {
  background: #D92D20;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item:hover .item-icon i {
  color: #fff;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item:hover .item-text span {
  color: #D92D20;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item:hover .item-arrow {
  color: #D92D20;
  transform: translateX(3px);
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item + .dropdown-nav-item {
  border-top: 1px solid #f4f6f9;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-footer {
  margin: 0.5rem 0.75rem 0.25rem;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(135deg, #1A428A, #143268);
  border-radius: 0.375rem;
  text-align: center;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-footer a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-footer a i {
  color: #D92D20;
}
.main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-footer a:hover {
  opacity: 0.85;
}
.main-navbar .nav-dropdown.is-open > .nav-dropdown-menu, .main-navbar .nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 991px) {
  .main-navbar .navbar-brand img {
    height: 58px;
    max-width: 190px;
  }
  .main-navbar .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #eee;
  }
  .main-navbar .navbar-nav .nav-link {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-navbar .navbar-nav .nav-link::after {
    display: none;
  }
  .main-navbar .nav-dropdown .nav-dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #D92D20;
    border-radius: 0 0.375rem 0.375rem 0;
    background: #f8f9fa;
    margin: 0.25rem 0 0.5rem 1rem;
    padding: 0.25rem 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .main-navbar .nav-dropdown .nav-dropdown-menu::before, .main-navbar .nav-dropdown .nav-dropdown-menu::after {
    display: none;
  }
  .main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item {
    padding: 0.5rem 1rem;
    border-top: none !important;
  }
  .main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-icon {
    width: 28px;
    height: 28px;
  }
  .main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-nav-item .item-arrow {
    display: none;
  }
  .main-navbar .nav-dropdown .nav-dropdown-menu .dropdown-footer {
    display: none;
  }
  .main-navbar .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }
}
.site-footer {
  background: #0d2d4a;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.site-footer h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: #D92D20;
  border-radius: 50rem;
}
.site-footer p, .site-footer address {
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: normal;
}
.site-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.site-footer .footer-contact-item i {
  color: #D92D20;
  margin-top: 4px;
  flex-shrink: 0;
}
.site-footer .footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.site-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  transition: all 0.35s ease-in-out;
}
.site-footer .footer-social a:hover {
  background: #D92D20;
  border-color: #D92D20;
  color: #fff;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links li {
  margin-bottom: 0.4rem;
}
.site-footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.35s ease-in-out;
}
.site-footer .footer-links li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: #D92D20;
}
.site-footer .footer-links li a:hover {
  color: #D92D20;
  padding-left: 4px;
}
.site-footer .footer-newsletter .newsletter-form {
  display: flex;
  gap: 0;
}
.site-footer .footer-newsletter .newsletter-form input {
  flex: 1;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 0.875rem;
}
.site-footer .footer-newsletter .newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter .newsletter-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter .newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}
.site-footer .footer-newsletter .newsletter-form button {
  background: #D92D20;
  border: none;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0.375rem 0.375rem 0;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.35s ease-in-out;
}
.site-footer .footer-newsletter .newsletter-form button:hover {
  background: #ad2419;
}

.footer-bottom {
  background: #092034;
  margin-top: 50px;
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a {
  color: #D92D20;
}
.footer-bottom a:hover {
  color: #e45348;
}

.btn-primary-custom {
  background: #D92D20;
  color: #fff;
  border: 2px solid #D92D20;
  border-radius: 50rem;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-primary-custom:hover {
  background: transparent;
  color: #D92D20;
}

.btn-outline-custom {
  background: transparent;
  color: #D92D20;
  border: 2px solid #D92D20;
  border-radius: 50rem;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s ease-in-out;
}
.btn-outline-custom:hover {
  background: #D92D20;
  color: #fff;
}

.btn-white-custom {
  background: #fff;
  color: #1A428A;
  border: 2px solid #fff;
  border-radius: 50rem;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  transition: all 0.35s ease-in-out;
}
.btn-white-custom:hover {
  background: transparent;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1A428A;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #D92D20;
  border-radius: 50rem;
}
.section-title p {
  color: #666666;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  -webkit-animation: preloaderFallback 0.45s ease 4s forwards;
          animation: preloaderFallback 0.45s ease 4s forwards;
}
#preloader .spinner-ring {
  width: 56px;
  height: 56px;
  border: 5px solid #f4bbb7;
  border-top-color: #D92D20;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
}
#preloader p {
  color: #1A428A;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes preloaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes preloaderFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.hero-carousel .carousel-item {
  height: 90vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 66, 138, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.hero-carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  text-align: left;
  max-width: 680px;
  width: 90%;
  padding: 0;
}
.hero-carousel .carousel-caption h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-carousel .carousel-caption p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.hero-carousel .carousel-caption .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease-in-out;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: #D92D20;
  border-color: #D92D20;
}
.hero-carousel .carousel-control-prev {
  left: 20px;
}
.hero-carousel .carousel-control-next {
  right: 20px;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}
.hero-carousel .carousel-indicators [data-bs-target].active {
  background: #D92D20;
}

@media (max-width: 576px) {
  .hero-carousel .carousel-item {
    height: 75vh;
  }
}
.about-section {
  padding: 80px 0;
  background: #f8f9fa;
}
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
}
.about-section .about-image-stack {
  position: relative;
}
.about-section .about-image-stack .img-main {
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
}
.about-section .about-image-stack .img-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: #D92D20;
  color: #fff;
  border-radius: 0.5rem;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.about-section .about-image-stack .img-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-section .about-image-stack .img-badge small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
}
.about-section .about-content {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  .about-section .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}
.about-section .about-content h2 {
  font-size: 2rem;
  color: #1A428A;
  margin-bottom: 1.25rem;
}
.about-section .about-content p {
  margin-bottom: 1rem;
  color: #666666;
}
.about-section .about-content .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.about-section .about-content .about-stats .stat-item {
  background: #fff;
  border-left: 4px solid #D92D20;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
}
.about-section .about-content .about-stats .stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1A428A;
  line-height: 1;
}
.about-section .about-content .about-stats .stat-item span {
  font-size: 0.85rem;
  color: #666666;
}

.services-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
}
.services-section .service-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f7;
  height: 100%;
}
.services-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.services-section .service-card .service-icon {
  width: 70px;
  height: 70px;
  background: #fbe5e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.35s ease-in-out;
}
.services-section .service-card .service-icon i {
  font-size: 1.8rem;
  color: #D92D20;
  transition: all 0.35s ease-in-out;
}
.services-section .service-card .service-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: all 0.35s ease-in-out;
}
.services-section .service-card h3 {
  font-size: 1.1rem;
  color: #1A428A;
  margin-bottom: 0.75rem;
}
.services-section .service-card p {
  font-size: 0.88rem;
  color: #666666;
  margin-bottom: 1.25rem;
}
.services-section .service-card:hover .service-icon {
  background: #D92D20;
}
.services-section .service-card:hover .service-icon i {
  color: #fff;
}

.appointment-section {
  padding: 80px 0;
  background: #f8f9fa;
}
@media (max-width: 768px) {
  .appointment-section {
    padding: 50px 0;
  }
}
.appointment-section .appointment-form-wrapper {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.appointment-section .appointment-form-wrapper h3 {
  color: #1A428A;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.appointment-section .appointment-form-wrapper .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1f1f1f;
  margin-bottom: 0.3rem;
}
.appointment-section .appointment-form-wrapper .form-control,
.appointment-section .appointment-form-wrapper .form-select {
  border: 1.5px solid #e0e7ef;
  border-radius: 0.375rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  transition: all 0.35s ease-in-out;
}
.appointment-section .appointment-form-wrapper .form-control:focus,
.appointment-section .appointment-form-wrapper .form-select:focus {
  border-color: #D92D20;
  box-shadow: 0 0 0 0.2rem rgba(217, 45, 32, 0.25);
}
.appointment-section .appointment-features {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  .appointment-section .appointment-features {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.appointment-section .appointment-features h3 {
  color: #1A428A;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.appointment-section .appointment-features .feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.appointment-section .appointment-features .feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: #fbe5e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.appointment-section .appointment-features .feature-item .feature-icon i {
  color: #D92D20;
  font-size: 1.1rem;
}
.appointment-section .appointment-features .feature-item .feature-text h5 {
  font-size: 1rem;
  color: #1A428A;
  margin-bottom: 0.3rem;
}
.appointment-section .appointment-features .feature-item .feature-text p {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
}

.gallery-section {
  padding: 80px 0;
  background: #1f1f1f;
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 0;
  }
}
.gallery-section .gallery-item {
  overflow: hidden;
  border-radius: 0.375rem;
  position: relative;
}
.gallery-section .gallery-item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 66, 138, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}
.gallery-section .gallery-item .gallery-overlay i {
  font-size: 1.8rem;
  color: #fff;
}
.gallery-section .gallery-item .gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 600;
}
.gallery-section .gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.dynamic-gallery-section {
  background: #f7fbff;
  padding: 80px 0;
}
.dynamic-gallery-section .section-title h2 {
  color: #1A428A;
}
.dynamic-gallery-section .section-title p {
  color: #66788a;
}
.dynamic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.dynamic-gallery-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #eaf2fb;
  box-shadow: 0 14px 34px rgba(26, 66, 138, 0.10);
  animation: galleryFadeUp .65s ease both;
}
.dynamic-gallery-item.gallery-featured {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 1 / 1;
}
.dynamic-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  transition: transform .55s ease, filter .55s ease;
}
.dynamic-gallery-item .gallery-overlay {
  opacity: 1;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, transparent 30%, rgba(13,45,74,.82) 100%);
}
.dynamic-gallery-item .gallery-overlay i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D92D20;
  color: #fff;
  font-size: 1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all .35s ease;
}
.dynamic-gallery-item .gallery-overlay span {
  color: #fff;
  font-size: .96rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
  transform: translateY(8px);
  transition: transform .35s ease;
}
.dynamic-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(26, 66, 138, 0.16);
}
.dynamic-gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}
.dynamic-gallery-item:hover .gallery-overlay i,
.dynamic-gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
  opacity: 1;
}
.gallery-empty-state {
  background: #fff;
}
.home-dynamic-gallery-section .home-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-dynamic-gallery-section .home-gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}
.home-gallery-empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 34px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
}
.home-gallery-empty i {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D92D20;
  color: #fff;
  font-size: 1.25rem;
}
.home-gallery-empty strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.home-gallery-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
@keyframes galleryFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1199px) {
  .dynamic-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-dynamic-gallery-section .home-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .dynamic-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .home-dynamic-gallery-section .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dynamic-gallery-item.gallery-featured {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .dynamic-gallery-grid {
    grid-template-columns: 1fr;
  }
  .home-dynamic-gallery-section .home-gallery-grid {
    grid-template-columns: 1fr;
  }
  .dynamic-gallery-item.gallery-featured {
    grid-column: auto;
  }
}

.blog-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }
}
.blog-section .blog-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease-in-out;
  height: 100%;
}
.blog-section .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.blog-section .blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-section .blog-card .blog-img {
  overflow: hidden;
  height: 200px;
}
.blog-section .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-section .blog-card .blog-body {
  padding: 1.5rem;
}
.blog-section .blog-card .blog-body .blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.75rem;
}
.blog-section .blog-card .blog-body .blog-meta a {
  color: #999;
}
.blog-section .blog-card .blog-body .blog-meta a:hover {
  color: #D92D20;
}
.blog-section .blog-card .blog-body .blog-meta i {
  margin-right: 3px;
  color: #D92D20;
}
.blog-section .blog-card .blog-body h4 {
  font-size: 1rem;
  color: #1A428A;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.blog-section .blog-card .blog-body h4 a {
  color: inherit;
}
.blog-section .blog-card .blog-body h4 a:hover {
  color: #D92D20;
}
.blog-section .blog-card .blog-body p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1.25rem;
}
.dynamic-blog-card .blog-img {
  display: block;
  aspect-ratio: 16 / 10;
  height: auto !important;
  background: #eef5fb;
}
.blog-category-pill,
.blog-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fbe5e4;
  color: #D92D20;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 10px;
  margin-bottom: .75rem;
}
.blog-tag {
  margin: 4px 5px 0 0;
}
.blog-detail-title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.3;
}
.blog-detail-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef5fb;
}
.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.team-section {
  padding: 80px 0;
  background: #f8f9fa;
}
@media (max-width: 768px) {
  .team-section {
    padding: 50px 0;
  }
}
.team-section .team-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.team-section .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.team-section .team-card .team-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 240px;
  background: #eef5fb;
}
.team-section .team-card .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.4s ease;
}
.team-section .team-card .team-body {
  padding: 1.25rem 1rem;
}
.team-section .team-card .team-body h4 {
  font-size: 1.05rem;
  color: #1A428A;
  margin-bottom: 0.25rem;
}
.team-section .team-card .team-body span {
  font-size: 0.82rem;
  color: #D92D20;
  font-weight: 600;
}
.team-section .team-card .team-body .team-social {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.team-section .team-card .team-body .team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #1A428A;
  font-size: 0.75rem;
  transition: all 0.35s ease-in-out;
}
.team-section .team-card .team-body .team-social a:hover {
  background: #D92D20;
  color: #fff;
}
.team-section .team-card:hover .team-img img {
  transform: scale(1.06);
}
.dynamic-doctors-section {
  background: #f7fbff;
}
.dynamic-doctor-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dynamic-doctor-card .team-img {
  aspect-ratio: 4 / 5;
  min-height: 0;
}
.dynamic-doctor-card .team-img img[src$=".svg"] {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 34px;
}
.dynamic-doctor-card .team-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dynamic-doctor-card .doctor-short-about {
  color: #66788a;
  font-size: .88rem;
  line-height: 1.55;
  margin: .65rem 0 0;
}
.doctor-speciality-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.doctor-speciality-tags small {
  background: #fbe5e4;
  color: #D92D20;
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 800;
  font-size: .72rem;
}
.doctor-nmc-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: .4rem auto .55rem;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #1A428A;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.3;
}
.doctor-nmc-number i {
  font-size: .78rem;
}
.dynamic-doctor-card .team-social {
  margin-top: auto !important;
  padding-top: 14px;
}

.subscribe-section {
  background: linear-gradient(135deg, #1A428A, #122d5f);
  padding: 60px 0;
  text-align: center;
}
.subscribe-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.subscribe-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.subscribe-section .subscribe-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.subscribe-section .subscribe-form input {
  flex: 1;
  border: none;
  border-radius: 50rem 0 0 50rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}
.subscribe-section .subscribe-form input:focus {
  outline: none;
}
.subscribe-section .subscribe-form button {
  background: #D92D20;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 50rem 50rem 0;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.35s ease-in-out;
}
.subscribe-section .subscribe-form button:hover {
  background: #ad2419;
}

.page-hero {
  background: linear-gradient(135deg, rgba(26, 66, 138, 0.9) 0%, rgba(14, 35, 74, 0.85) 100%), url("../images/background.png") center/cover no-repeat;
  padding: 90px 0 60px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.page-hero .breadcrumb {
  background: transparent;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.page-hero .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.page-hero .breadcrumb .breadcrumb-item a {
  color: #D92D20;
}
.page-hero .breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

#scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: #D92D20;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(217, 45, 32, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease-in-out;
  z-index: 999;
  border: none;
  cursor: pointer;
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
#scroll-top:hover {
  background: #1A428A;
  transform: translateY(-3px);
}

.stats-banner {
  background: #1A428A;
  padding: 40px 0;
}
.stats-banner .stat-box {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-banner .stat-box:last-child {
  border-right: none;
}
.stats-banner .stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #D92D20;
  line-height: 1;
  display: block;
}
.stats-banner .stat-box .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.3rem;
  display: block;
}

.contact-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }
}
.contact-section .contact-info-card {
  background: #1A428A;
  color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
}
.contact-section .contact-info-card h4 {
  color: #D92D20;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info-card .info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.contact-section .contact-info-card .info-item i {
  color: #D92D20;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-section .contact-form-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.contact-section .contact-form-card h4 {
  color: #1A428A;
  margin-bottom: 1.5rem;
}

.event-card {
  display: flex;
  gap: 1.25rem;
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.35s ease-in-out;
}
.event-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  transform: translateX(4px);
}
.event-card .event-date {
  min-width: 65px;
  height: 65px;
  background: #1A428A;
  color: #fff;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
}
.event-card .event-date span {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.event-card .event-date small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event-card .event-content h5 {
  color: #1A428A;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.event-card .event-content .event-meta {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.event-card .event-content .event-meta i {
  color: #D92D20;
  margin-right: 3px;
}
.event-card .event-content p {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
}
.dynamic-event-card {
  animation: galleryFadeUp .55s ease both;
}
.event-detail-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef5fb;
}
.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  color: #66788a;
  font-size: .9rem;
}
.event-detail-meta i {
  color: #D92D20;
  margin-right: 5px;
}
.event-detail-lead {
  color: #4f6074;
  font-size: 1.02rem;
  line-height: 1.75;
}
.event-side-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eef1f5;
  color: #1A428A;
  text-decoration: none;
}
.event-side-link strong {
  display: block;
  font-size: .95rem;
  line-height: 1.35;
}
.event-side-link small {
  color: #748294;
  font-size: .78rem;
}
.event-side-link:hover strong {
  color: #D92D20;
}

.text-primary-brand {
  color: #1A428A !important;
}

.text-secondary-brand {
  color: #D92D20 !important;
}

.text-accent {
  color: #D4AF37 !important;
}

.bg-primary-brand {
  background-color: #1A428A !important;
}

.bg-secondary-brand {
  background-color: #D92D20 !important;
}

.bg-light-custom {
  background-color: #f8f9fa !important;
}

.bg-footer {
  background-color: #0d2d4a !important;
}

.section-gap {
  padding: 80px 0;
}

.section-gap-sm {
  padding: calc(80px * 0.6) 0;
}

.rounded-xl {
  border-radius: 0.5rem !important;
}

.rounded-pill-custom {
  border-radius: 50rem !important;
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.shadow-hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14) !important;
}

.divider, .divider-left {
  width: 60px;
  height: 3px;
  background: #D92D20;
  border-radius: 50rem;
  margin: 0 auto 1rem;
}

.divider-left {
  margin-left: 0;
}

.overlay-dark {
  position: relative;
}
.overlay-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 66, 138, 0.6);
  z-index: 1;
}
.overlay-dark > * {
  position: relative;
  z-index: 2;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fade-in {
  -webkit-animation: fadeIn 0.6s ease both;
          animation: fadeIn 0.6s ease both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-embed {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 350px;
  border: none;
}

/* ===== FAQ Page Section ===== */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
  /* Custom accordion override */
  /* Category tabs */
  /* Sidebar CTA */
  /* Search bar */
}
.faq-section .faq-accordion .accordion-item {
  border: none;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(6, 71, 116, 0.07);
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}
.faq-section .faq-accordion .accordion-item:hover {
  box-shadow: 0 6px 25px rgba(6, 71, 116, 0.12);
}
.faq-section .faq-accordion .accordion-button {
  background: #ffffff;
  color: #1f1f1f;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.2rem 1.5rem;
  border-radius: 0.5rem !important;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: none;
  transition: all 0.35s ease-in-out;
  /* Question icon badge */
  /* Custom chevron — override Bootstrap arrow */
  /* Open state */
}
.faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button .q-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 128, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease-in-out;
}
.faq-section .faq-accordion .accordion-button .q-icon i {
  font-size: 0.85rem;
  color: #D92D20;
  transition: all 0.35s ease-in-out;
}
.faq-section .faq-accordion .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  background-image: none;
  width: 24px;
  height: 24px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: auto;
  flex-shrink: 0;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #1A428A 0%, #15356e 100%);
  color: #ffffff;
  border-radius: 0.5rem 0.5rem 0 0 !important;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) .q-icon {
  background: rgba(255, 255, 255, 0.2);
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) .q-icon i {
  color: #ffffff;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed)::after {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(-180deg);
}
.faq-section .faq-accordion .accordion-body {
  background: #ffffff;
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: #666666;
  line-height: 1.75;
  border-top: 2px solid #D92D20;
}
.faq-section .faq-accordion .accordion-body ul {
  padding-left: 0;
  list-style: none;
  margin-top: 0.5rem;
}
.faq-section .faq-accordion .accordion-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.faq-section .faq-accordion .accordion-body ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D92D20;
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.faq-section .faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.faq-section .faq-tab-btn {
  padding: 0.45rem 1.25rem;
  border-radius: 50rem;
  border: 2px solid #e0e7ef;
  background: #ffffff;
  color: #666666;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.faq-section .faq-tab-btn:hover, .faq-section .faq-tab-btn.active {
  background: #1A428A;
  border-color: #1A428A;
  color: #ffffff;
}
.faq-section .faq-sidebar-card {
  background: linear-gradient(160deg, #1A428A 0%, #163875 100%);
  border-radius: 16px;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}
.faq-section .faq-sidebar-card .icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.faq-section .faq-sidebar-card .icon-circle i {
  font-size: 1.5rem;
  color: #D92D20;
}
.faq-section .faq-sidebar-card .faq-sidebar-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}
.faq-section .faq-sidebar-card .faq-sidebar-icon i {
  color: #ffffff;
  font-size: 1.75rem;
}
.faq-section .faq-sidebar-card h3,
.faq-section .faq-sidebar-card h4 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.faq-section .faq-sidebar-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.faq-section .faq-contact-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}
.faq-section .faq-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.faq-section .faq-contact-list li a {
  color: #ffffff;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.faq-section .faq-contact-list li a:hover {
  color: #d8ecff;
}
.faq-section .faq-contact-list li i {
  color: #ffffff;
  width: 16px;
  flex: 0 0 16px;
}
.faq-section .faq-sidebar-card .btn-primary-custom {
  background: #ffffff;
  border-color: #ffffff;
  color: #1A428A;
  box-shadow: none;
}
.faq-section .faq-sidebar-card .btn-primary-custom:hover {
  background: #d8ecff;
  border-color: #d8ecff;
  color: #163875;
}
.faq-section .faq-search {
  position: relative;
  margin-bottom: 2rem;
}
.faq-section .faq-search input {
  width: 100%;
  border: 2px solid #e0e7ef;
  border-radius: 50rem;
  padding: 0.75rem 1.25rem 0.75rem 3rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  font-family: inherit;
}
.faq-section .faq-search input:focus {
  border-color: #D92D20;
}
.faq-section .faq-search i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.9rem;
}

/* ===== Packages Page Section ===== */
.packages-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.packages-section .package-card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.packages-section .package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.packages-section .package-card.featured {
  border: 2px solid #D92D20;
  position: relative;
}
.packages-section .package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #D92D20;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50rem;
}
.packages-section .package-header {
  background: linear-gradient(135deg, #1A428A 0%, #173b7c 100%);
  color: #ffffff;
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
}
.package-card.featured .packages-section .package-header {
  background: linear-gradient(135deg, #D92D20 0%, #b8261b 100%);
}
.packages-section .package-header h3 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.packages-section .package-header .package-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}
.packages-section .package-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.packages-section .package-price {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50rem;
  display: inline-block;
}
.packages-section .package-price .amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.packages-section .package-price .currency {
  font-size: 0.9rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}
.packages-section .package-price .per {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  text-align: center;
  margin-top: 2px;
}
.packages-section .package-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.packages-section .package-tests {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.packages-section .package-tests li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: #555;
  border-bottom: 1px dashed #f0f0f0;
}
.packages-section .package-tests li:last-child {
  border-bottom: none;
}
.packages-section .package-tests li i {
  color: #1A428A;
  margin-top: 3px;
  flex-shrink: 0;
}
.package-card.featured .packages-section .package-tests li i {
  color: #D92D20;
}
.packages-section .package-footer {
  padding: 0 1.75rem 1.75rem;
  display: flex;
  gap: 0.75rem;
}
.packages-section .package-footer .btn-primary-custom {
  flex: 1;
  justify-content: center;
  text-align: center;
}
.packages-section .btn-outline-brand {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: #1A428A;
  border: 2px solid #1A428A;
  border-radius: 50rem;
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s ease-in-out;
}
.packages-section .btn-outline-brand:hover {
  background: #1A428A;
  color: #ffffff;
}

.why-packages {
  padding: 70px 0;
  background: #ffffff;
}
.why-packages .why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #eee;
  transition: all 0.35s ease-in-out;
}
.why-packages .why-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.why-packages .why-card:hover .why-icon {
  background: #1A428A;
  color: #ffffff;
}
.why-packages .why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(26, 66, 138, 0.08);
  color: #1A428A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  transition: all 0.35s ease-in-out;
}
.why-packages .why-card h5 {
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 0.5rem;
}
.why-packages .why-card p {
  font-size: 0.88rem;
  color: #666666;
  margin: 0;
}

.packages-cta {
  background: linear-gradient(135deg, #1A428A 0%, #112b5a 100%);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}
.packages-cta h2 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.packages-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.btn-white {
  background: #ffffff;
  color: #1A428A;
  border: 2px solid #ffffff;
  border-radius: 50rem;
  padding: 0.6rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.35s ease-in-out;
}
.btn-white:hover {
  background: transparent;
  color: #ffffff;
}

/* ===== Videos Section ===== */
.videos-section {
  background: #ffffff;
  /* Hidden filter state */
  /* Subscribe CTA (YouTube Red Theme) */
  /* Responsive Media Queries */
}
.videos-section .video-filter-btn {
  background: transparent;
  border: 2px solid #ddd;
  color: #666666;
  border-radius: 50rem;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
  font-family: "Nunito", "Segoe UI", sans-serif;
}
.videos-section .video-filter-btn:hover, .videos-section .video-filter-btn.active {
  background: #1A428A;
  border-color: #1A428A;
  color: #ffffff;
}
.videos-section .video-card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.videos-section .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.videos-section .video-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
}
.videos-section .video-thumb-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.videos-section .video-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.videos-section .video-card-body .video-tag {
  display: inline-block;
  background: rgba(26, 66, 138, 0.08);
  color: #1A428A;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border-radius: 50rem;
  margin-bottom: 0.65rem;
}
.videos-section .video-card-body h5 {
  font-size: 0.98rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.videos-section .video-card-body p {
  font-size: 0.85rem;
  color: #666666;
  flex: 1;
  margin-bottom: 0.85rem;
}
.videos-section .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #aaa;
}
.videos-section .video-meta a {
  color: #D92D20;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.videos-section .video-meta a:hover {
  color: #b8261b;
}
.videos-section .video-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.videos-section .video-item.hidden {
  display: none !important;
}
.videos-section .video-subscribe-cta {
  background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
  border-radius: 0.5rem;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #ffffff;
  flex-wrap: wrap;
}
.videos-section .video-subscribe-cta > i {
  font-size: 2.8rem;
  opacity: 0.9;
  flex-shrink: 0;
}
.videos-section .video-subscribe-cta h5 {
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}
.videos-section .video-subscribe-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.88rem;
}
.videos-section .video-subscribe-cta > div {
  flex: 1;
}
.videos-section .btn-subscribe {
  background: #ffffff;
  color: #cc0000;
  border-radius: 50rem;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: all 0.35s ease-in-out;
}
.videos-section .btn-subscribe:hover {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
@media (max-width: 576px) {
  .videos-section .video-subscribe-cta {
    flex-direction: column;
    text-align: center;
  }
  .videos-section .video-subscribe-cta > i {
    font-size: 2rem;
  }
}

/* ===== Package Detail Page Styles ===== */
.pkg-hero-banner {
  background: linear-gradient(135deg, #1A428A 0%, #112b5a 100%);
  padding: 56px 0 40px;
  color: #ffffff;
}
.pkg-hero-banner.featured-pkg {
  background: linear-gradient(135deg, #D92D20 0%, #a32218 100%);
}
.pkg-hero-banner h1 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.pkg-hero-banner .subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.pkg-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50rem;
  padding: 0.6rem 1.4rem;
}
.pkg-price-pill .currency {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.pkg-price-pill .amount {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.pkg-price-pill .per {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.pkg-badge-popular {
  display: inline-block;
  background: #D4AF37;
  color: #1f1f1f;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50rem;
  margin-bottom: 0.8rem;
}

.pkg-breadcrumb {
  margin-top: 1.2rem;
}
.pkg-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}
.pkg-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.55);
}
.pkg-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Sidebar sticky booking card */
.booking-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.booking-card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.booking-card-header {
  background: linear-gradient(135deg, #1A428A, #163875);
  padding: 1.4rem 1.5rem;
  color: #ffffff;
}
.booking-card-header h4 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.booking-card-body {
  padding: 1.5rem;
}
.booking-card-body .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #474747;
}
.booking-card-body .form-control,
.booking-card-body .form-select {
  border-radius: 0.375rem;
  font-size: 0.9rem;
  border-color: #ced4da;
}
.booking-card-body .form-control:focus,
.booking-card-body .form-select:focus {
  border-color: #D92D20;
  box-shadow: 0 0 0 0.2rem rgba(217, 45, 32, 0.25);
}

.booking-price-summary {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.2rem;
}
.booking-price-summary .label {
  font-size: 0.85rem;
  color: #666666;
}
.booking-price-summary .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A428A;
}

/* Tests table */
.tests-section {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.tests-section h4 {
  color: #1A428A;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.test-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.test-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed #f0f0f0;
  font-size: 0.92rem;
  color: #4d4d4d;
}
.test-list li:last-child {
  border-bottom: none;
}
.test-list li i {
  color: #1A428A;
  flex-shrink: 0;
  margin-top: 3px;
}
.test-list li .test-name {
  font-weight: 600;
}
.test-list li .test-desc {
  font-size: 0.82rem;
  color: #949494;
  display: block;
}

.test-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #1A428A;
  border-radius: 50rem;
  padding: 2px 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Benefits */
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #eee;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s;
}
.benefit-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 66, 138, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A428A;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item h6 {
  font-size: 0.92rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #1f1f1f;
}
.benefit-item p {
  font-size: 0.82rem;
  color: #666666;
  margin: 0;
}

/* Other packages */
.other-pkg-card {
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 1.2rem;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}
.other-pkg-card:hover {
  border-color: #1A428A;
  box-shadow: 0 4px 16px rgba(26, 66, 138, 0.1);
}
.other-pkg-card h6 {
  font-size: 0.9rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 0.15rem;
}
.other-pkg-card .price {
  font-size: 0.85rem;
  color: #D92D20;
  font-weight: 700;
}
.other-pkg-card .icon {
  width: 38px;
  height: 38px;
  background: rgba(26, 66, 138, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A428A;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* FAQ accordion inside packages */
.pkg-faq .accordion-item {
  border: 1px solid #eee;
  border-radius: 0.375rem !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.pkg-faq .accordion-button {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f1f1f;
  background: #ffffff;
}
.pkg-faq .accordion-button:not(.collapsed) {
  color: #1A428A;
  background: rgba(26, 66, 138, 0.08);
  box-shadow: none;
}
.pkg-faq .accordion-button::after {
  filter: none;
}
.pkg-faq .accordion-body {
  font-size: 0.88rem;
  color: #666666;
}

/* ── Message / Chairman Page-specific styles ── */
.chairman-section {
  padding: 80px 0;
  background: #ffffff;
}
.chairman-section .chairman-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 66, 138, 0.1);
}
.chairman-section .chairman-portrait-wrap {
  position: relative;
  background: linear-gradient(160deg, #1A428A 0%, #143268 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chairman-section .chairman-portrait-wrap .portrait-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #D92D20;
  padding: 4px;
  background: #ffffff;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.chairman-section .chairman-portrait-wrap .portrait-ring img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
}
.chairman-section .chairman-portrait-wrap h3 {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.chairman-section .chairman-portrait-wrap span {
  color: #D92D20;
  font-size: 0.9rem;
  font-weight: 700;
}
.chairman-section .chairman-portrait-wrap p.bio {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.7;
}
.chairman-section .signature-block {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.chairman-section .signature-block .sig-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}
.chairman-section .signature-block .sig-item i {
  color: #D92D20;
}
.chairman-section .chairman-message-body {
  padding: 3rem 2.5rem;
}
.chairman-section .quote-opener {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: linear-gradient(135deg, rgba(0, 0, 255, 0.08), rgba(255, 0, 0, 0.06));
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #D92D20;
}
.chairman-section .quote-opener::before {
  content: "“";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  font-size: 4rem;
  color: #D92D20;
  line-height: 1;
  font-family: Georgia, serif;
}
.chairman-section .quote-opener p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #1A428A;
  font-weight: 600;
  line-height: 1.7;
}
.chairman-section .message-text p {
  color: #666666;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.chairman-section .chairman-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed #e0e7ef;
}
.chairman-section .chairman-signature .sig-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #D92D20;
  overflow: hidden;
  flex-shrink: 0;
}
.chairman-section .chairman-signature .sig-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chairman-section .chairman-signature .sig-name {
  font-size: 1rem;
  font-weight: 800;
  color: #1A428A;
  display: block;
}
.chairman-section .chairman-signature .sig-title {
  font-size: 0.8rem;
  color: #D92D20;
  font-weight: 700;
}
.chairman-section .highlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.chairman-section .highlight-stats .h-stat {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-bottom: 3px solid #D92D20;
}
.chairman-section .highlight-stats .h-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1A428A;
  line-height: 1;
}
.chairman-section .highlight-stats .h-stat small {
  font-size: 0.75rem;
  color: #949494;
  margin-top: 0.3rem;
  display: block;
}
.dynamic-message-section {
  background: #f7fbff;
}
.dynamic-message-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  border: 1px solid #e4edf6;
}
.dynamic-message-card .message-profile-panel {
  position: relative;
  background: linear-gradient(160deg, #1A428A 0%, #143268 100%);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dynamic-message-card .message-profile-panel:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(217,45,32,.18);
  right: -80px;
  top: -70px;
}
.dynamic-message-card .message-profile-panel .portrait-ring {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 6px solid #D92D20;
  padding: 5px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}
.dynamic-message-card .message-profile-panel .portrait-ring img,
.message-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.dynamic-message-card .message-profile-panel h3 {
  color: #fff;
  font-weight: 900;
  margin: 1.4rem 0 .25rem;
}
.dynamic-message-card .message-profile-panel span {
  color: #fff;
  background: rgba(217,45,32,.9);
  border-radius: 999px;
  padding: .38rem .85rem;
  font-size: .82rem;
  font-weight: 800;
}
.dynamic-message-card .message-profile-panel .bio {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: .9rem;
  margin: 1.25rem 0 0;
}
.message-profile-meta {
  width: 100%;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.22);
  display: grid;
  gap: .55rem;
  color: rgba(255,255,255,.82);
  font-size: .84rem;
  text-align: left;
}
.message-profile-meta i {
  color: #D92D20;
  margin-right: .45rem;
}
.dynamic-message-body {
  background: #fff;
}
.message-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.message-mini-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #e4edf6;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(26,66,138,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.message-mini-card:hover {
  border-color: rgba(217, 45, 32, .28);
  box-shadow: 0 16px 34px rgba(26,66,138,.11);
  transform: translateY(-2px);
}
.message-mini-card img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 3px solid #fbe5e4;
}
.message-mini-card h4 {
  color: #1A428A;
  font-weight: 900;
  margin: 0 0 3px;
  font-size: 1rem;
}
.message-mini-card span {
  color: #D92D20;
  font-weight: 800;
  font-size: .82rem;
}
.message-mini-card p {
  color: #66788a;
  line-height: 1.55;
  font-size: .88rem;
  margin: .45rem 0 0;
}
@media (max-width: 991px) {
  .dynamic-message-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .dynamic-message-card .message-profile-panel,
  .dynamic-message-body {
    padding: 2rem 1.25rem;
  }
  .message-mini-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .message-mini-card img {
    margin: 0 auto;
  }
}

/* ===== Blog Details Page Styles ===== */
.blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.blog-meta-bar span {
  font-size: 0.85rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-meta-bar span i {
  color: #1A428A;
}

.blog-category-badge {
  display: inline-block;
  background: #D92D20;
  color: #ffffff;
  border-radius: 20px;
  padding: 0.25rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-content h3 {
  color: #1A428A;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.blog-content p {
  color: #424242;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.blog-content ul {
  color: #424242;
  line-height: 1.85;
  padding-left: 1.4rem;
  margin-bottom: 1.1rem;
}
.blog-content ul li {
  margin-bottom: 0.5rem;
}

.blog-callout {
  background: linear-gradient(135deg, rgba(26, 66, 138, 0.08), rgba(26, 66, 138, 0.03));
  border-left: 4px solid #1A428A;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.blog-callout p {
  margin: 0;
  color: #1f1f1f;
  font-style: italic;
}
.blog-callout strong {
  color: #1A428A;
}

.blog-author-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-top: 2rem;
}

.blog-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1A428A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.blog-tag {
  display: inline-block;
  background: #eee;
  color: #666666;
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  margin: 0.2rem;
}

.related-blog-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.related-blog-card:last-of-type {
  border-bottom: none;
}

.related-blog-img {
  width: 70px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

.related-blog-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1f1f1f;
  text-decoration: none;
  line-height: 1.3;
  transition: all 0.35s ease-in-out;
}
.related-blog-title:hover {
  color: #1A428A;
}

.related-blog-date {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.25rem;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}
.sidebar-widget h5 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-bottom: 2px solid #1A428A;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}

.share-fb {
  background: #1877f2;
  color: #ffffff;
}
.share-fb:hover {
  background: #1465ce;
  color: #ffffff;
}

.share-wa {
  background: #25d366;
  color: #ffffff;
}
.share-wa:hover {
  background: #1fb357;
  color: #ffffff;
}

/* ===== Service Details Page Styles ===== */
.service-stat-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border-top: 4px solid #1A428A;
}
.service-stat-card .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #1A428A;
  line-height: 1;
}
.service-stat-card .stat-label {
  font-size: 0.82rem;
  color: #666666;
  margin-top: 0.25rem;
}

.service-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1A428A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.speciality-detail-page {
  background: #f7fbff;
}
.speciality-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  background: #fff;
  border: 1px solid #e4edf6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(26, 66, 138, 0.08);
}
.speciality-overview-icon-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(217,45,32,.10), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(26,66,138,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  pointer-events: none;
}
.speciality-overview-media {
  min-height: 360px;
  background: #eaf2fb;
}
.speciality-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speciality-overview-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 52px 42px;
  text-align: center;
}
.speciality-main-icon {
  width: 116px;
  height: 116px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbe5e4;
  color: #D92D20;
  border: 8px solid #fff;
  box-shadow: 0 18px 42px rgba(217,45,32,.18);
  animation: specialityIconFloat 3.8s ease-in-out infinite;
}
.speciality-main-icon i {
  font-size: 3.1rem;
}
@keyframes specialityIconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}
.speciality-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #D92D20;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
  margin-bottom: 12px;
}
.speciality-overview-content h2 {
  color: #1A428A;
  font-weight: 900;
  margin-bottom: 14px;
}
.speciality-overview-content .lead {
  color: #455b73;
  font-weight: 600;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.speciality-description {
  color: #555;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
}
.speciality-description p:last-child {
  margin-bottom: 0;
}
.speciality-panel,
.speciality-contact-card {
  background: #fff;
  border: 1px solid #e4edf6;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(26, 66, 138, 0.07);
}
.speciality-section-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.speciality-section-title > span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbe5e4;
  color: #D92D20;
  flex: 0 0 48px;
}
.speciality-section-title h3 {
  color: #1A428A;
  font-weight: 900;
  margin: 0 0 5px;
}
.speciality-section-title p {
  margin: 0;
  color: #66788a;
}
.speciality-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.speciality-feature-grid div {
  background: #f7fbff;
  border: 1px solid #e4edf6;
  border-radius: 10px;
  padding: 18px;
}
.speciality-feature-grid i {
  color: #D92D20;
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.speciality-feature-grid strong,
.speciality-feature-grid small {
  display: block;
}
.speciality-feature-grid strong {
  color: #1A428A;
  margin-bottom: 6px;
}
.speciality-feature-grid small {
  color: #66788a;
  line-height: 1.55;
}
.speciality-contact-card h4 {
  color: #1A428A;
  font-weight: 900;
}
.speciality-contact-card p {
  color: #66788a;
}
.speciality-contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid #e4edf6;
  color: #1A428A;
  font-weight: 800;
}
.speciality-doctor-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e4edf6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 66, 138, 0.06);
}
.speciality-doctor-card .doctor-photo {
  aspect-ratio: 1 / 1;
  background: #eef5fb;
}
.speciality-doctor-card .doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speciality-doctor-card .doctor-info {
  padding: 18px;
}
.speciality-doctor-card h4 {
  color: #1A428A;
  font-size: 1.02rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.speciality-doctor-card span {
  display: block;
  color: #D92D20;
  font-weight: 800;
  font-size: .86rem;
  margin-bottom: 10px;
}
.speciality-doctor-card p {
  color: #66788a;
  font-size: .9rem;
  line-height: 1.55;
}
.empty-speciality-doctors {
  text-align: center;
  border: 1px dashed #b8c9dc;
  border-radius: 12px;
  padding: 34px;
  color: #66788a;
  background: #f7fbff;
}
.empty-speciality-doctors i {
  display: block;
  color: #D92D20;
  font-size: 2rem;
  margin-bottom: 10px;
}
.empty-speciality-doctors strong {
  display: block;
  color: #1A428A;
  font-size: 1.05rem;
}
@media (max-width: 991px) {
  .speciality-overview-card {
    grid-template-columns: 1fr;
  }
  .speciality-feature-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .speciality-overview-content,
  .speciality-panel,
  .speciality-contact-card {
    padding: 22px;
  }
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1f1f1f;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1A428A;
  font-size: 0.8rem;
  transition: all 0.35s ease-in-out;
}
.faq-item p {
  margin: 0.75rem 0 0;
  color: #575757;
  font-size: 0.95rem;
  line-height: 1.75;
}

details[open] .faq-item summary::after {
  content: "\f068";
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-service-link:hover, .sidebar-service-link.active {
  background: #1A428A;
  color: #ffffff;
}
.sidebar-service-link i {
  width: 20px;
  text-align: center;
}

.process-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.process-step .step-text h5 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #1f1f1f;
}
.process-step .step-text p {
  color: #666666;
}

.step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1A428A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.emergency-banner {
  background: linear-gradient(135deg, #D92D20 0%, #ae241a 100%);
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.emergency-banner i {
  font-size: 2rem;
}
