/* ==========================================================================
   Moe Thee Clinic & Hospital - Modern Medical Green Theme
   Matching UI Design Specifications from PDF Mockups
   ========================================================================== */

:root {
  --mt-primary: #00a651;
  --mt-primary-hover: #008b43;
  --mt-primary-dark: #026631;
  --mt-primary-light: #e8f7ee;
  --mt-primary-ultra-light: #f4fbf7;
  --mt-primary-border: #b8e6cb;
  --mt-accent-red: #e53935;
  --mt-accent-red-hover: #c62828;
  --mt-text-dark: #222222;
  --mt-text-muted: #555555;
  --mt-text-light: #777777;
  --mt-bg-gray: #f8faf9;
  --mt-card-border: #e2ede6;
  --mt-radius-sm: 8px;
  --mt-radius-md: 12px;
  --mt-radius-lg: 18px;
  --mt-radius-full: 9999px;
  --mt-shadow-sm: 0 2px 8px rgba(0, 166, 81, 0.08);
  --mt-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --mt-shadow-hover: 0 8px 24px rgba(0, 166, 81, 0.16);
  --mt-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--mt-font);
  color: var(--mt-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Header & Navigation (Solid Brand Green)
   -------------------------------------------------------------------------- */
.mt-header {
  background: #00a651;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
}

.mt-header-inner {
  position: relative;
  padding-top: 14px;
  padding-bottom: 12px;
}

.mt-header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.mt-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mt-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Floating White Emergency Hotline Card attached to top edge */
.mt-header-hotline-card {
  position: absolute;
  top: 0;
  right: 15px;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  padding: 8px 22px 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
}

.mt-header-hotline-card:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.mt-hotline-card-icon {
  font-size: 26px;
  color: #00a651;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-hotline-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mt-hotline-card-number {
  font-size: 19px;
  font-weight: 800;
  color: #00a651;
  letter-spacing: 0.5px;
}

.mt-hotline-card-label {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
}

/* Mobile Toggle Button */
.mt-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  color: #ffffff;
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.mt-mobile-toggle:hover,
.mt-mobile-toggle:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
}

/* Mobile Nav Drawer */
.mt-mobile-nav {
  display: none;
  background: #02592b;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 18px 20px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: mtSlideDown 0.25s ease-out;
  margin-top: 10px;
}

@keyframes mtSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mt-mobile-nav.show {
  display: block;
}

.mt-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mt-mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mt-mobile-menu-item:last-child {
  border-bottom: none;
}

.mt-mobile-menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px;
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mt-mobile-menu-item a:hover,
.mt-mobile-menu-item.active a {
  color: #38ef7d;
  padding-left: 10px;
}

.mt-mobile-menu-item.active a {
  font-weight: 700;
}

.mt-mobile-hotline-btn {
  margin-top: 16px;
  background: #ffffff;
  color: #00a651 !important;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: var(--mt-radius-full);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation Links on Green Header */
.mt-header-nav-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.mt-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.mt-nav-item a {
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease, text-shadow 0.2s ease;
  position: relative;
  padding: 6px 2px;
  letter-spacing: 0.2px;
}

.mt-nav-item a:hover {
  color: #ffffff;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.mt-nav-item.active a {
  color: #ffffff;
  font-weight: 700;
}

.mt-nav-item.active a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

.mt-hotline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mt-primary-light);
  color: var(--mt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mt-hotline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mt-hotline-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--mt-primary);
  letter-spacing: 0.5px;
}

.mt-hotline-label {
  font-size: 11px;
  color: var(--mt-text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Page Banners (Hero / Inner Headers with Custom Figma Banner Graphics)
   -------------------------------------------------------------------------- */
.mt-page-banner {
  position: relative;
  padding: 34px 0;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #00a651;
}

.mt-page-banner::before {
  display: none;
}

.mt-page-banner h1,
.mt-page-banner h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.mt-page-banner p {
  display: none;
}

.mt-about-banner {
  background-image: url('../Resources/banners/about_banner.png');
}

.mt-updates-banner {
  background-image: url('../Resources/banners/updates_banner.png');
}

.mt-services-banner {
  background-image: url('../Resources/banners/services_banner.png');
}

.mt-facilities-banner {
  background-image: url('../Resources/banners/facilities_banner.png');
}

.mt-contact-banner {
  background-image: url('../Resources/banners/contact_banner.png');
}

/* --------------------------------------------------------------------------
   Home Hero Section (Exact Match to Design)
   -------------------------------------------------------------------------- */
.mt-home-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
  padding-bottom: 60px;
  overflow: visible;
}

.mt-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 166, 81, 0.82) 0%,
      rgba(0, 166, 81, 0.55) 45%,
      rgba(0, 166, 81, 0.1) 75%,
      rgba(0, 0, 0, 0.02) 100%);
  z-index: 1;
}

/* Hero banner slider -------------------------------------------------------
   Slides stack at z-index 0, below the ::before gradient (1) and the hero
   content (2), so adding them changes nothing about the existing treatment. */
.mt-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mt-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mt-hero-slide.is-active {
  opacity: 1;
}

.mt-hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.mt-hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}

.mt-hero-dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.mt-hero-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

/* Respect users who ask the OS to reduce motion: show the first banner only. */
@media (prefers-reduced-motion: reduce) {
  .mt-hero-slide {
    transition: none;
  }
}

.mt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 60px 0 30px;
}

.mt-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mt-hero-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Overlapping Action Buttons at Bottom of Hero */
.mt-hero-action-container {
  position: relative;
  z-index: 10;
  margin-top: -38px;
  margin-bottom: 10px;
}

.mt-hero-action-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.mt-hero-action-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 260px;
  min-height: 72px;
  padding: 14px 34px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mt-hero-btn-red {
  background: #d81515;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(216, 21, 21, 0.35);
}

.mt-hero-btn-red:hover {
  background: #b90e0e;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(216, 21, 21, 0.45);
}

.mt-hero-btn-green {
  background: #00a651;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 166, 81, 0.35);
}

.mt-hero-btn-green:hover {
  background: #008b43;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 166, 81, 0.45);
}

.mt-hero-action-main {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.mt-hero-action-sub {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 3px;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Myanmar Motto Ribbon Banner (Clean White with Green Cross & Text)
   -------------------------------------------------------------------------- */
.mt-motto-ribbon {
  background: #ffffff;
  color: #008b43;
  padding: 28px 15px;
  text-align: center;
  border-bottom: 1px solid #e2f0e8;
  position: relative;
  z-index: 2;
}

.mt-motto-ribbon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mt-motto-cross {
  font-size: 48px;
  font-weight: 900;
  color: #00e664;
  line-height: 1;
  user-select: none;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 230, 100, 0.25);
}

.mt-motto-text {
  font-size: 28px;
  font-weight: 700;
  color: #008b43;
  letter-spacing: 0.3px;
  line-height: 1.4;
  font-family: 'Padauk', 'Pyidaungsu', 'Myanmar Text', sans-serif;
}

/* --------------------------------------------------------------------------
   Combined Quick Access & About Section (Mint Green Theme)
   -------------------------------------------------------------------------- */
.mt-quick-access-section {
  background-color: #cbebd8;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.mt-quick-access-title {
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 45px;
  letter-spacing: -0.5px;
}

.mt-quick-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.mt-quick-card-pill {
  background: #ffffff;
  border-radius: 22px;
  min-height: 105px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #00a651 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0, 80, 40, 0.09);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.25;
}

.mt-quick-card-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 166, 81, 0.2);
  color: #008b43 !important;
}

.mt-about-block-wrap {
  position: relative;
  padding: 10px 0 10px 45px;
}

.mt-about-side-cross {
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 44px;
  font-weight: 900;
  color: #00d659;
  line-height: 1;
  user-select: none;
}

.mt-about-block-title {
  font-size: 34px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 18px;
}

.mt-about-block-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: #222222;
  font-weight: 500;
  text-align: right;
  margin-bottom: 0;
}

.mt-lobby-frame-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.mt-lobby-frame {
  background: #ffffff;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.mt-lobby-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
}

.mt-lobby-floating-cross {
  position: absolute;
  right: -24px;
  bottom: 10px;
  font-size: 64px;
  font-weight: 900;
  color: #00d659;
  line-height: 1;
  user-select: none;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0, 214, 89, 0.3);
}

/* --------------------------------------------------------------------------
   About Us Page - Story Zigzag Section (Matching UI PDF)
   -------------------------------------------------------------------------- */
.mt-about-story-section {
  padding: 60px 0 70px;
  background: #ffffff;
}

.mt-about-story-container {
  max-width: 1260px;
}

.mt-about-story-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mt-about-story-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.mt-about-story-text-wrap {
  width: 100%;
  max-width: 560px;
}

.mt-about-story-title {
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 22px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.mt-about-story-text {
  font-size: 18px;
  line-height: 1.65;
  color: #111111;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   About Us Page: Vision, Mission & Core Values Section (Matching Screenshot)
   -------------------------------------------------------------------------- */
.mt-vm-values-section {
  background-color: #cbebd8;
  padding: 65px 0 75px;
}

.mt-vm-container {
  max-width: 960px;
}

.mt-vm-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 28px 32px;
  box-shadow: 0 10px 28px rgba(0, 80, 40, 0.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt-vm-card:hover,
.mt-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 166, 81, 0.18);
}

.mt-vm-icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mt-about-icon-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mt-about-icon-img {
  width: 34px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.mt-vm-title {
  font-size: 22px;
  font-weight: 800;
  color: #00a651;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.mt-vm-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #222222;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.mt-core-values-heading {
  font-size: 34px;
  font-weight: 900;
  color: #111111;
  text-align: center;
  margin: 48px 0 34px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.mt-value-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 16px 26px;
  box-shadow: 0 10px 28px rgba(0, 80, 40, 0.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt-value-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mt-value-title {
  font-size: 17px;
  font-weight: 800;
  color: #00a651;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.mt-value-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #222222;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* --------------------------------------------------------------------------
   About Us Page: Partnerships & CSR Section (Matching Screenshot)
   -------------------------------------------------------------------------- */
.mt-partner-section {
  background-color: #cbebd8;
  padding: 65px 0 75px;
}

.mt-partner-container {
  max-width: 1240px;
}

.mt-partner-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 80, 40, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 166, 81, 0.18);
}

.mt-partner-header {
  padding: 32px 24px 20px;
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mt-partner-title {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin: 0;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.25;
}

.mt-partner-img-wrap {
  width: 100%;
  aspect-ratio: 570 / 437;
  overflow: hidden;
  margin: 0;
}

.mt-partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mt-partner-body {
  padding: 26px 26px 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.mt-partner-desc {
  font-size: 15px;
  line-height: 1.68;
  color: #222222;
  font-weight: 500;
  text-align: justify;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Medical Services Page (Alternating 12 Service Strips - Matching UI PDF)
   -------------------------------------------------------------------------- */
.mt-service-intro-strip {
  background-color: #cbebd8;
  padding: 45px 0 25px;
  text-align: center;
}

.mt-services-intro-text {
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  line-height: 1.6;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mt-service-strip {
  padding: 40px 0;
}

.mt-strip-mint {
  background-color: #cbebd8;
}

.mt-strip-white {
  background-color: #ffffff;
}

.mt-service-container {
  max-width: 1200px;
}

.mt-service-img-wrap {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.mt-service-img {
  width: 100%;
  height: auto;
  display: block;
}

.mt-service-info-box {
  width: 100%;
  max-width: 400px;
}

.mt-service-title {
  font-size: 21px;
  font-weight: 800;
  color: #00a651;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.mt-service-icon-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #a9deb9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.mt-service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mt-service-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #111111;
  font-weight: 400;
  text-align: left;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Myanmar Motto Ribbon (Clean White with Green Cross & Text)
   -------------------------------------------------------------------------- */
.mt-motto-ribbon {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #e8f3ec;
}

.mt-motto-ribbon-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.mt-motto-cross {
  color: #00a651;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.mt-motto-text {
  font-size: 25px;
  font-weight: 700;
  color: #00a651;
  letter-spacing: 0.2px;
}

@media (max-width: 767.98px) {
  .mt-motto-cross {
    font-size: 24px;
  }

  .mt-motto-text {
    font-size: 18px;
  }
}

/* --------------------------------------------------------------------------
   Section White Spacing Strip
   -------------------------------------------------------------------------- */
.mt-section-white-spacer {
  background-color: #ffffff;
  height: 55px;
  width: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   Quick Access Services & About Moe Thee Section (Matching Screenshot)
   -------------------------------------------------------------------------- */
.mt-quick-access-section {
  background-color: #cbebd8;
  padding: 60px 0 0;
  position: relative;
}

.mt-quick-container {
  max-width: 1260px;
}

.mt-quick-access-title {
  font-size: 42px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 45px;
  letter-spacing: -0.5px;
}

.mt-quick-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.mt-quick-card-pill {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 18px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 80, 40, 0.08);
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mt-quick-card-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 166, 81, 0.22);
}

.mt-quick-card-pill span {
  font-size: 21px;
  font-weight: 800;
  color: #00a651;
  text-align: center;
  line-height: 1.25;
}

.mt-about-block-wrap {
  position: relative;
  padding-left: 40px;
  padding-bottom: 50px;
}

.mt-about-side-cross {
  position: absolute;
  left: 0;
  top: 4px;
  width: 46px;
  height: 46px;
  display: block;
  user-select: none;
  pointer-events: none;
}

.mt-about-block-title {
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.mt-about-block-desc {
  font-size: 15.5px;
  line-height: 1.68;
  color: #111111;
  font-weight: 500;
  margin: 0;
  text-align: justify;
  max-width: 480px;
}

.mt-lobby-frame-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0px;
}

.mt-lobby-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

.mt-lobby-floating-cross {
  position: absolute;
  right: -85px;
  bottom: 110px;
  width: 86px;
  height: 86px;
  display: block;
  z-index: 3;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .mt-about-block-wrap {
    margin-bottom: 35px;
  }

  .mt-lobby-floating-cross {
    right: 0;
    bottom: -10px;
  }
}

/* --------------------------------------------------------------------------
   Facilities Page Styles (Matching UI PDF)
   -------------------------------------------------------------------------- */
.mt-facilities-page-section {
  background-color: #cbebd8;
  padding: 50px 0 70px;
}

.mt-facilities-intro-wrap {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 45px;
}

.mt-facilities-intro-text {
  font-size: 16px;
  line-height: 1.75;
  color: #222222;
  font-weight: 500;
  margin: 0;
}

.mt-facility-grid-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.mt-facility-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 166, 81, 0.2);
}

.mt-facility-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
}

.mt-facility-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mt-facility-grid-card:hover .mt-facility-card-photo {
  transform: scale(1.03);
}

.mt-facility-card-label-box {
  padding: 16px 14px 18px;
  background: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
}

.mt-facility-card-name {
  font-size: 15px;
  font-weight: 800;
  color: #00a651;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Facilities Detail Page (2x2 High-Res Gallery - Matching UI PDF)
   -------------------------------------------------------------------------- */
.mt-facility-detail-section {
  background: #ffffff;
  border-top: 4px solid #00a651;
  padding: 35px 0 60px;
}

.mt-facility-detail-header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  min-height: 50px;
  padding: 0 60px;
}

.mt-detail-back-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00a651;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.25);
  transition: all 0.3s ease;
}

.mt-detail-back-btn:hover {
  background: #008b43;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 166, 81, 0.35);
}

.mt-detail-page-title {
  font-size: 26px;
  font-weight: 800;
  color: #00a651;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: center;
}

.mt-facility-detail-grid {
  margin-top: 10px;
}

.mt-detail-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
  background: #f4fbf7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mt-detail-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.mt-detail-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mt-detail-img-card:hover .mt-detail-photo {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   General Facilities Catalog Cards
   -------------------------------------------------------------------------- */
.mt-facility-card {
  background: #ffffff;
  border-radius: var(--mt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mt-shadow-sm);
  border: 1px solid var(--mt-card-border);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mt-facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mt-shadow-hover);
  border-color: var(--mt-primary-border);
}

.mt-facility-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mt-facility-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mt-facility-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.mt-facility-card-desc {
  font-size: 13.5px;
  color: var(--mt-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Home Page: Facilities Showcase Section (Staggered Grid & Bold Statement)
   -------------------------------------------------------------------------- */
.mt-facilities-showcase-section {
  background-color: #cbebd8;
  padding: 60px 0 70px;
}

.mt-facilities-title {
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 45px;
  letter-spacing: -0.5px;
}

.mt-facilities-staggered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.mt-facility-subcol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mt-facility-subcol-centered {
  justify-content: center;
}

.mt-facility-card-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 10px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s ease;
  height: 100%;
}

.mt-facility-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 166, 81, 0.18);
}

.mt-facility-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.mt-facility-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mt-facility-label {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-top: 10px;
  line-height: 1.25;
  text-align: center;
}

.mt-facilities-statement-text {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  line-height: 1.45;
  letter-spacing: -0.2px;
  padding-left: 20px;
}

@media (max-width: 991.98px) {
  .mt-facilities-statement-text {
    padding-left: 0;
    margin-top: 25px;
    font-size: 20px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Why Choose Us Section (Exact Match to Design: 3 Top, 2 Bottom Centered)
   -------------------------------------------------------------------------- */
.mt-why-choose-section {
  background-color: #cbebd8;
  padding: 65px 0 80px;
  position: relative;
}

.mt-why-title {
  font-size: 38px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 45px;
  letter-spacing: -0.5px;
}

.mt-why-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.mt-why-grid-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.mt-why-grid-bottom .mt-why-card-pill {
  width: calc(33.333% - 16px);
}

.mt-why-card-pill {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 80, 40, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 215px;
}

.mt-why-card-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 166, 81, 0.18);
}

.mt-why-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00a651;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
}

.mt-why-card-heading {
  font-size: 18.5px;
  font-weight: 800;
  color: #00a651;
  margin-bottom: 12px;
  line-height: 1.25;
}

.mt-why-card-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #444444;
  font-weight: 500;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Stats Counter Bar (Matching UI Design with Hands Background)
   -------------------------------------------------------------------------- */
.mt-stats-section {
  background: #024e25 url('../Resources/home-img/image.png') center center / cover no-repeat;
  color: #ffffff;
  padding: 45px 0;
  position: relative;
}

.mt-stat-item-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mt-stat-circle-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
}

.mt-stat-text-box {
  display: flex;
  flex-direction: column;
}

.mt-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.mt-stat-label {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Location & Map Section (Home Page - Matching Design)
   -------------------------------------------------------------------------- */
.mt-home-map-section {
  background-color: #cbebd8;
  padding: 55px 0 65px;
}

.mt-home-contact-info-wrap {
  padding-right: 25px;
}

.mt-home-contact-intro {
  font-size: 15.5px;
  line-height: 1.65;
  color: #111111;
  font-weight: 500;
  margin-bottom: 24px;
}

.mt-home-contact-block {
  margin-bottom: 18px;
}

.mt-home-contact-label {
  font-size: 15.5px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 3px;
}

.mt-home-contact-val {
  font-size: 15px;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
  margin: 0;
}

.mt-home-phone-link {
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 500;
}

.mt-home-sky-link {
  color: #2b95e9 !important;
  text-decoration: underline !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mt-home-sky-link:hover {
  color: #1579c9 !important;
}

.mt-home-map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.mt-home-map-card iframe {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   About Us Page Styles (Vision, Mission, Core Values, ISO)
   -------------------------------------------------------------------------- */

/* Combined mint green section for Vision/Mission + Core Values */
.mt-vm-values-section {
  background-color: #cbebd8;
  padding: 60px 0 50px;
}

.mt-vision-card,
.mt-mission-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 30px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.mt-vision-card:hover,
.mt-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 166, 81, 0.16);
}

.mt-vm-icon {
  font-size: 36px;
  color: var(--mt-primary);
  margin-bottom: 12px;
}

.mt-vm-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--mt-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mt-vm-desc {
  font-size: 14px;
  color: var(--mt-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Core Values Heading */
.mt-core-values-heading {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.mt-value-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.mt-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 166, 81, 0.16);
}

.mt-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--mt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 10px;
}

.mt-value-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--mt-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.mt-value-card p {
  font-size: 13px;
  color: var(--mt-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Certifications & Accreditations Section */
.mt-cert-section {
  background: #ffffff;
  border-top: 4px solid var(--mt-primary);
  padding: 45px 0 40px;
}

.mt-cert-heading {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.mt-cert-badges-row {
  text-align: center;
}

.mt-cert-badges-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}






/* --------------------------------------------------------------------------
   Updates Page (6 Category Cards & Video Player - Matching UI PDF)
   -------------------------------------------------------------------------- */
.mt-updates-page-section {
  background: #ffffff;
  padding: 50px 0 70px;
}

.mt-updates-container {
  max-width: 1180px;
}

.mt-updates-intro-wrap {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 45px;
}

.mt-updates-intro-text {
  font-size: 16.5px;
  line-height: 1.65;
  color: #111111;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.mt-updates-category-grid {
  margin-bottom: 50px;
}

.mt-update-card-link {
  position: relative;
  display: block;
  text-decoration: none !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 80, 40, 0.08);
}

.mt-update-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 166, 81, 0.25);
}

.mt-update-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 370 / 320;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  line-height: 0;
}

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

.mt-update-card-link:hover .mt-update-card-img {
  transform: scale(1.05);
}

.mt-update-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 166, 81, 0.2) 0%, rgba(0, 150, 75, 0.55) 55%, rgba(0, 130, 65, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 16px;
  text-align: center;
  transition: background 0.3s ease;
}

.mt-update-card-link:hover .mt-update-card-overlay {
  background: linear-gradient(180deg, rgba(0, 166, 81, 0.28) 0%, rgba(0, 150, 75, 0.65) 50%, rgba(0, 120, 58, 0.96) 100%);
}

.mt-update-card-title {
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0, 40, 15, 0.45);
}

.mt-updates-video-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000000;
}

.mt-updates-video-iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

.mt-video-box {
  background: #2b3a32;
  border-radius: var(--mt-radius-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--mt-shadow-md);
}

.mt-video-play-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--mt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.mt-video-play-btn:hover {
  transform: scale(1.12);
  background: #ffffff;
  color: var(--mt-primary-dark);
}

/* --------------------------------------------------------------------------
   Facility Details Gallery (4 Images Grid)
   -------------------------------------------------------------------------- */
.mt-facility-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.mt-back-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mt-primary);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mt-back-btn:hover {
  background: var(--mt-primary-hover);
  transform: translateX(-3px);
}

.mt-facility-gallery-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.mt-facility-gallery-4 img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--mt-radius-md);
  box-shadow: var(--mt-shadow-sm);
  border: 1px solid var(--mt-card-border);
}

/* --------------------------------------------------------------------------
   Contact Us Page (Exact Match to Design with Rectangle 113)
   -------------------------------------------------------------------------- */


.mt-contact-hero-section {
  background: #fbfdfc url('../Resources/rectangle-113.png') center right / cover no-repeat;
  padding: 60px 0 70px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.mt-contact-hero-content {
  max-width: 440px;
}

.mt-contact-hero-intro {
  font-size: 16.5px;
  line-height: 1.65;
  color: #111111;
  font-weight: 500;
  margin-bottom: 28px;
}

.mt-contact-field {
  margin-bottom: 20px;
}

.mt-contact-field-label {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.mt-contact-field-val {
  font-size: 15.5px;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
}

.mt-contact-field-val a {
  color: #111111;
  text-decoration: none;
}

.mt-contact-sky-link {
  color: #007bff !important;
  text-decoration: underline !important;
  font-weight: 500;
}

.mt-contact-sky-link:hover {
  color: #0056b3 !important;
}

@media (max-width: 991.98px) {
  .mt-contact-hero-section {
    background-position: right -150px center;
    padding: 40px 0;
  }
}

@media (max-width: 767.98px) {
  .mt-contact-hero-section {
    background-image: none;
    background-color: #ffffff;
  }
}

.mt-contact-map-section {
  background-color: #cbebd8;
  padding: 50px 0;
}

.mt-contact-map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.mt-contact-map-card iframe {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Footer Area (Matching Screenshot with footerlogo.png)
   -------------------------------------------------------------------------- */
.mt-footer {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  padding: 45px 0 0;
  color: var(--mt-text-dark);
}

.mt-footer-logo {
  max-width: 230px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}

.mt-footer-sky-link {
  color: #2b95e9 !important;
  text-decoration: none !important;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mt-footer-sky-link:hover {
  color: #1579c9 !important;
  text-decoration: underline !important;
}

.mt-footer-phone-link {
  color: #00a651 !important;
  text-decoration: none !important;
  font-size: 14.5px;
  font-weight: 500;
}

.mt-footer-heading {
  font-size: 16px;
  font-weight: 800;
  color: #00a651;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mt-footer-text {
  font-size: 14px;
  color: #222222;
  line-height: 1.6;
}

.mt-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mt-footer-list li {
  margin-bottom: 9px;
}

.mt-footer-list a {
  color: #00a651;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.mt-footer-list a:hover {
  color: #007338;
  text-decoration: underline;
}

.mt-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.mt-social-green-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #00a651 !important;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.mt-social-green-btn:hover {
  background: #007338 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 166, 81, 0.3);
}

.mt-footer-divider {
  height: 2px;
  background: #00a651;
  border: none;
  margin: 30px 0 0;
}

.mt-footer-copyright-wrap {
  background: #ffffff;
  padding: 18px 0 24px;
}

.mt-footer-copyright {
  text-align: center;
  font-size: 14.5px;
  color: #00a651;
  font-weight: 600;
  margin: 0;
}

.mt-footer-copyright a {
  color: #00a651;
  text-decoration: underline;
  font-weight: 600;
}

.mt-footer-copyright a:hover {
  color: #007338;
}

/* --------------------------------------------------------------------------
   Responsive Rules
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .mt-header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mt-logo-img {
    height: 42px;
  }

  .mt-header-hotline-card {
    position: static;
    border-radius: var(--mt-radius-full);
    padding: 6px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .mt-hotline-card-icon {
    font-size: 18px;
  }

  .mt-hotline-card-number {
    font-size: 14px;
  }

  .mt-hotline-card-label {
    display: none;
  }

  .mt-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mt-header-top-row {
    gap: 12px;
  }

  .mt-header-nav-row {
    display: none !important;
  }

  .mt-hero-title {
    font-size: 32px;
  }

  .mt-hero-action-container {
    margin-top: -28px;
  }

  .mt-hero-action-btn {
    min-width: 220px;
    min-height: 64px;
    padding: 12px 24px;
  }

  .mt-motto-text {
    font-size: 22px;
  }

  .mt-motto-cross {
    font-size: 32px;
  }

  .mt-quick-access-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .mt-quick-card-pill {
    font-size: 16px;
    min-height: 85px;
    padding: 12px 14px;
  }

  .mt-about-block-wrap {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .mt-about-side-cross {
    position: static;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
  }

  .mt-about-block-desc {
    text-align: justify;
    max-width: 100%;
  }

  .mt-lobby-floating-cross {
    right: 0;
    bottom: -15px;
    font-size: 48px;
  }

  .mt-facility-gallery-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .mt-logo-img {
    height: 38px;
  }

  .mt-home-hero {
    min-height: 340px;
    padding-bottom: 45px;
  }

  .mt-hero-content {
    padding: 30px 0 20px;
  }

  .mt-hero-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .mt-hero-desc {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .mt-hero-action-container {
    margin-top: -24px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .mt-hero-action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .mt-hero-action-btn {
    width: 100%;
    max-width: 320px;
    min-width: unset;
    min-height: 56px;
    padding: 10px 20px;
    border-radius: 18px;
  }

  .mt-hero-action-main {
    font-size: 16px;
  }

  .mt-hero-action-sub {
    font-size: 15px;
  }

  .mt-motto-ribbon {
    padding: 16px 12px;
  }

  .mt-motto-ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .mt-motto-cross {
    font-size: 16px;
    min-width: 16px;
    line-height: 1;
  }

  .mt-motto-text {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
  }

  .mt-quick-access-section {
    padding: 35px 0 0;
    overflow: hidden;
  }

  .mt-quick-access-title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .mt-quick-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }

  .mt-quick-card-pill {
    min-height: 75px;
    padding: 10px 8px;
    border-radius: 16px;
  }

  .mt-quick-card-pill span {
    font-size: 14px;
    line-height: 1.2;
  }

  .mt-about-block-wrap {
    padding: 0 10px 25px;
    text-align: center;
  }

  .mt-about-side-cross {
    display: none;
  }

  .mt-about-block-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
  }

  .mt-about-block-desc {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
  }

  .mt-lobby-frame-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
  }

  .mt-lobby-floating-cross {
    display: none;
  }

  .mt-page-banner h1,
  .mt-page-banner h2 {
    font-size: 26px;
  }

  .mt-about-gallery {
    grid-template-columns: 1fr;
  }

  /* Why Choose Us Mobile Styles */
  .mt-why-choose-section {
    padding: 40px 0 50px;
  }

  .mt-why-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .mt-why-grid-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }

  .mt-why-grid-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mt-why-grid-bottom .mt-why-card-pill {
    width: 100%;
  }

  .mt-why-card-pill {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 20px;
    width: 100%;
  }

  .mt-why-card-heading {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .mt-why-card-text {
    font-size: 13.5px;
    line-height: 1.55;
  }

  /* Stats Section Mobile Styles */
  .mt-stats-section {
    padding: 30px 0;
  }

  .mt-stat-item-wrap {
    justify-content: flex-start;
    padding: 10px 15px;
  }

  .mt-stat-circle-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 20px;
  }

  .mt-stat-number {
    font-size: 28px;
  }

  /* Facility Detail Mobile Header */
  .mt-facility-detail-header-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 25px;
    padding: 0;
    min-height: auto;
  }

  .mt-detail-back-btn {
    position: static;
    transform: none;
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .mt-detail-back-btn:hover {
    transform: scale(1.05);
  }

  .mt-detail-page-title {
    font-size: 19px;
    text-align: left;
    line-height: 1.3;
    flex-grow: 1;
  }

  /* Updates Cards Mobile */
  .mt-update-card-overlay {
    padding: 16px 12px;
  }

  .mt-update-card-title {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .mt-logo-img {
    height: 34px;
  }

  .mt-header-hotline-card {
    padding: 5px 10px;
  }

  .mt-hotline-card-number {
    font-size: 12.5px;
  }

  .mt-motto-text {
    font-size: 13.5px;
  }
}