/*
Theme Name: FHS Main
Author: Red Gecko Agency
Author URI: https://redgeckoagency.com/
Description: Based on Twenty Twenty Four theme by the WordPress team
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.0
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fhs-main
*/

@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --font-text: "Open Sans", sans-serif;
  --font-titles: "Montserrat", sans-serif;
  --font-cursive: "Courgette", cursive;
  --font-tinos: "Tinos", serif;
  --font-inter: "Inter", sans-serif;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--font-text);
}

html,
body {
  overflow-x: hidden;
  margin: 0 !important;
}

body {
  font-family: var(--font-text);
  background-color: white;
  color: black;
  font-size: 18px;
}

main {
  padding-top: 150px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.blogPostContainer {
  max-width: 1280px;
  margin: 4rem auto;
  padding: 0 2vw;
}

.sectionTitleBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sectionTitleSubheading {
  font-size: 1.3rem;
  font-family: var(--font-cursive);
  color: var(--facility-tertiary);
  font-weight: 600;
  text-align: center;
}

.sectionTitle {
  font-size: 3rem;
  font-family: var(--font-titles);
  color: black;
  text-align: center;
  text-transform: capitalize;
}

.cursive {
  font-family: var(--font-cursive);
  font-weight: 400;
}

.sectionTitleParagraph {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-text);
  margin-bottom: 16px;
  width: 80%;
}

.sectionTitleSVG > svg,
svg.sectionTitleSVG {
  height: 28px;
  fill: var(--facility-tertiary);
  margin: 8px auto;
  margin-bottom: 20px;
  display: block;
}

svg.fillLight {
  fill: var(--facility-light);
}

.colorWhite {
  color: white;
}

.ctaArrow a {
  padding: 10px 15px;
  background-color: var(--facility-dark);
  font-family: var(--font-text);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  width: fit-content;
  margin-top: 20px;
  transition: var(--transition);
  stroke: white;
  font-weight: 600;
}

.ctaArrow a svg {
  margin-left: 12px;
  stroke: inherit;
}

.ctaArrow a:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
  stroke: var(--facility-dark);
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 64px;
  }
  #wpadminbar {
    display: none;
  }
}

.ctaArrow br,
.fb-icon br,
.stars br,
.payment-button br {
  display: none;
}

/* Animation default values */
.experiences-hero-title,
.blog-hero-title,
.blog-hero + .entry-content.wp-block-post-content > div:first-child > *,
#services > *,
.blog-hero + div:not(.entry-content.wp-block-post-content) > * {
  visibility: hidden;
}

/* Header */

.headerContainer {
  position: fixed;
  background-color: white;
  width: 100%;
  transition: 0.2s ease all;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 20px;
  overflow: hidden;
}

.headerQuickLinks {
  display: flex;
  margin-left: 1rem;
  font-family: var(--font-text);
  height: 52px;
}

.headerInfo {
  display: flex;
  flex-direction: column;
  max-width: 250px;
}

.headerIconLink {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  transition: var(--transition);
  text-decoration: none;
  color: black;
}

.headerIconLink:hover {
  opacity: 0.5;
}

.headerIconLink svg {
  width: 20px;
  height: 20px;
  fill: var(--facility-dark);
}

.headerInfo a {
  font-family: var(--font-text);
  font-size: 1rem;
  padding: 0.3rem;
  gap: 8px;
}

@keyframes blink {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.headerInfo a svg {
  width: 12px;
  height: 12px;
  fill: #5a7d7c;
  animation: blink 2s infinite;
}

.headerInfo a:first-child svg {
  fill: #7ed957;
}

.headerCTA {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.headerMainCTA {
  background-color: var(--facility-dark);
  color: white;
  font-family: var(--font-text);
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  transition: var(--transition);
}

.headerMainCTA:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.headerLogoLink {
  position: relative;
  display: flex;
  justify-content: center;
  width: 256px;
  height: 150px;
  transition: 0.2s ease all;
  align-self: end;
  overflow: hidden;
}

.headerLogo {
  height: 120px;
  position: absolute;
  bottom: 15px;
}

.headerMainContent {
  display: flex;
  justify-content: center;
  height: 98px;
}

.headerMainContentLink {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  font-family: var(--font-text);
  width: 164px;
  letter-spacing: 2px;
  transition: var(--transition);
  font-weight: 500;
}

.headerMainContentLink:hover {
  color: var(--facility-dark);
}

.phoneHeader,
.phoneMenu {
  display: none;
}

@media screen and (max-width: 1080px) {
  .headerCTA .headerIconLink span {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .headerContainer {
    top: 0 !important;
  }
  .headerQuickLinks,
  .headerInfo,
  .headerMainContent {
    display: none;
  }
  .phoneHeader {
    display: flex;
    justify-content: flex-start;
    height: 64px;
    background-color: white;
    padding: 10px 2vw;
  }
  .phoneHeaderLogoLink {
    max-width: 250px;
  }
  .phoneHeaderLogo {
    max-height: 100%;
    width: auto;
    margin-right: 1rem;
  }
  .phoneHeaderMenu {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 0 0.5rem;
    cursor: pointer;
    margin-left: auto;
    outline: none;
  }
  .phoneHeaderMenu svg {
    fill: var(--facility-dark);
    width: 32px;
    height: 32px;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    display: none;
  }
  .phoneHeaderMenu svg.active {
    opacity: 1;
    display: inline;
  }
  .headerMenuHB {
    opacity: 1;
  }
  .phoneMenu {
    display: flex;
    background-color: var(--facility-dark);
    width: 100vw;
    height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
    overflow: hidden;
    transition: 0.6s ease height;
  }
  .phoneMenu a {
    font-size: 2rem;
    text-decoration: none;
    color: white;
    font-family: var(--font-text);
    opacity: 0;
    transform: translateY(-15px);
  }
  .phoneMenu a:nth-child(1).active {
    transition: 0.4s ease all 0.3s;
    opacity: 1;
    transform: translateY(0);
  }
  .phoneMenu a:nth-child(2).active {
    transition: 0.4s ease all 0.4s;
    opacity: 1;
    transform: translateY(0);
  }
  .phoneMenu a:nth-child(3).active {
    transition: 0.4s ease all 0.5s;
    opacity: 1;
    transform: translateY(0);
  }
  .phoneMenu a:nth-child(4).active {
    transition: 0.4s ease all 0.6s;
    opacity: 1;
    transform: translateY(0);
  }
  .phoneMenu a:nth-child(5).active {
    transition: 0.4s ease all 0.7s;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Variant Two */

.headerQuickLinksV2,
.headerQuickLinksV4 {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 24px;
  background-color: white;
  border-bottom: 1px solid var(--facility-tertiary);
}

.headerInfoV2,
.headerInfoV4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.headerIconLinkV2,
.headerIconLinkV4 {
  display: flex;
  align-items: center;
  gap: 7px;
  background-color: rgba(220, 252, 231, 1);
  color: rgba(1, 102, 48, 1);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-inter);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.headerIconLinkV2:hover,
.headerIconLinkV4:hover {
  opacity: 0.8;
}

.headerIconLinkV2 svg,
.headerIconLinkV4 svg {
  width: 8px;
  height: 8px;
  fill: rgba(0, 166, 62, 1);
  flex-shrink: 0;
  animation: blink 2s infinite;
}

.headerV2Main,
.headerV4Main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: white;
}

.headerV2LogoLink,
.headerV4LogoLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
  margin-right: 2rem;
}

.headerV2Logo,
.headerV4Logo {
  width: auto;
  height: 52px;
}

.headerV2Nav,
.headerV4Nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.headerV2NavLink,
.headerV4NavLink {
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.headerV2NavLink:hover,
.headerV4NavLink:hover {
  color: var(--facility-dark);
}

.headerV2CTAs,
.headerV4CTAs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.headerV2CTASecondary,
.headerV2CTAPrimary,
.headerV4CTAPrimary {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.headerV2CTASecondary {
  background-color: var(--facility-tertiary);
  color: white;
}

.headerV2CTASecondary:hover {
  background-color: var(--facility-dark);
}

.headerV2CTAPrimary,
.headerV4CTAPrimary {
  background-color: var(--facility-dark);
  color: white;
}

.headerV2CTAPrimary:hover,
.headerV4CTAPrimary:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

@media screen and (max-width: 1024px) {
  /* V2 / V4, top bar */
  .headerQuickLinksV2,
  .headerQuickLinksV4 {
    padding: 10px 1.5rem;
    gap: 16px;
  }
  .headerQuickLinksV2 span,
  .headerIconLinkV4 span {
    font-size: 10px;
  }
  /* V2 / V4, main bar */
  .headerV2Main,
  .headerV4Main {
    padding: 1.5rem 1rem;
  }
  .headerV2Logo,
  .headerV4Logo {
    height: 42px;
  }
  .headerV2Nav,
  .headerV4Nav {
    gap: 16px;
  }
  .headerV2NavLink,
  .headerV4NavLink {
    font-size: 0.88rem;
  }
  .headerV2CTASecondary,
  .headerV2CTAPrimary,
  .headerV4CTAPrimary {
    font-size: 0.82rem;
    padding: 0.55rem 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .headerQuickLinksV2,
  .headerQuickLinksV4,
  .headerV2Main,
  .headerV4Main {
    display: none;
  }
}

/* Header Variant Three A */

.headerMain-V3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 165px;
}
.headerMain-V3-A {
  background-color: white;
}

.headerLogoLink-V3 {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.headerLogo-V3 {
  height: 52px;
  width: auto;
}

.headerNav-V3 {
  display: flex;
  align-items: center;
  gap: 32px;
}

.headerNavLink-V3 {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;
  padding: 0.5rem 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.headerNavLink-V3-A {
  color: black;
}

.headerNavLink-V3:hover {
  color: var(--facility-dark);
}

.headerLinks-V3 {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 32px;
}

.headerCTA-V3 {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.headerCTA-V3-A {
  background-color: var(--facility-tertiary);
  color: white;
}

.headerCTA-V3-A:hover {
  background-color: var(--facility-dark);
}

/* Header Variant Three B */

.headerMain-V3-B {
  background-color: var(--facility-light);
}
.headerNavLink-V3-B {
  color: black;
}
.headerNavLink-V3-B:hover {
  color: var(--facility-dark);
}
.headerCTA-V3-B {
  background-color: black;
  color: var(--facility-light);
}
.headerCTA-V3-B:hover {
  background-color: var(--facility-dark);
  color: white;
}

/* Header Variant four A */
.headerQuickLinksV4 {
  border: none;
  justify-content: space-between;
}
.headerInfoCTA-V4 {
  display: flex;
  align-items: center;
}
.headerCTASecondary-V4 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  padding: 8px 16px;
  font-weight: 500;
  font-family: var(--font-inter);
  text-decoration: none;
}
.headerCTASecondary-V4 svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}
.headerCTASecondary-V4-A {
  color: black;
}
.headerCTASecondary-V4:hover svg {
  transform: translateX(4px) rotate(-45deg);
}
.headerCTASecondary-V4-A svg {
  fill: black;
}

.headerCTASecondary-V4-B {
  color: white;
}

.headerQuickLinksV4-A {
  background-color: var(--facility-light);
}

/* Header Variant four B */
.headerQuickLinksV4-B {
  background-color: rgba(27, 27, 31, 1);
}
.headerV4Main-B {
  background-color: rgba(35, 39, 43, 1);
}
.headerV4NavLink-B {
  color: white;
}

.headerV4NavLink-B:hover {
  color: var(--facility-light);
}

.headerV4CTAPrimary-B {
  background-color: var(--facility-light);
  color: black;
}
.headerV4CTAPrimary-B:hover {
  background-color: var(--facility-dark);
  color: white;
}

@media screen and (max-width: 1024px) {
  .headerCTASecondary-V4 {
    font-size: 12px;
    padding: 6px 12px;
  }
  .headerCTASecondary-V4 svg {
    width: 12px;
    height: 12px;
  }
  .headerMain-V3 {
    height: 90px;
    padding: 0 1.5rem;
  }
  .headerLogo-V3 {
    height: 42px;
  }
  .headerNav-V3 {
    gap: 16px;
  }
  .headerLinks-V3 {
    gap: 16px;
  }
  .headerNavLink-V3 {
    font-size: 0.88rem;
    padding: 0.5rem 0.5rem;
  }
  .headerCTA-V3 {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

@media screen and (max-width: 768px) {
  .headerMain-V3 {
    display: none;
  }
}

/* Header Variant Two B, floating */

.headerV2B-Wrapper {
  margin: 12px 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .headerV2B-Wrapper {
    display: none;
  }
}

/* Mobile Header Variant Two */

.phoneHeader-MV2 {
  display: none;
}

@media screen and (max-width: 768px) {
  .phoneHeader-MV2 {
    display: flex;
    flex-direction: column;
  }
  .phoneHeader-MV2-A {
    background-color: white;
  }
  .phoneHeader-MV2-B {
    background-color: var(--facility-light);
  }
  .phoneHeader-MV2-C {
    background-color: black;
  }

  .phonePillsBar-MV2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 1rem;  
  }

  .phonePill-MV2 {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(220, 252, 231, 1);
    color: rgba(1, 102, 48, 1);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 8px;
    font-family: var(--font-inter);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
  }

  .phonePill-MV2 svg {
    fill: rgba(0, 166, 62, 1);
    flex-shrink: 0;
    width: 6px;
  }

  .phonePill-MV2:hover {
    opacity: 0.75;
  }

  .phoneMainBar-MV2 {
    display: flex;
    align-items: center;
    padding: 8px 1rem;
    height: 58px;
  }

  .phoneLogoLink-MV2 {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .phoneLogo-MV2 {
    height: 40px;
    width: auto;
  }

  .phoneActions-MV2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .phoneIconBtn-MV2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid black;
    border-radius: 50%;
    text-decoration: none;
    color: black;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .phoneIconBtn-MV2-C {
    border-color: white;
    color: white;
  }

  .phoneIconBtn-MV2 svg {
    width: 16px;
    height: 16px;
    fill: black;
  }

  .phoneMenuBtn-MV2 {
    background-color: transparent;
    border: none;
    padding: 0 0 0 4px;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
  }

  .phoneMenuBtn-MV2 svg {
    fill: black;
    width: 28px;
    height: 28px;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    display: none;
  }

  .phoneMenuBtn-MV2-C svg {
    fill: white;
  }
  .phoneMenuBtn-MV2 svg.active {
    opacity: 1;
    display: inline;
  }
  .phoneHeader-MV2-D {
    background-color: var(--facility-light);
  }
  .phoneMainBar-MV2-D {
    background-color: white;
  }
  .phoneIconBtn-MV2-D svg,
  .phoneMenuBtn-MV2-D svg {
    fill: var(--facility-dark);
    color: var(--facility-dark);
  }
  .phoneIconBtn-MV2-D {
    border-color: var(--facility-dark);
  }
}

/* Footer */

footer {
  width: 100%;
  background-color: var(--facility-dark);
  font-family: var(--font-text);
  padding: 3rem 4vw;
}

.footerWrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .footerLogo {
  height: 200px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.footerLogo img {
  height: 100%;
  filter: brightness(0) invert(1);
}

.footerLogoVariantTwo {
  height: 100px;
  border-radius: 5px;
  background-color: var(--facility-light);
}

.footerLogoVariantTwo img {
  filter: none;
}

footer .footerMain {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5%;
  flex-wrap: wrap;
}

footer .footerMain .footerColumn {
  width: 30%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: #fff;
}

footer .footerMain .footerColumn .footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.4rem 0;
  min-width: 200px;
}

.footer-link span {
  display: inline-block;
  transition: 200ms ease;
}

footer .footerMain .footerColumn .footer-link:hover span {
  transform: translateX(10px);
}

footer .footerCopyright {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
}

.footerAddress h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

.footerAddress .footerLocation {
  font-size: 1.1rem;
  font-weight: 350;
  margin: 1rem 0;
}

.footerPhone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  background-color: transparent !important;
  cursor: default !important;
}

@media (max-width: 768px) {
  footer .footerMain {
    gap: 2rem;
  }
  footer .footerMain .footerColumn {
    width: 90%;
    text-align: center;
  }
  footer .footerMain .footerColumn .footer-link,
  .footerAddress > * {
    width: 100%;
  }
  footer .footerLogo {
    width: 100%;
    height: auto;
  }
  footer .footerLogo img {
    width: 100%;
    height: auto;
  }
  .footerAddress {
    padding: 1rem 0;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
  }
  footer .footerCopyright {
    margin-top: 2rem;
    text-align: center;
  }
}

/* ===== Footer Variants (Modern) ===== */
footer:has(.footerModern) {
  padding: 0;
  background: none;
}
.footerModern {
  position: relative;
  padding: 80px 4vw 2.5rem;
  font-family: var(--font-inter);
  overflow: hidden;
}
.footerModern__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  font-family: var(--font-inter);
}
.footerModern__brand {
  max-width: 320px;
}
.footerModern__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footerModern__logo img {
  display: block;
  height: 100px;
  width: auto;
}
.footerModern__name {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.footerModern__address {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.6rem;
}
.footerModern__phone {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.footerModern__colTitle {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
}
.footerModern__col .footer-link {
  display: block;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-inter);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0;
}
.footerModern__col .footer-link span {
  display: inline-block;
  transition: 200ms ease;
  font-family: var(--font-inter);
}
.footerModern__col .footer-link:hover span {
  transform: translateX(6px);
}
.footerModern__bar {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footerModern__copy {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 0.9rem;
}
.footerModern__socials {
  display: flex;
  gap: 0.6rem;
}
.footerModern__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: inherit;
  transition: var(--transition);
}
.footerModern__social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.footerModern--v1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
.footerModern--v1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:rgba(0, 0, 0, 0.6);
}

/* V2, theme dark color */
.footerModern--v2 {
  background: var(--facility-tertiary);
  color: #ffffff;
}

/* V1 + V2, shared white-on-dark */
.footerModern--v1 .footerModern__logo img,
.footerModern--v2 .footerModern__logo img {
  filter: brightness(0) invert(1);
}
.footerModern--v1 .footerModern__address,
.footerModern--v2 .footerModern__address {
  color: rgba(241, 245, 249, 1);
}
.footerModern--v1 .footerModern__col .footer-link,
.footerModern--v2 .footerModern__col .footer-link {
  color: rgba(226, 232, 240, 1);
}
.footerModern--v1 .footerModern__col .footer-link:hover span,
.footerModern--v2 .footerModern__col .footer-link:hover span {
  color: white;
}
.footerModern--v1 .footerModern__bar,
.footerModern--v2 .footerModern__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footerModern--v1 .footerModern__copy,
.footerModern--v2 .footerModern__copy {
  color: rgba(226, 232, 240, 1);
}
.footerModern--v1 .footerModern__social:hover,
.footerModern--v2 .footerModern__social:hover {
  background: var(--facility-light);
  color: var(--facility-dark);
}

/* V3, white background */
.footerModern--v3 {
  background: #ffffff;
  color: rgba(15, 23, 43, 1);
}
.footerModern--v3 .footerModern__address {
  color: rgba(49, 65, 88, 1);
}

.footerModern--v3 .footerModern__colTitle  {
  color: var(--facility-tertiary);
}
.footerModern--v3 .footerModern__col .footer-link {
  color: rgba(69, 85, 108, 1);
}
.footerModern--v3 .footerModern__col .footer-link:hover span {
  color: var(--facility-tertiary);
}
.footerModern--v3 .footerModern__bar {
  border-top: 1px solid rgba(202, 213, 226, 1);
}
.footerModern--v3 .footerModern__copy {
  color: var(--facility-tertiary);
}
.footerModern--v3 .footerModern__social {
  color: rgba(69, 85, 108, 1);
}
.footerModern--v3 .footerModern__social:hover {
  background: var(--facility-light);
  color: var(--facility-tertiary);
}

@media (max-width: 1024px) {
  .footerModern__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  .footerModern__brand {
    max-width: none;
  }
  .footerModern__name {
    font-size: 1.15rem;
  }
  .footerModern__colTitle {
    font-size: 1.1rem;
  }
  .footerModern__col .footer-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .footerModern__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footerModern__brand {
    max-width: none;
  }
  .footerModern__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footerModern__col .footer-link:hover span {
    transform: none;
  }
  .footerModern__bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footerModern__name {
    font-size: 1.15rem;
  }
}

/* ===== CTA Section Variants ===== */
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.cta__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}
.cta__btn--primary {
  background: #fff;
  color: var(--facility-dark);
  border-color: #fff;
}
.cta__btn--primary:hover {
  background: var(--facility-tertiary);
  border-color: var(--facility-tertiary);
  color: #fff;
}
.cta__btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 1);
}
.cta__btn--secondary:hover {
  background: var(--facility-tertiary);
  border-color: var(--facility-tertiary);
  color: #fff;
}

.ctaV1 {
  background: var(--facility-dark);
}
.ctaV1__card {
  background-color: rgba(255, 255, 255, 0.1);
  max-width: 960px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 6.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #fff;
}
.ctaV1__heading {
  font-family: var(--font-inter);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.ctaV1__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 1.75rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}
.ctaV1 .cta__actions {
  justify-content: center;
}

.ctaV2 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 4vw;
  overflow: hidden;
}
.ctaV2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.ctaV2__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  color: #fff;
}
.ctaV2__heading {
  font-family: var(--font-tinos);
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 1rem;
}
.ctaV2__subtitle {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.ctaV3 {
  background-color: var(--facility-dark);
}
.ctaV3__inner {
  max-width: 1280px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: 8px;
  padding: 6.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.ctaV3__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 444px;
  object-fit: cover;
  border-radius: 16px;
}
.ctaV3__content {
  color: #fff;
}
.ctaV3__heading {
  font-family: var(--font-tinos);
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.ctaV3__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .ctaV2__heading {
    font-size: 2.5rem;
  }
  .ctaV3__heading {
    font-size: 2rem;
  }
  .ctaV3__inner {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .ctaV1__card {
    padding: 3rem 1.5rem;
  }
  .ctaV1__heading {
    font-size: 1.6rem;
  }
  .ctaV1__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .ctaV2 {
    padding: 3.5rem 6vw;
    text-align: center;
  }
  .ctaV2__heading {
    font-size: 2rem;
  }
  .ctaV2__subtitle {
    font-size: 0.95rem;
    margin: 0 auto 1.5rem;
  }
  .ctaV2 .cta__actions {
    justify-content: center;
  }

  .ctaV3__inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }
  .ctaV3__heading {
    font-size: 1.6rem;
  }
  .ctaV3__subtitle {
    font-size: 0.95rem;
    margin: 0 auto 1.5rem;
  }
  .ctaV3 .cta__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ctaV1__card,
  .ctaV3__inner {
    padding: 2.5rem 1.25rem;
  }
  .ctaV1__heading,
  .ctaV2__heading,
  .ctaV3__heading {
    font-size: 1.6rem;
  }
  .ctaV1__subtitle,
  .ctaV2__subtitle,
  .ctaV3__subtitle {
    font-size: 1rem;
  }
  .cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero section */

.heroContainer {
  width: 100%;
  margin-bottom: 24px;
}

.videoContainer {
  position: relative;
}

.mute-button {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mute-button svg {
  width: 20px;
  height: 20px;
  fill: black;
}

#hero-video {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-evenly;
  align-items: center;
  margin: 24px auto;
  padding: 20px;
  max-width: 1280px;
}

/* Image BG Variant */
.imageBgContainer {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.imageBgContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.imageBg-content {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  max-width: 1280px;
  color: #fff;
}

.imageBg-title {
  font-size: 48px;
  max-width: 780px;
  font-weight: 700;
  line-height: 48px;
  font-family: var(--font-inter);
  margin-bottom: 16px;
  color: #fff;
}

.imageBg-subtitle {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-inter);
  margin-bottom: 24px;
  color: #fff;
  max-width: 600px;
}

.imageBg-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--facility-dark);
  color: #fff;
  border: none;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: -0.44px;
  border-radius: 8px;
  transition: var(--transition);
}

.imageBg-cta:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.heroContainer--image-bg .hero-text,
.heroContainer--slideshow-text .hero-text,
.heroContainer--collage .hero-text,
.heroContainer--centered-image .hero-text,
.heroContainer--split .hero-text {
  display: none;
}

@media (max-width: 1024px) {
  .imageBgContainer {
    height: 70vh;
  }

  .imageBg-content {
    padding: 0 40px;
    max-width: 860px;
  }

  .imageBg-title {
    font-size: 36px;
    line-height: 42px;
    max-width: 560px;
    margin-bottom: 12px;
  }

  .imageBg-subtitle {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .imageBg-cta {
    padding: 0.875rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .imageBgContainer {
    height: 65vh;
    align-items: flex-end;
    padding-bottom: 32px;
  }

  .imageBgContainer::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }

  .imageBg-content {
    padding: 0 32px;
    max-width: 100%;
  }

  .imageBg-title {
    font-size: 32px;
    line-height: 34px;
    max-width: 500px;
    margin-bottom: 10px;
  }

  .imageBg-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 18px;
    max-width: 450px;
  }

  .imageBg-cta {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .imageBgContainer {
    height: 60vh;
    padding-bottom: 24px;
  }

  .imageBg-content {
    padding: 0 20px;
  }

  .imageBg-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
  }

  .imageBg-subtitle {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .imageBg-cta {
    padding: 0.6rem 1.2rem;
    font-size: 13px;
    border-radius: 6px;
  }
}

/* Collage Variant */
.collageContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 2vw;
  height: 70vh;
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
}

.collage-images-left {
  position: relative;
  flex: 0 0 280px;
  align-self: flex-end;
  height: 420px;
}

.collage-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-img--top {
  width: 260px;
  height: 260px;
  top: 0;
  left: 0;
  z-index: 1;
}

.collage-img--bottom {
  width: 210px;
  height: 210px;
  bottom: 0;
  left: 70px;
  z-index: 2;
}

.collage-content {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  max-width: auto;
}

.collage-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

.collage-icon svg {
  width: 48px;
  height: 48px;
  color: var(--facility-tertiary);
  margin-bottom: 12px;
}

.collage-icon-divider {
  border: none;
  border-top: 1px solid var(--facility-dark);
  width: 64px;
  margin: 0 auto 20px;
}

.collage-title {
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-inter);
  color: rgba(35, 39, 43, 1);
  line-height: 1.2;
  margin-bottom: 16px;
}

.collage-subtitle {
  font-size: 16px;
  line-height: 1.65;
  font-family: var(--font-inter);
  color: rgba(35, 39, 43, 1);
  margin-bottom: 28px;
}

.collage-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.collage-cta {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  font-family: var(--font-inter);
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition);
}

.collage-cta--primary {
  background-color: var(--facility-dark);
  color: #fff;
  border: 2px solid var(--facility-dark);
}

.collage-cta--primary:hover {
  background-color: var(--facility-light);
  border-color: var(--facility-light);
  color: var(--facility-dark);
}

.collage-cta--secondary {
  background-color: #fff;
  color: var(--facility-dark);
  border: 2px solid var(--facility-dark);
}

.collage-cta--secondary:hover {
  background-color: var(--facility-tertiary);
  border-color: var(--facility-tertiary);
  color: white;
}

.collage-image-right {
  flex: 0 0 280px;
  align-self: flex-start;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.collage-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .collageContainer {
    gap: 16px;
    padding: 36px 24px;
  }

  .collage-images-left {
    flex: 0 0 185px;
    height: 290px;
  }

  .collage-img--top {
    width: 160px;
    height: 160px;
  }

  .collage-img--bottom {
    width: 140px;
    height: 140px;
    left: 45px;
  }

  .collage-icon svg {
    width: 38px;
    height: 38px;
  }

  .collage-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .collage-subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .collage-cta {
    padding: 10px 18px;
    font-size: 14px;
  }

  .collage-image-right {
    flex: 0 0 185px;
    height: 210px;
  }
}

@media (max-width: 768px) {
  .collageContainer {
    flex-direction: column;
    margin-top: 31px;
    padding: 24px;
    gap: 20px;
    height: auto;
  }

  .collage-images-left {
    flex: none;
    width: 90%;
    align-self: center;
    height: 200px;
    order: 2;
  }

  .collage-img--top {
    width: 52%;
    height: 140px;
    top: 0;
    left: 0;
  }

  .collage-img--bottom {
    width: 42%;
    height: 118px;
    bottom: 0;
    left: auto;
    right: 0;
  }

  .collage-content {
    order: 2;
    max-width: 100%;
    padding: 0;
  }

  .collage-icon svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .collage-icon-divider {
    margin-bottom: 14px;
  }

  .collage-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .collage-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .collage-cta {
    padding: 9px 16px;
    font-size: 13px;
  }

  .collage-image-right {
    flex: none;
    align-self: center;
    width: 70%;
    height: 180px;
    order: 3;
  }
}

@media (max-width: 480px) {
  .collageContainer {
    padding: 24px 16px;
    gap: 16px;
  }

  .collage-icon svg {
    width: 28px;
    height: 28px;
  }
  .collage-images-left {
    width: 100%;
  }
  .collage-image-right {
    width: 100%;
    height: 160px;
    border-radius: 12px;
  }

  .collage-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .collage-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .collage-cta {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
  }
}

/* Split Variant */
.splitContainer {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 64px 80px;
  border-radius: 12px;
  background-color: rgba(245, 245, 245, 1);
  max-width: 1280px;
  margin: 36px auto 0;
  box-sizing: border-box;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.split-title-wrapper {
  border-left: 2px solid var(--facility-dark);
  padding-left: 32px;
  margin-bottom: 16px;
}

.split-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 500;
  font-family: var(--font-tinos);
  color: rgba(35, 39, 43, 1);
}

.split-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(35, 39, 43, 1);
  margin-bottom: 36px;
  max-width: 540px;
  font-family: var(--font-inter);
}

.split-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.split-cta {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.split-cta--primary {
  background-color: var(--facility-dark);
  color: #fff;
}

.split-cta--primary:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.split-cta--secondary {
  background-color: #fff;
  color: var(--facility-dark);
  border: 1.5px solid var(--facility-dark);
}

.split-cta--secondary:hover {
  background-color: var(--facility-tertiary);
  border-color: var(--facility-tertiary);
  color: #fff;
}

.split-image {
  flex: 0 0 420px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .splitContainer {
    gap: 40px;
    padding: 60px 48px;
    min-height: 60vh;
  }

  .split-title {
    font-size: 40px;
  }

  .split-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .split-image {
    flex: 0 0 340px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .splitContainer {
    flex-direction: column-reverse;
    padding: 48px 32px;
    gap: 32px;
    min-height: unset;
    margin: 55px 24px 24px;
  }

  .split-title {
    font-size: 32px;
  }

  .split-subtitle {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .split-image {
    flex: none;
    width: 100%;
    height: 280px;
    border-radius: 16px;
  }

  .split-cta {
    padding: 12px 22px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .splitContainer {
    padding: 36px 20px;
    gap: 24px;
    margin: 47px 16px 16px;
  }

  .split-title-wrapper {
    padding-left: 16px;
    margin-bottom: 18px;
  }

  .split-title {
    font-size: 26px;
  }

  .split-subtitle {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .split-image {
    height: 240px;
    border-radius: 12px;
  }

  .split-ctas {
    gap: 12px;
  }

  .split-cta {
    padding: 11px 18px;
    font-size: 13px;
  }
}

/* Centered Image Variant */
.centeredImageContainer {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.centeredImageContainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--facility-dark);
  opacity: 0.65;
  z-index: 0;
}

.centeredImage-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 60px;
  max-width: 900px;
  color: #fff;
}

.centeredImage-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-tinos);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.centeredImage-subtitle {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-inter);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.centeredImage-cta {
  display: inline-block;
  padding: 14px 36px;
  background-color: #fff;
  color: var(--facility-dark);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.centeredImage-cta:hover {
  background-color: var(--facility-tertiary);
  color: white;
}

@media (max-width: 1024px) {
  .centeredImageContainer {
    height: 70vh;
  }

  .centeredImage-content {
    padding: 0 40px;
  }

  .centeredImage-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .centeredImage-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 28px;
    max-width: 500px;
  }

  .centeredImage-cta {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .centeredImageContainer {
    height: 65vh;
  }

  .centeredImage-content {
    padding: 0 32px;
  }

  .centeredImage-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .centeredImage-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .centeredImage-cta {
    padding: 11px 26px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .centeredImageContainer {
    height: 60vh;
  }

  .centeredImage-content {
    padding: 0 20px;
  }

  .centeredImage-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .centeredImage-subtitle {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .centeredImage-cta {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 6px;
  }
}

/* Slideshow Text Variant */
.slideshowContainer--text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.33);
  z-index: 2;
  pointer-events: none;
}

.slideshowText-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0 40px;
}

.slideshowText-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-inter);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.33);
}

.slideshowText-divider {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 1);
  width: 460px;
  max-width: 80%;
  margin: 0 auto 20px;
}

.slideshowText-subtitle {
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font-inter);
  color: #fff;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.33);
}

.slideshowText-cta {
  display: inline-block;
  padding: 12px 32px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-inter);
  border-radius: 8px;
  transition: var(--transition);
}

.slideshowText-cta:hover {
  background-color: var(--facility-dark);
  color: #fff;
}

.slideshowContainer--text .slideshow-navigation {
  z-index: 4;
}

.slideshowContainer--text .nav-circle {
  width: 10px;
  height: 10px;
  font-size: 0;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  margin: 0 4px;
  line-height: 0;
}

.slideshowContainer--text .nav-circle.active {
  background-color: #fff;
}

.slideshowContainer--text .nav-circle:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .slideshowText-title {
    font-size: 48px;
  }

  .slideshowText-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .slideshowText-overlay {
    padding: 0 28px;
  }

  .slideshowText-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .slideshowText-divider {
    margin-bottom: 14px;
  }

  .slideshowText-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
  }

  .slideshowText-cta {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .slideshowText-overlay {
    padding: 0 20px;
  }

  .slideshowText-title {
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .slideshowText-divider {
    width: 100%;
    margin-bottom: 12px;
  }

  .slideshowText-subtitle {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 14px;
  }

  .slideshowText-cta {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Slideshow container */
.slideshowContainer {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slideshowContainer .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshowContainer .slide.active {
  opacity: 1;
  z-index: 1;
}

.slideshowContainer .slide.single-slide {
  position: static;
  opacity: 1;
}

.slideshowContainer .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slideshowContainer .slide.active {
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .slideshowContainer {
    height: 60vh;
  }

  .hero-text {
    padding: 10px;
    margin: 16px auto;
  }
}

/* Slideshow Navigation Circles */
.slideshow-navigation {
  text-align: center;
  margin-bottom: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  width: 85vw;
}

.nav-circle {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  transition: ease all 0.4s;
  font-weight: bold;
  color: #333;
  user-select: none;
}

.nav-circle.active {
  background-color: var(--facility-dark);
  color: #fff;
}

.nav-circle:hover {
  background-color: var(--facility-light);
}

/* Facility Features */

.facility-features {
  background-color: white;
  padding: 30px 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facility-features .cardsContainer {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}

.facility-features .cardsContainer .cards {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 512px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 45%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.facility-features .cardsContainer .cards .cardsImageContainer {
  width: 100%;
  height: 400px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  overflow: hidden;
  max-height: 30vw;
}

.facility-features .cardsContainer .cards .cardsImageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(110%);
}

.feature-h2 {
  font-size: 2.5rem;
  font-family: var(--font-cursive);
  font-weight: 700;
  text-align: center;
  padding: 4px 10px;
  color: var(--facility-dark);
}

.feature-description {
  font-family: var(--font-text);
  font-size: 1.2rem;
  text-align: center;
  padding: 6px 10px 24px 10px;
}

@media only screen and (max-width: 768px) {
  .facility-features .cardsContainer .cards {
    max-width: 90vw;
  }
  .facility-features .cardsContainer .cards .cardsImageContainer {
    max-height: 65vw;
  }
  .feature-h2 {
    font-size: 2rem;
    margin: 8px 0;
  }
}

/* Alternating Images */

.alternating-images {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin: 24px 0;
}

.ai {
  width: 100%;
  padding: 48px 2vw;
  background-color: var(--facility-tertiary);
}

.alternatingImagesWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.ai.even {
  background-color: white;
}

.ai.even .alternatingImagesWrapper {
  flex-direction: row-reverse;
}

.ai.even .alternating-span {
  color: white;
}

.alternating-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 50%;
}

.alternating-img img {
  width: 260px;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--facility-dark);
  border-radius: 24px;
}

.even .alternating-img img {
  border: 3px solid var(--facility-tertiary);
  border-radius: 24px;
}

@media only screen and (max-width: 768px) {
  .ai .alternatingImagesWrapper {
    flex-direction: column-reverse !important;
    row-gap: 10px;
  }
  .alternating-text {
    width: 100%;
    justify-content: space-around;
  }
}

/* ===== Feature Rows Variants ===== */
.fr__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  background: var(--facility-dark);
  color: #fff;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--facility-dark);
  transition: var(--transition);
}
.fr__btn:hover {
  background: var(--facility-tertiary);
  border-color: var(--facility-tertiary);
  color: #fff;
}
.fr__btnArrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.frV1.fhs-section {
  padding: 0;
}
.frV1 .frV1__inner {
  display: flex;
  flex-direction: column;
}
.frV1__row {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 48px max(4vw, calc((100% - 1280px) / 2));
  background: #fff;
}
.frV1__row:nth-child(odd) {
  background: rgba(245, 245, 245, 1);
}
.frV1__text {
  flex: 1.5;
}
.frV1__media {
  flex: 1;
}
.frV1__row--reverse {
  flex-direction: row-reverse;
}
.frV1__eyebrow ,.frV2__eyebrow ,.frV3__eyebrow{
  font-family: var(--font-inter);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: var(--facility-dark);
  margin: 0 0 0.5rem;
}
.frV1__heading ,.frV2__heading ,.frV3__heading{
  font-family: var(--font-inter);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.frV2__heading,
.frV3__heading {
  font-family: var(--font-tinos);
}
.frV1__para ,.frV2__para ,.frV3__para {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10, 10, 10, 1);
  margin: 0;
}
.frV1__media img ,
.frV3__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

.frV2 {
  max-width: 760px;
  margin: 0 auto;
}
.frV2__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 0;
}

.frV2__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:rgba(245, 245, 245, 1);
  color: var(--facility-tertiary);
  margin-bottom: 1.25rem;
}
.frV2__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
}

.frV3 .frV3__inner{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.frV3__row--split {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.frV3__row--split, .frV3__row--center {
  padding: 48px 0;
}
.frV3__row--split .frV3__text {
  flex: 1;
}
.frV3__row--split .frV3__media {
  flex: 1;
}

.frV3__row--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.frV3__row--center .frV3__eyebrow {
  border-left: none;
  padding-left: 0;
}
.frV3__row--center .frV3__heading::after {
  content: "";
  display: block;
  width: 128px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: var(--facility-dark);
}
.frV3__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  color:rgba(35, 39, 43, 1);
  margin-bottom: 2rem;
}
.frV3__row--split .frV3__icon {
  margin-left: 2rem;
}
.frV3__icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
}

.frV3__row--split .frV3__lead {
  padding-left: 32px;
  border-left: 3px solid var(--facility-tertiary);
}

@media (max-width: 1024px) {
  .frV1__heading,
  .frV2__heading,
  .frV3__heading {
    font-size: 1.5rem;
  }
  .frV1__eyebrow, .frV2__eyebrow, .frV3__eyebrow {
    font-size: 16px;
  }

  .frV1__para, .frV2__para, .frV3__para {
    font-size: 14px;
  }

  .frV3__icon ,
  .frV3__icon svg {
    width: 48px;
    height: 48px;
  }
  .frV1__row,
  .frV3__row--split {
    gap: 2.25rem;
  }
  .frV3__row--split,
  .frV3__row--center {
    padding: 36px 0;
  }
  .frV1__row {
    padding: 36px 4vw;
  }
}

@media (max-width: 768px) {
  .frV1__row,
  .frV1__row--reverse,
  .frV3__row--split {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 28px 0;
  }
  .frV1__row,
  .frV1__row--reverse {
    padding: 28px 4vw;
  }
  .frV1__row--reverse{
     flex-direction: column-reverse; 
  }
  .frV3__row--center {
    padding: 28px 0;
  }
  .frV1__text,
  .frV3__row--split .frV3__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .frV1__row--reverse .frV1__media {
    order: -1;
  }
  .frV1__media img,
  .frV3__media img {
    height: auto;
  }
  .frV1__heading,
  .frV2__heading,
  .frV3__heading {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  .frV1__eyebrow,
  .frV2__eyebrow,
  .frV3__eyebrow {
    font-size: 15px;
    margin-bottom: 0.35rem;
  }
  .frV1__para,
  .frV2__para,
  .frV3__para {
    font-size: 0.95rem;
  }

  .frV3__icon,
  .frV3__row--split .frV3__icon {
    width: 52px;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
  .frV3__icon svg {
    width: 52px;
    height: 52px;
  }
  .frV3__row--split .frV3__lead {
    border-left: none;
    padding-left: 0;
  }
  .frV2__row {
    padding: 1.75rem 0;
  }
  .frV2__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 1rem;
  }
  .frV2__icon svg {
    width: 34px;
    height: 34px;
  }
  .fr__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .frV1__row,
  .frV1__row--reverse,
  .frV3__row--split,
  .frV3__row--center {
    padding: 20px 0;
    gap: 1rem;
  }
  .frV1__row,
  .frV1__row--reverse {
    padding: 20px 4vw;
  }
  .frV1__heading,
  .frV2__heading,
  .frV3__heading {
    font-size: 1.4rem;
  }
  .frV1__eyebrow,
  .frV2__eyebrow,
  .frV3__eyebrow {
    font-size: 13px;
  }
  .frV1__para,
  .frV2__para,
  .frV3__para {
    font-size: 0.9rem;
  }
  .frV3__icon,
  .frV3__row--split .frV3__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.85rem;
  }
  .frV3__icon svg {
    width: 44px;
    height: 44px;
  }
  .frV3__row--center .frV3__heading::after {
    width: 80px;
  }
  .frV2__icon {
    width: 60px;
    height: 60px;
  }
  .frV2__icon svg {
    width: 30px;
    height: 30px;
  }
  .fr__btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
  }
}

/* Subscribe Form */
.subscribe-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Contact Forms */
form.wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  font-family: var(--font-text);
  padding-top: 1rem;
  border: 0;
}

form.wpcf7-form .input-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-group input.wpcf7-form-control,
.input-group textarea.wpcf7-form-control,
.input-group select.wpcf7-form-control {
  border: 3px solid var(--facility-tertiary);
  border-radius: 10px;
  padding: 0.5rem;
  width: 100%;
  font-size: 1.2rem;
  outline: none;
  background-color: white;
}

.input-group input.wpcf7-form-control.wpcf7-not-valid,
.input-group textarea.wpcf7-form-control.wpcf7-not-valid,
.input-group select.wpcf7-form-control.wpcf7-not-valid {
  border-color: red;
  color: red;
}

.input-group {
  position: relative;
  margin-bottom: 1rem;
}

.input-group textarea.wpcf7-form-control {
  margin-bottom: 1rem;
  resize: none;
}

.input-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition:
    ease all 0.2s,
    background-color 0s;
  font-weight: 600;
  opacity: 0.8;
  pointer-events: none;
}

.input-group p:focus-within label,
.input-group p:not(:has(:placeholder-shown)) label {
  transform: translateY(-2rem);
  font-size: 1rem;
  background-color: #fff;
  padding: 0 8px;
  line-height: 1;
  color: var(--facility-dark);
  opacity: 1;
}

.input-group label.textarea-label {
  top: 15%;
}

.submit-button {
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: white;
  background-color: var(--facility-dark);
  padding: 12px 15px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-text);
  text-align: center;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  transition: var(--transition);
}

.submit-button:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.wpcf7-spinner,
.wpcf7-not-valid-tip {
  display: none;
}

.form-section-wrapper .wpcf7,
.form-section-wrapper .input-group,
.form-section-wrapper p,
.form-section-wrapper .submit-button {
  width: 500px;
  max-width: 90vw;
}

.form-section-wrapper {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 3rem auto;
  padding: 0 2vw;
}

.wpcf7-form-control.wpcf7-file::file-selector-button {
  background-color: var(--facility-dark);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: var(--font-text);
  float: right;
  margin-right: 0;
  transition: 0.4s all ease;
}
.input-group:hover .wpcf7-form-control.wpcf7-file::file-selector-button {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

input:-webkit-autofill {
  background-color: white !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  color: inherit !important;
}
input:-moz-autofill {
  background-color: white !important;
  color: inherit !important;
}
/* Full width form variant */

.form-section-wrapper.fullwidthform .wpcf7,
.form-section-wrapper.fullwidthform .input-group,
.form-section-wrapper.fullwidthform p,
.form-section-wrapper.fullwidthform .submit-button {
  width: 860px;
  max-width: 90vw;
}

.form-section-wrapper.fullwidthform label {
  width: auto;
}

.form-section-wrapper.fullwidthform .wpcf7-response-output {
  margin-top: 1rem;
  width: unset;
}

.contactForm {
  width: 100%;
  font-family: var(--font-inter);
}

.contactForm__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contactForm input,
.contactForm textarea,
.contactForm select,
.contactForm button,
.contactForm label {
  font-family: var(--font-inter);
}

.contactForm__title {
  font-family: var(--font-inter);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 10px;
  color: rgba(51, 51, 51, 1);
}

.contactForm--v3 .contactForm__title {
  font-family: var(--font-tinos);
}

.contactForm__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(136, 136, 136, 1);
  margin: 0 0 8px;
}

.contactForm .form-section-wrapper {
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.contactForm .form-section-wrapper.fullwidthform form.wpcf7-form {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px 20px;
  padding-top: 1.25rem;
}

.contactForm .form-section-wrapper.fullwidthform .wpcf7 {
  width: 100%;
}

.contactForm .form-section-wrapper.fullwidthform .input-group {
  width: calc(50% - 10px);
  max-width: none;
  margin-bottom: 0;
}

.contactForm .form-section-wrapper.fullwidthform .input-group--full {
  width: 100%;
}

.contactForm .form-section-wrapper.fullwidthform .input-group--third {
  width: calc((100% - 40px) / 3);
}

.contactForm .form-section-wrapper.fullwidthform .input-group--col-wide {
  width: calc(46% - 14px);
}

.contactForm .form-section-wrapper.fullwidthform .input-group--col-narrow {
  width: calc(27% - 13px);
}

.contactForm .form-section-wrapper.fullwidthform .input-group p,
.contactForm .form-section-wrapper.fullwidthform p {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.contactForm .form-section-wrapper.fullwidthform .input-group:has(textarea),
.contactForm .form-section-wrapper.fullwidthform .input-group:has(.wpcf7-file),
.contactForm .form-section-wrapper.fullwidthform .input-group:has(.submit-button),
.contactForm .form-section-wrapper.fullwidthform .input-group:has([type="submit"]),
.contactForm .form-section-wrapper.fullwidthform .input-group:has(.wpcf7-response-output) {
  width: 100%;
}

.contactForm .form-section-wrapper.fullwidthform .form-section-break,
.contactForm .form-section-wrapper.fullwidthform h1,
.contactForm .form-section-wrapper.fullwidthform h2,
.contactForm .form-section-wrapper.fullwidthform h3,
.contactForm .form-section-wrapper.fullwidthform h4 {
  width: 100%;
  margin: 8px 0 0;
  padding-bottom: 8px;
  font-family: var(--font-inter);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(15, 23, 43, 1);
}

.contactForm .input-group input.wpcf7-form-control,
.contactForm .input-group textarea.wpcf7-form-control,
.contactForm .input-group select.wpcf7-form-control {
  font-size: 1rem;
  padding: 0.85rem 1rem;
}

.contactForm .input-group select[name="country"],
.contactForm .input-group select[name="state"],
.contactForm .input-group select[name="city"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.99805 9L11.9727 15L17.998 9H5.99805Z' fill='%2332312D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
}

.contactForm .form-section-wrapper.fullwidthform .submit-button,
.contactForm .form-section-wrapper.fullwidthform .wpcf7-submit,
.contactForm .form-section-wrapper.fullwidthform input[type="submit"] {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 6px 0 0 auto;
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: var(--facility-dark);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-inter);
  border-radius: 10px;
  transition: var(--transition);
}

.contactForm .form-section-wrapper.fullwidthform .submit-button:hover,
.contactForm .form-section-wrapper.fullwidthform .wpcf7-submit:hover,
.contactForm .form-section-wrapper.fullwidthform input[type="submit"]:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.contactForm--v1 .input-group input.wpcf7-form-control,
.contactForm--v1 .input-group textarea.wpcf7-form-control,
.contactForm--v1 .input-group select.wpcf7-form-control,
.contactForm--v2 .input-group input.wpcf7-form-control,
.contactForm--v2 .input-group textarea.wpcf7-form-control,
.contactForm--v2 .input-group select.wpcf7-form-control {
  border: 1.5px solid rgba(212, 212, 212, 1);
  border-radius: 10px;
  background-color: #fff;
}
.contactForm--v1 .input-group label,
.contactForm--v2 .input-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(50, 49, 45, 0.7);
  background-color: #fff;
  padding: 0 8px;
}

.contactForm--v1 .input-group:focus-within label,
.contactForm--v1 .input-group:not(:has(select)):not(:has(:placeholder-shown)) label,
.contactForm--v1 .input-group:has(select:not(:has(option[value=""]:checked))) label,
.contactForm--v2 .input-group:focus-within label,
.contactForm--v2 .input-group:not(:has(select)):not(:has(:placeholder-shown)) label,
.contactForm--v2 .input-group:has(select:not(:has(option[value=""]:checked))) label {
  transform: translateY(-2rem);
  font-size: 0.85rem;
  background-color: #fff;
  padding: 0 8px;
  line-height: 1;
  color: var(--facility-dark);
  opacity: 1;
}

.contactForm--v1 .form-section-wrapper.fullwidthform .input-group:has(select),
.contactForm--v2 .form-section-wrapper.fullwidthform .input-group:has(select) {
  width: calc(34% - 10px);
}

.contactForm--v1 .form-section-wrapper.fullwidthform .input-group:has(select) + .input-group,
.contactForm--v2 .form-section-wrapper.fullwidthform .input-group:has(select) + .input-group {
  width: calc(24% - 10px);
}

.contactForm--v1 .form-section-wrapper.fullwidthform .input-group:has(textarea),
.contactForm--v1 .form-section-wrapper.fullwidthform .input-group:has(.wpcf7-file),
.contactForm--v2 .form-section-wrapper.fullwidthform .input-group:has(textarea),
.contactForm--v2 .form-section-wrapper.fullwidthform .input-group:has(.wpcf7-file),
.contactForm--v1 .form-section-wrapper.fullwidthform .input-group:has(textarea) > p,
.contactForm--v1 .form-section-wrapper.fullwidthform .input-group:has(.wpcf7-file) > p,
.contactForm--v2 .form-section-wrapper.fullwidthform .input-group:has(textarea) > p,
.contactForm--v2 .form-section-wrapper.fullwidthform .input-group:has(.wpcf7-file) > p {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contactForm--v1 .input-group:has(textarea) label,
.contactForm--v1 .input-group:has(.wpcf7-file) label,
.contactForm--v2 .input-group:has(textarea) label,
.contactForm--v2 .input-group:has(.wpcf7-file) label {
  position: static;
  order: -1;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto;
  display: block;
  margin: 0 0 6px;
  padding: 0 !important;
  background: transparent !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  font-weight: 600;
  color: rgba(15, 23, 43, 1);
}

.contactForm--v1 .input-group:has(textarea) br,
.contactForm--v1 .input-group:has(.wpcf7-file) br,
.contactForm--v2 .input-group:has(textarea) br,
.contactForm--v2 .input-group:has(.wpcf7-file) br {
  display: none;
}

.contactForm--v1 .input-group:has(textarea):focus-within label,
.contactForm--v1 .input-group:has(.wpcf7-file):focus-within label,
.contactForm--v2 .input-group:has(textarea):focus-within label,
.contactForm--v2 .input-group:has(.wpcf7-file):focus-within label {
  transform: none !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  background: transparent !important;
  padding: 0 !important;
  opacity: 1 !important;
  color: var(--facility-dark) !important;
}

.contactForm .input-group input.wpcf7-form-control.wpcf7-file {
  color: rgba(98, 116, 142, 1);
  cursor: pointer;
  padding: 0.85rem 1rem;
}

.contactForm .input-group input.wpcf7-form-control.wpcf7-file::file-selector-button {
  float: right;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(15, 23, 43, 1);
  font-family: var(--font-inter);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contactForm .input-group:hover input.wpcf7-form-control.wpcf7-file::file-selector-button {
  color: var(--facility-dark);
}

.contactForm--v3 .form-section-wrapper.fullwidthform .input-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.contactForm--v3 .input-group input.wpcf7-form-control,
.contactForm--v3 .input-group textarea.wpcf7-form-control,
.contactForm--v3 .input-group select.wpcf7-form-control {
  border: 1px solid rgba(212, 212, 212, 1);
  border-radius: 8px;
  background-color: rgba(245, 244, 242, 1);
}

.contactForm--v3 .input-group label {
  position: static;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto;
  display: block;
  margin: 0 0 6px;
  padding: 0 !important;
  background: transparent !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  font-weight: 600;
  color: rgba(50, 49, 45, 1) !important;
}
.contactForm--v3 .form-section-break{
  border-bottom: 1px solid var(--facility-dark);
}

.contactForm--v3 .form-section-wrapper.fullwidthform br {
  display: none;
}

.contactForm--v1 .contactForm__inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.contactForm__aside {
  flex: 0 0 280px;
  background-color: var(--facility-dark);
  color: #fff;
  border-radius: 16px;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.contactForm__asideIcon {
  display: inline-flex;
  align-items: center;
}
.contactForm__asideIcon svg {
  width: 30px;
  height: 30px;
}

.contactForm__asideTitle {
  font-family: var(--font-inter);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.contactForm__asideLink {
  color: rgba(255, 255, 255);
  text-decoration: none;
  font-size: 1rem;
}

.contactForm__asideLink:hover {
  color: #fff;
}

.contactForm--v1 .contactForm__main {
  flex: 1;
  min-width: 0;
}

.contactForm--v2 {
  background-color: var(--facility-dark);
}

.contactForm--v2 .contactForm__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contactForm__card {
  width: 100%;
  max-width: 880px;
  background-color: #fff;
  border-radius: 20px;
  padding: 48px 56px;
  box-shadow: 0 30px 60px rgba(15, 23, 43, 0.3);
}

.contactForm--v2 .contactForm__title,
.contactForm--v2 .contactForm__subtitle {
  text-align: center;
}

.contactForm--v2 .contactForm__subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contactForm__infoline {
  margin-top: 28px;
  color: rgba(255, 255, 255);
  font-size: 1rem;
  text-align: center;
}

.contactForm__infoline a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.contactForm__infoline a:hover {
  text-decoration: underline;
}

.contactForm--v3 .contactForm__head {
  border-left: 2px solid var(--facility-dark);
  padding-left: 22px;
  margin-bottom: 16px;
}

.contactForm--v3 .contactForm__infoline {
  margin: 16px 0;
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 212, 212, 1);
  border-bottom: 1px solid rgba(212, 212, 212, 1);
  color: var(--facility-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.contactForm--v3 .contactForm__infoline a {
  color: var(--facility-dark);
  margin: 0 8px;
}

@media screen and (max-width: 1024px) {
  .contactForm__title {
    font-size: 2.1rem;
  }
  .contactForm__card {
    padding: 40px 40px;
  }
}

@media screen and (max-width: 768px) {
  .contactForm__inner {
    padding: 48px 5vw;
  }
  .contactForm__title {
    font-size: 1.8rem;
  }
  .contactForm--v1 .contactForm__inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .contactForm__aside {
    flex: none;
    width: 100%;
    padding: 32px 24px;
  }
  .contactForm__card {
    padding: 32px 24px;
  }

  .contactForm .form-section-wrapper.fullwidthform .input-group {
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  .contactForm__title {
    font-size: 1.6rem;
  }
  .contactForm__card {
    padding: 24px 18px;
    border-radius: 16px;
  }
}

/* Full Employment page*/

.input-group p:has(label.radioLabel) {
  display: flex;
  flex-direction: column-reverse;
}

.input-group p:has(label.radioLabel) br {
  display: none;
}

.input-group p:has(label.radioLabel) label.radioLabel {
  transform: none !important;
  font-size: 18px !important;
  padding: 0 !important;
  padding-bottom: 4px !important;
  position: static !important;
}

/* Hide arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.FormButtonsWrapper p {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.FormButtonsWrapper p br {
  display: none;
}

.FormButtonsWrapper button {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--facility-dark);
  color: white;
  width: 100px;
}

.FormButtonsWrapper button:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.formStepH2 {
  margin-bottom: 14px;
}

.formBreak {
  padding: 6px 0;
}

.employmentForm {
  margin-top: 2rem;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.step {
  width: 48px;
  height: 48px;
  background-color: gray;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: not-allowed;
}

.step.completed,
.step.active {
  background-color: var(--facility-dark);
  cursor: pointer;
}

.wpcf7-radio.wpcf7-not-valid {
  border: 2px solid red;
  border-radius: 4px;
}

.optionalRadio .wpcf7-list-item.first {
  display: none;
}

/* Blog Hero */
.blog-hero {
  height: 50vh;
  position: relative;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-hero-title {
  display: flex;
  align-items: center;
  height: 60%;
  max-height: 175px;
  min-height: 20vh;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--facility-dark);
  border-radius: 0 3vh 3vh 0;
  font-weight: 400;
  font-size: 7vh;
  font-family: var(--font-cursive);
  padding-left: 8vw;
  padding-right: 4vw;
}

@media screen and (max-width: 1080px) {
  .blog-hero {
    max-height: 40vh;
  }
}

@media screen and (max-width: 768px) {
  .blog-hero {
    max-height: 30vh;
  }
  .blog-hero-title {
    font-size: max(38px, min(3rem, 7vw));
    max-height: 100px;
    min-height: 5vh;
  }
}

/* (Non-Home Masthead) Variants */
.innerHero {
  width: 100%;
}

.innerHero__title {
  font-family: var(--font-inter);
  color: black;
  line-height: 1.1;
  margin: 0;
}

.innerHero__subtitle {
  font-family: var(--font-inter);
  color: black;
  margin: 0;
}

/* Variant One */
.innerHero--v1 {
  background-color: var(--facility-light);
  padding: 110px 24px;
}

.innerHero--v1 .innerHero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.innerHero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: black;
}

.innerHero__badge svg {
  width: 28px;
  height: 28px;
}

.innerHero__icon svg {
  width: 22px;
  height: 22px;
}

.innerHero__iconBtn svg {
  width: 18px;
  height: 18px;
}

.innerHero--v1 .innerHero__title {
  font-size: 3.6rem;
  font-weight: 800;
}

.innerHero--v1 .innerHero__subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: black;
}

/* Variant Two */
.innerHero--v2 {
  background-color: white;
  padding: 80px 24px;
}

.innerHero--v2 .innerHero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.innerHero--v2 .innerHero__text {
  border-left: 2px solid var(--facility-dark);
  padding-left: 32px;
}

.innerHero__icon {
  display: inline-flex;
  color: var(--facility-dark);
  margin-bottom: 18px;
}

.innerHero--v2 .innerHero__title {
  font-family: var(--font-tinos);
  font-size: 3rem;
  font-weight: 700;
}

.innerHero--v2 .innerHero__subtitle {
  font-size: 1.15rem;
  margin-top: 12px;
  color: rgba(74, 85, 101, 1);
}

.innerHero__collage {
  position: relative;
  min-height: 420px;
}

.innerHero__collageItem {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 43, 0.12);
}

.innerHero__collageItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.innerHero__collageItem--1 {
  width: 30%;
  height: 128px;
  top: 20px;
  left: 0%;
  z-index: 3;
}

.innerHero__collageItem--2 {
  width: 41%;
  height: 220px;
  bottom: 0px;
  left: 10%;
  z-index: 2;
}

.innerHero__collageItem--3 {
  width: 50%;
  height: 330px;
  top: 50px;
  right: 4%;
  z-index: 1;
}

/* Variant Three */
.innerHero--v3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 24px;
  background-color: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.7)
  );
}

.innerHero--v3 .innerHero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.innerHero__icons {
  display: flex;
  gap: 10px;
}

.innerHero__iconBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(4px);
}

.innerHero--v3 .innerHero__title {
  font-family: var(--font-tinos);
  font-weight: 400;
  font-size: 3.4rem;
  color: white;
}

.innerHero--v3 .innerHero__subtitle {
  font-size: 1.1rem;
  color: white;
  opacity: 0.9;
}

@media screen and (max-width: 1024px) {
  .innerHero--v1 {
    padding: 90px 24px;
  }
  .innerHero--v1 .innerHero__title {
    font-size: 3rem;
  }
  .innerHero--v2 .innerHero__inner {
    gap: 40px;
  }
  .innerHero--v2 .innerHero__title {
    font-size: 2.5rem;
  }
  .innerHero__collage {
    min-height: 340px;
  }
  .innerHero__collageItem--1 {
    height: 104px;
  }
  .innerHero__collageItem--2 {
    height: 178px;
  }
  .innerHero__collageItem--3 {
    height: 268px;
  }
  .innerHero--v3 {
    padding: 100px 24px;
  }
  .innerHero--v3 .innerHero__title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .innerHero--v1 {
    padding: 70px 20px;
  }
  .innerHero--v1 .innerHero__title {
    font-size: 2.4rem;
  }
  .innerHero--v1 .innerHero__subtitle,
  .innerHero--v2 .innerHero__subtitle,
  .innerHero--v3 .innerHero__subtitle {
    font-size: 1rem;
  }
  .innerHero--v2 {
    padding: 60px 20px;
  }
  .innerHero--v2 .innerHero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .innerHero--v2 .innerHero__text {
    border-left: 0;
    border-bottom: 2px solid var(--facility-dark);
    padding-left: 0;
    padding-bottom: 24px;
    text-align: center;
    order: 1;
  }
  .innerHero--v2 .innerHero__title {
    font-size: 2.2rem;
  }
  .innerHero__collage {
    height: 250px;
    min-height: unset;
    order: 2;
  }
  .innerHero__collageItem--1 {
    width: 42%;
    height: 118px;
    top: 0%;
    left: 0;
  }
  .innerHero__collageItem--2 {
    width: 52%;
    height: 140px;
    bottom: 0;
    right: 0;
    left: unset;
  }
  .innerHero__collageItem--3 {
    display: none;
  }
  .innerHero--v3 {
    padding: 80px 20px;
  }
  .innerHero--v3 .innerHero__title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .innerHero--v1 {
    padding: 50px 16px;
  }
  .innerHero__badge {
    width: 54px;
    height: 54px;
  }
  .innerHero--v2 .innerHero__inner {
    gap: 24px;
  }
  .innerHero--v1 .innerHero__title {
    font-size: 2rem;
  }
  .innerHero--v2 {
    padding: 44px 16px;
  }
  .innerHero--v2 .innerHero__title {
    font-size: 1.9rem;
  }
  .innerHero__collage {
    height: 190px;
    min-height: unset;
  }
  .innerHero--v3 {
    padding: 60px 16px;
  }
  .innerHero--v3 .innerHero__title {
    font-size: 2rem;
  }
}

/* Tour Section */
.tourSection {
  background-color: var(--facility-tertiary);
  color: white;
  padding: 30px 2vw;
}

.backgroundWhite {
  background-color: white;
  color: black;
}

.tourSection .wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.tourSection iframe {
  min-width: 30vw !important;
}

.tourSection .wrapper > * {
  width: 45%;
}

.tourMeetingText {
  text-align: start;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .tourSection .wrapper {
    width: 90%;
    padding-top: 12px;
    flex-wrap: wrap;
  }
  .tourSection .wrapper > * {
    width: 100%;
  }
  .tourMeetingText {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 48px;
  }
}

/* Tour Section Variants  */

.tourSection--v1,
.tourSection--v2,
.tourSection--v3 {
  font-family: var(--font-inter);
  box-sizing: border-box;
}

.tourSection--v1 *,
.tourSection--v2 *,
.tourSection--v3 * {
  box-sizing: border-box;
}

.tourBooking {
  width: 100%;
}

.tourCal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.tourCal__heading {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(15, 23, 43, 1);
}

.tourCal__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tourCal__navBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--facility-dark);
  cursor: pointer;
  transition: var(--transition);
}

.tourCal__navBtn:hover {
  background: var(--facility-dark);
  color: white;
}

.tourCal__month {
  min-width: 130px;
  text-align: center;
  font-family: var(--font-inter);
  font-weight: 600;
  color: rgba(15, 23, 43, 1);
}

.tourCal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.tourCal__weekdays span {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(98, 116, 142, 1);
  padding: 6px 0;
}

.tourCal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.tourCal__day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: rgba(15, 23, 43, 1);
  cursor: pointer;
  transition: var(--transition);
}

.tourCal__day--blank {
  pointer-events: none;
}

.tourCal__day--disabled {
  color: rgba(98, 116, 142, 1);
  opacity: 0.45;
  cursor: default;
}

.tourCal__day--available:hover {
  background: color-mix(in srgb, var(--facility-dark) 10%, transparent);
}

.tourCal__day--selected,
.tourCal__day--selected:hover {
  background: var(--facility-dark);
  color: white;
  font-weight: 600;
}

.tourCal__dot {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--facility-dark);
}

.tourCal__day--selected .tourCal__dot {
  background: white;
}

.tourCal__loading {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: rgba(98, 116, 142, 1);
  text-align: center;
}

.tourBooking__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.tourBtn {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tourBtn--primary {
  background: var(--facility-dark);
  color: white;
}

.tourBtn--primary:hover {
  filter: brightness(1.12);
}

.tourBtn--primary:disabled {
  background: var(--facility-dark);
  opacity: 0.5;
  color: white;
  cursor: not-allowed;
  filter: none;
}

.tourBtn--ghost {
  background: transparent;
  border-color: rgba(98, 116, 142, 0.25);
  color: rgba(15, 23, 43, 1);
}

.tourBtn--ghost:hover {
  background: color-mix(in srgb, var(--facility-dark) 8%, transparent);
}

.tourBtn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.tourBooking__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: rgba(15, 23, 43, 1);
  font-family: var(--font-inter);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
}

.tourBooking__chosenDate,
.tourBooking__chosenSlot {
  font-family: var(--font-inter);
  font-weight: 600;
  color: rgba(15, 23, 43, 1);
  margin: 0 0 14px;
}

.tourSlots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

.tourSlot {
  padding: 12px 10px;
  border: 1px solid rgba(98, 116, 142, 0.25);
  border-radius: 10px;
  background: rgba(245, 245, 244, 1);
  color: rgba(15, 23, 43, 1);
  font-family: var(--font-inter);
  cursor: pointer;
  transition: var(--transition);
}

.tourSlot:hover {
  border-color: var(--facility-dark);
}

.tourSlot--selected {
  background: var(--facility-dark);
  color: white;
  border-color: var(--facility-dark);
}

.tourSlots__empty {
  color: rgba(98, 116, 142, 1);
  font-size: 0.9rem;
}

.tourForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tourForm__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(15, 23, 43, 1);
}

.tourForm__field input {
  padding: 12px 14px;
  border: 1px solid rgba(98, 116, 142, 0.25);
  border-radius: 10px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: rgba(15, 23, 43, 1);
  background: rgba(245, 245, 244, 1);
}

.tourForm__field input:focus {
  outline: none;
  border-color: var(--facility-dark);
}

.tourForm__error {
  margin: 0;
  color: #c0392b;
  font-size: 0.85rem;
}

.tourBooking__step--confirm {
  text-align: center;
  padding: 24px 0;
}

.tourConfirm__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--facility-dark) 12%, transparent);
  color: var(--facility-dark);
  margin-bottom: 14px;
}

.tourConfirm__title {
  font-family: var(--font-inter);
  color: rgba(15, 23, 43, 1);
  margin: 0 0 8px;
}

.tourConfirm__detail {
  color: rgba(98, 116, 142, 1);
  margin: 0 auto;
  max-width: 360px;
}

/* Variant One  */
.tourSection--v1 {
  background: var(--facility-dark);
  color: white;
}

.tourV1__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6%;
}

.tourV1__left {
  flex: 1;
}

.tourV1__title {
  font-family: var(--font-inter);
  font-size: 64px;
  margin: 0 0 18px;
  color: white;
}

.tourV1__subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 440px;
  color: white;
}

.tourV1__card {
  flex: 0 0 440px;
  max-width: 440px;
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.tourV1__cardHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(98, 116, 142, 0.25);
}

.tourV1__cardTitle {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  margin: 0 0 6px;
  color: rgba(15, 23, 43, 1);
}

.tourV1__cardMeta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(98, 116, 142, 1);
}

.tourV1__cardIcon {
  color: var(--facility-dark);
}

/* Variant Two*/
.tourSection--v2 {
  background: white;
  color: black;
}

.tourV2__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.tourV2__title {
  font-family: var(--font-tinos);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 14px;
  color: black;
}

.tourV2__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: black;
}

.tourV2__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.tourV2__info {
  background: var(--facility-light);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tourV2__infoIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: black;
  margin-bottom: 12px;
}

.tourV2__infoBlock h4 {
  font-family: var(--font-inter);
  margin: 0 0 8px;
  color: black;
}

.tourV2__infoBlock p {
  margin: 0;
  color: black;
}

.tourV2__expect {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tourV2__expect li {
  position: relative;
  padding-left: 16px;
  color: black;
}

.tourV2__expect li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: black;
}

.tourV2__cal {
  padding: 44px 38px;
  background: white;
}

/*  Variant Three */
.tourSection--v3 {
  background: white;
  color: rgba(15, 23, 43, 1);
}

.tourV3__head {
  text-align: center;
  margin-bottom: 40px;
}

.tourV3__title {
  font-family: var(--font-tinos);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 12px;
  color: rgba(15, 23, 43, 1);
}

.tourV3__subtitle {
  color: rgba(69, 85, 108, 1);
  font-size: 1.05rem;
}

.tourV3__panel {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(245, 245, 245, 1);
  border: 1px solid rgba(98, 116, 142, 0.25);
  border-radius: 22px;
  padding: 36px;
}

.tourV3__sectionLabel {
  display: block;
  font-size: 0.85rem;
  color: rgba(49, 65, 88, 1);
  margin-bottom: 12px;
}

.tourV3__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.tourV3__type {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  border: 1.5px solid rgba(98, 116, 142, 0.25);
  border-radius: 14px;
  background: rgba(245, 245, 245, 1);
  cursor: pointer;
  transition: var(--transition);
}

.tourV3__type.is-active {
  border-color: var(--facility-dark);
  box-shadow: 0 0 0 1px var(--facility-dark);
}

.tourV3__typeIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--facility-dark) 8%, transparent);
  color: var(--facility-dark);
  flex-shrink: 0;
}

.tourV3__type.is-active .tourV3__typeIcon {
  background: var(--facility-dark);
  color: white;
}

.tourV3__typeText {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tourV3__typeText strong {
  font-family: var(--font-inter);
  color: rgba(15, 23, 43, 1);
}

.tourV3__typeText small {
  color: rgba(98, 116, 142, 1);
}

.tourV3__typeCheck {
  color: var(--facility-dark);
  opacity: 0;
}

.tourV3__type.is-active .tourV3__typeCheck {
  opacity: 1;
}

.tourV3__included {
  background: white;
  border: 1px solid rgba(98, 116, 142, 0.25);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.95rem;
  color: rgba(98, 116, 142, 1);
  margin-bottom: 28px;
}

.tourV3__included strong {
  color: rgba(15, 23, 43, 1);
}

.tourV3__calWrap {
  border-top: 1px solid rgba(98, 116, 142, 0.25);
  padding-top: 28px;
}

.tourV3__hours {
  text-align: center;
  margin: 28px 0 0;
  font-size: 0.9rem;
  color: rgba(98, 116, 142, 1);
}

@media screen and (max-width: 1024px) {

  .tourV1__inner {
    gap: 4%;
  }

  .tourV1__card {
    flex: 0 0 380px;
    max-width: 380px;
  }

  .tourV1__title {
    font-size: 2.4rem;
  }

  .tourV1__subtitle {
    font-size: 1rem;
  }

  .tourV2__inner {
    grid-template-columns: 1fr 1.4fr;
  }

  .tourV2__info,
  .tourV2__cal {
    padding: 36px 28px;
  }

  .tourV2__title {
    font-size: 2rem;
  }

  .tourV3__title {
    font-size: 2rem;
  }

  .tourV3__panel {
    padding: 28px;
  }

  .tourCal__day {
    font-size: 0.88rem;
  }

  .tourBtn {
    font-size: 0.9rem;
    padding: 13px 14px;
  }
}

@media screen and (max-width: 768px) {

  .tourV1__inner {
    flex-direction: column;
    gap: 32px;
  }

  .tourV1__left,
  .tourV1__card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .tourV1__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .tourV1__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }

  .tourV2__head {
    margin-bottom: 32px;
  }

  .tourV2__title {
    font-size: 1.8rem;
  }

  .tourV2__subtitle {
    font-size: 1rem;
  }

  .tourV2__inner {
    display: flex;
    flex-direction: column-reverse;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }

  .tourV2__info {
    padding: 32px 24px;
    gap: 24px;
  }

  .tourV2__cal {
    padding: 32px 24px;
  }

  .tourV3__head {
    margin-bottom: 28px;
  }

  .tourV3__title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .tourV3__subtitle {
    font-size: 0.95rem;
  }

  .tourV3__panel {
    padding: 24px 20px;
  }

  .tourV3__types {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tourV3__hours {
    margin-top: 20px;
  }

  .tourCal__day {
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .tourCal__month {
    min-width: 110px;
    font-size: 0.95rem;
  }

  .tourBooking__actions {
    flex-direction: column;
    gap: 10px;
  }

  .tourBtn {
    font-size: 0.9rem;
    padding: 13px 16px;
  }

  .tourSlots {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}

@media screen and (max-width: 480px) {

  .tourV1__title {
    font-size: 1.7rem;
  }

  .tourV1__subtitle {
    font-size: 0.9rem;
  }

  .tourV1__card {
    padding: 20px;
    border-radius: 14px;
  }

  .tourV2__title {
    font-size: 1.6rem;
  }

  .tourV2__info,
  .tourV2__cal {
    padding: 24px 20px;
  }

  .tourV3__title {
    font-size: 1.6rem;
  }

  .tourV3__panel {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .tourV3__type {
    padding: 14px 16px;
  }

  .tourV3__included {
    font-size: 0.88rem;
    padding: 12px 14px;
  }

  .tourCal__heading {
    font-size: 1rem;
  }

  .tourCal__month {
    font-size: 0.88rem;
    min-width: 90px;
  }

  .tourCal__navBtn {
    width: 26px;
    height: 26px;
  }

  .tourCal__weekdays span {
    font-size: 0.7rem;
  }

  .tourCal__day {
    font-size: 0.78rem;
    border-radius: 6px;
  }

  .tourBtn {
    font-size: 0.88rem;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .tourSlots {
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
    gap: 8px;
  }

  .tourSlot {
    padding: 10px 8px;
    font-size: 0.88rem;
    border-radius: 8px;
  }

  .tourForm__field input {
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .tourConfirm__icon {
    width: 52px;
    height: 52px;
  }
}

/* rsvp Section */
.rsvpSection {
  background-color: white;
  color: black;
  padding: 30px 2vw;
}

.rsvpSection .wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.rsvpSection iframe {
  min-width: 30vw !important;
}

.rsvpSection .wrapper > * {
  width: 45%;
}

.rsvpMeetingText {
  text-align: start;
  font-size: 1.5rem;
  padding-block: 8px;
}

@media screen and (max-width: 768px) {
  .rsvpSection .wrapper {
    width: 90%;
    padding-top: 12px;
    flex-wrap: wrap;
  }
  .rsvpSection .wrapper > * {
    width: 100%;
  }
  .rsvpMeetingText {
    text-align: center;
    font-size: 1.4rem;
  }
}

/* Blog Post */
.blog-cards-section {
  padding: 30px 2vw;
}

.blogPostsContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

.blog-cards-container {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  flex-flow: row wrap;
  gap: 48px;
}

.blog-card {
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 310px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  gap: 8px;
  text-decoration: none;
  color: black;
  transition: var(--transition);
}

.blog-card:hover {
  opacity: 0.7;
}

.blog-card-img {
  width: 310px;
  height: 200px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
  align-self: center;
}

.blog-card-img .blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-card-img .blog-img-default {
  height: 100%;
  object-fit: fill;
  display: block;
  margin: 0 auto;
}

.blog-card .blog-h2 {
  text-transform: capitalize;
  font-family: var(--font-titles);
  font-weight: 600;
  width: 100%;
}

.blog-card .blog-paragragh {
  font-size: 1.2rem;
  font-family: var(--font-text);
  width: 100%;
}

.blog-card .blog-date {
  color: gray;
  margin-top: auto;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-direction: column;
}

.page-info {
  font-size: 20px;
  font-weight: bold;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.prev-page,
.next-page {
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  height: 42px;
  width: 42px;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.prev-page:hover,
.next-page:hover {
  opacity: 0.7;
}

.prev-page svg,
.next-page svg {
  fill: white;
  height: 24px;
  width: 24px;
}

.prev-page[disabled],
.next-page[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-bullets {
  display: flex;
  gap: 10px;
}

.page-btn {
  width: 15px;
  height: 15px;
  border: 2px solid black;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn.active {
  background-color: black;
}

.page-btn:hover {
  background-color: gray;
}

@media screen and (max-width: 768px) {
  .blogPostsContainer {
    flex-direction: column-reverse;
  }
}

/* Blog Activities */
.event-calendar-container {
  background-color: var(--facility-tertiary);
}

.event-calendar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 2vw;
  gap: 20px;
}

.iframe-container {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.event-calendar-iframe {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  display: block;
}

/* Gallery section */

.fbContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-icon {
  padding-bottom: 16px;
  border-radius: 50%;
  transition: var(--transition);
}

.fb-icon svg {
  height: 3rem;
  fill: var(--facility-tertiary);
}

.fb-icon:hover {
  opacity: 0.7;
}

.galleryContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 2vw;
  max-width: 920px;
  margin: 0 auto; 
  margin-bottom: 48px;
}

.galleryImage {
  flex: 20%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  object-position: 50% 35%;
}

@media screen and (max-width: 768px) {
  .galleryContainer {
    gap: 10px;
  }
  .galleryImage {
    height: 120px;
  }
}

/* Gallery Variants */
.galleryV1,
.galleryV2,
.galleryV3 {
  background-color: white;
}

.galleryV1__inner,
.galleryV2__inner,
.galleryV3__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Variant One, Flexible Bento */
.galleryV1__head {
  text-align: left;
  margin-bottom: 28px;  
}

.galleryV1__title {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  font-weight: 400;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 10px;
  line-height: 1.1;
}

.galleryV1__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(106, 114, 130, 1);
  max-width: 620px;
  margin: 0;
}

.galleryV1__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.galleryV1__item {
  flex: 0 0 calc(50% - 8px);
  overflow: hidden;
}

.galleryV1__item:nth-child(3n + 1) {
  flex-basis: 100%;
}

.galleryV1__item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.galleryV1__item:nth-child(3n + 1) img {
  height: 500px;
}

/* Variant Two, Labeled Cards */
.galleryV2__head {
  text-align: center;
  margin-bottom: 36px;
}

.galleryV2__title {
  font-family: var(--font-tinos);
  font-size: 2.6rem;
  font-weight: 400;
  color:rgba(35, 39, 43, 1);
  margin: 0 0 12px;
  line-height: 1.1;
}

.galleryV2__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(106, 114, 130, 1);
  max-width: 560px;
  margin: 0 auto;
}

.galleryV2__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.galleryV2__card {
  position: relative;
  flex: 0 0 calc(50% - 14px);
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 14px 30px rgba(15, 23, 43, 0.12);
}

.galleryV2__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galleryV2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%,
   rgba(0, 0, 0, 0.2) 28%,
   rgba(0, 0, 0, 0) 55%,
    transparent 80%);
  pointer-events: none;
}

.galleryV2__caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  font-family: var(--font-inter);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

/* Variant Three, Carousel */
.galleryV3__head {
  text-align: left;
  border-left: 2px solid var(--facility-dark);
  padding-left: 22px;
  margin-left: 62px;
  margin-bottom: 32px;
}

.galleryV3__title {
  font-family: var(--font-tinos);
  font-size: 2.6rem;
  font-weight: 400;
  color: rgba(15, 23, 43, 1);
  margin: 0 0 10px;
  line-height: 1.1;
}

.galleryV3__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(98, 116, 142, 1);
  max-width: 560px;
  margin: 0;
}

.galleryV3__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.galleryV3__viewport {
  flex: 1;
  overflow: hidden;
}

.galleryV3__slide {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.galleryV3__slide[hidden] {
  display: none;
}

.galleryV3__cell {
  flex: 0 0 calc((100% - 40px) / 3);
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
}

.galleryV3__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galleryV3__arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--facility-dark);
  box-shadow: 0 6px 18px rgba(15, 23, 43, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.galleryV3__arrow:hover {
  background-color: var(--facility-dark);
  color: white;
}

.galleryV3__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.galleryV3__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(98, 116, 142, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.galleryV3__dot--active {
  background-color: var(--facility-dark);
  transform: scale(1.2);
}

@media screen and (max-width: 1024px) {
  .galleryV1__title,
  .galleryV2__title,
  .galleryV3__title {
    font-size: 2.2rem;
  }
  .galleryV3__head {
    margin-left: 56px;
  }
  .galleryV3__slide {
    gap: 14px;
  }
  .galleryV3__cell {
    flex-basis: calc((100% - 28px) / 3);
  }
  .galleryV3__arrow {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .galleryV1__title,
  .galleryV2__title,
  .galleryV3__title {
    font-size: 1.9rem;
  }
  .galleryV1__item img {
    height: 230px;
  }
  .galleryV1__item:nth-child(3n + 1) img {
    height: 300px;
  }
  .galleryV2__grid {
    gap: 16px;
  }
  .galleryV2__card {
    flex-basis: calc(50% - 10px);
  }
  .galleryV3__head {
    margin-left: 0;
  }
  .galleryV3__cell {
    flex-basis: calc((100% - 14px) / 2);
  }
  .galleryV3__carousel {
    gap: 8px;
  }
  .galleryV3__arrow {
    display: none;
  }
  .galleryV2__caption{
    left: 12px;
    bottom: 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .galleryV1__item,
  .galleryV1__item:nth-child(3n + 1) {
    flex-basis: 100%;
  }
  .galleryV1__item img,
  .galleryV1__item:nth-child(3n + 1) img {
    height: 220px;
  }
  .galleryV2__grid {
    gap: 12px;
  }
  .galleryV2__card{
    border-radius: 8px;
  }
  .galleryV2__caption {
    left: 8px;
    bottom: 4px;
    font-size: 12px;
  }
}

/* carousel */
#carousel,
#services {
  width: 100%;
  background-color: var(--facility-tertiary);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

.carouselContainer {
  max-width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.carouselContainer .arrowButton {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--facility-light);
  color: var(--facility-tertiary);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.carouselContainer .arrowButton:hover {
  background-color: var(--facility-dark);
}

.carouselContainer .arrowButton:hover svg {
  fill: var(--facility-light);
}

.carouselContainer .arrowButton svg {
  fill: var(--facility-tertiary);
  width: 60px;
  height: 60px;
  padding: 12px;
  transition: var(--transition);
}

.carouselCards {
  max-width: 960px;
  margin: 0 1vw;
  display: flex;
  align-items: center;
  gap: 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overflow: hidden;
}

.carouselCards.no-transition {
  scroll-behavior: auto;
}

.carouselCards.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carouselCards.dragging .carouselCard {
  user-select: none;
  cursor: grab;
}

.carouselCard {
  position: relative;
  min-width: 300px;
  height: 400px;
  background-color: var(--facility-light);
  border-radius: 2vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  text-decoration: none;
  transition: var(--transition);
  background: linear-gradient(
    to bottom,
    var(--facility-light) 0%,
    var(--facility-light) 77%,
    var(--facility-dark) 77%,
    var(--facility-dark) 100%
  );
}

.carouselCardIcon svg {
  fill: var(--facility-tertiary);
  width: 96px;
  height: 96px;
  margin: 1rem 0;
}

.carouselCardIconWithImg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 100%;
}

.carouselCardIconWithImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carouselCard h2 {
  color: black;
  font-weight: 500;
  font-size: 2rem;
  text-decoration: none;
}

.carouselCard .carouselCardButton {
  background-color: var(--facility-dark);
  color: #fff;
  width: 100%;
  height: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.carouselCards:hover > :not(:hover) {
  opacity: 0.8;
}

.carouselCard .carouselCardButton h3 {
  font-weight: 500;
  font-size: 1.2rem;
}

.carouselCard .carouselCardButton svg {
  height: 24px;
  fill: white;
}

@media screen and (max-width: 1080px) {
  .carouselContainer {
    padding: 0 1.5vw;
  }
  .carouselCards {
    max-width: 602px;
    margin: 0 1.5vw;
    gap: 16px;
  }
  .carouselCard {
    min-width: 190px;
    height: 330px;
  }
  .carouselCard h2 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .carouselCards {
    max-width: 70vw;
    margin: 0 1vw;
    gap: 12px;
  }
  .carouselCard {
    min-width: 35vw;
    height: 60vw;
    max-height: 330px;
    border-radius: 2.5vw;
  }
  .carouselContainer {
    padding: 0 2vw;
  }
  .carouselCards {
    max-width: 72vw;
    margin: 0 2vw;
    gap: 2vw;
  }
  .carouselContainer .arrowButton svg {
    fill: var(--facility-tertiary);
    width: 10vw;
    height: 10vw;
    max-width: 60px;
    max-height: 60px;
    padding: 2vw;
    transition: var(--transition);
  }
  .carouselCardIcon svg {
    width: 13vw;
    height: 13vw;
    margin: 1.5vh 0;
  }
  .carouselCard .carouselCardButton h3 {
    font-size: 1rem;
  }
}

/* Featured Testimonials Section */

.featured-testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 24px auto 64px;
}

.testimonial-card .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.stars svg {
  width: 35px;
  height: 35px;
}

.checked {
  fill: orange;
}

.unchecked {
  fill: #d3d3d3;
}

.testimonial-cards-container {
  margin-top: 24px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 25px;
  padding: 0 4vw;
}

.testimonial-card {
  background-color: var(--facility-light);
  padding: 1rem;
  width: 340px;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonialIcon {
  right: 0.5rem;
  top: 1rem;
  position: absolute;
  height: 24px;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* Documents Page */
.documents-section {
  background-color: var(--facility-light);
}

.documents {
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  margin: 0 auto;
  padding: 5vh 2vw;
}

.documentsTable {
  display: flex;
  flex-direction: column;
  border-bottom: solid var(--facility-dark) 4px;
  margin-top: 14px;
}

.documentsTable .row {
  display: flex;
  min-height: 70px;
  padding: 0.6rem;
  gap: 20px;
}

.documentsTable .row.row-head {
  background-color: var(--facility-dark);
  font-weight: 600;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.documentsTable .row.row-shade {
  background-color: #0000001a;
}

.documentsTable .row .col {
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.documentsTable .row .col:nth-child(1) {
  flex: 3;
  text-align: start;
}

.documentsTable .row:nth-child(1) {
  color: white;
}

.documentsTable .row .col .button {
  text-decoration: none;
  color: #fff;
  background-color: var(--facility-dark);
  padding: 12px 30px;
  transition: var(--transition);
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  border: var(--facility-dark) 2px solid;
}

.documentsTable .row .col .button .admissions-documentsSVG {
  margin-left: 12px;
  fill: var(--facility-light);
  height: 1.3rem;
  fill: white;
  transition: var(--transition);
}

.documentsTable .row .col .button:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.documentsTable .row .col .button:hover .admissions-documentsSVG {
  fill: var(--facility-dark);
}

@media screen and (max-width: 768px) {
  .documentsTable .row {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .documentsTable .row .col {
    padding: 0;
    margin: 0;
    flex: 1;
    font-size: 1rem;
  }

  .documentsTable .row .col:nth-child(2) {
    align-self: flex-end;
  }

  .documentsTable .row .col .button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .documentsTable .row:nth-child(1) {
    color: white;
  }
}

/* Payments Page */

.payment-section {
  background-color: var(--facility-light);
}

.payment-section-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5vh 2vw;
}

.payment-content {
  display: flex;
}

.payment-left,
.payment-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  margin: auto;
}

.payment-right {
  background-color: white;
  border-radius: 8px;
  color: rgb(73, 73, 73);
  margin-bottom: 0;
}

.payment-paragraph {
  text-align: start;
  line-height: 1.3;
  font-size: 1.5rem;
  font-family: var(--font-text);
  letter-spacing: 1px;
}

.payment-span {
  font-size: 1.8rem;
  font-family: var(--font-titles);
  font-weight: 600;
}

.payment-button {
  text-decoration: none;
  color: #fff;
  background-color: var(--facility-dark);
  padding: 15px 18px;
  font-size: 1.4rem;
  font-family: var(--font-text);
  border-radius: 12px;
  transition: var(--transition);
  border: var(--facility-dark) 2px solid;
  align-self: start;
}

.payment-button .paymentSVG {
  margin-left: 10px;
  height: 1.4rem;
  fill: white;
  vertical-align: middle;
  transition: var(--transition);
}

.payment-button:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}

.payment-button:hover .paymentSVG {
  fill: var(--facility-dark);
}

@media screen and (max-width: 1080px) {
  .payment-left,
  .payment-right {
    width: 100%;
  }

  .title-header {
    font-size: 2.5rem;
  }

  .payment-paragraph,
  .payment-button {
    font-size: 1.2rem;
  }

  .payment-span {
    font-size: 1.5rem;
  }

  .payment-button .paymentSVG {
    height: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .payment-content {
    flex-direction: column;
    margin-inline: 3vw;
    gap: 20px;
  }

  .payment-left,
  .payment-right {
    width: 100%;
  }

  .title-header {
    font-size: 2.5rem;
  }

  .payment-paragraph,
  .payment-button {
    font-size: 1.2rem;
  }

  .payment-span {
    font-size: 1.5rem;
  }

  .payment-button .paymentSVG {
    height: 1.2rem;
  }
}

/* Video hero section */
.careers-section-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5vh 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.careers-video-container {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  margin-top: 32px;
}
.careers-video {
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 6px solid var(--facility-light);
}
@media screen and (max-width: 768px) {
  .careers-video {
    border: 3px solid var(--facility-light);
  }
}

/* Employment CTA */
.employment-application-section {
  background-color: var(--facility-tertiary);
}
.employment-application-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5vh 2vw;
  text-align: center;
  gap: 40px;
}
.employment-application-text {
  font-size: 2rem;
  font-family: var(--font-text);
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: white;
}
.employment-application-button {
  padding: 1.8rem 3rem;
  font-family: var(--font-text);
  background-color: var(--facility-dark);
  color: white;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}
.employment-application-button:hover {
  background-color: var(--facility-light);
  color: var(--facility-dark);
}
@media screen and (max-width: 768px) {
  .employment-application-text {
    font-size: 1.2rem;
  }
  .employment-application-button {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
}

/* Experience Hero */
.experiences-hero-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--facility-dark);
  border-radius: 0 3vh 3vh 0;
}

.experiences-hero-h1 {
  color: white;
  font-weight: 400;
  font-size: 7vh;
  font-family: var(--font-cursive);
  padding-left: 8vw;
  padding-right: 4vw;
  transform: translateY(30%);
}

.experiences-hyper-links-container {
  display: flex;
  column-gap: 8px;
  padding: 0 2vw;
  transform: translateY(50%);
}

.experiences-hyper-links-container .experiences-hyper-links:first-child {
  flex: 2;
}

.experiences-hyper-links-container .experiences-hyper-links {
  flex: 1;
}

.experiences-hyper-links {
  background-color: var(--facility-light);
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px;
  text-decoration: none;
  width: 100%;
  color: black;
  fill: black;
  font-family: var(--font-text);
  font-weight: 600;
  transition: var(--transition);
}

.experiences-hyper-links svg {
  fill: inherit;
}

.experiences-hyper-links:hover {
  background-color: var(--facility-tertiary);
  color: var(--facility-light);
  fill: var(--facility-light);
}

@media screen and (max-width: 1080px) {
  .experiences-hero {
    max-height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  .experiences-hero {
    max-height: 30vh;
  }
  .experiences-hyper-links {
    padding: 8px;
    font-size: 16px;
  }
}

/* FAQ section */
.faq-section {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 2vw;
  gap: 20px;
}

.faqTitle {
  margin-top: 4rem;
  margin-bottom: 28px;
}

.faq {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background-color: var(--facility-light);
  padding: 20px 30px;
  color: black;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-titles);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  margin-bottom: 0;
  line-height: 1.4;
  transition: ease 0.4s all;
  color: black;
  font-size: 1.2rem;
  font-family: var(--font-text);
  padding-top: 5px;
  text-align: start;
}
.faq-question .icon {
  transition: ease all 0.4s;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 20px;
  }
  .faq-question {
    font-size: 1.2rem;
  }
  .faq-answer {
    font-size: 1rem;
  }
}

/* ===== FAQ Variants ===== */

.faqV1__head,
.faqV2__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faqV3__head {
  text-align: left;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--facility-dark);
  padding-left: 32px;
  padding-block: 16px;
}
.faqV1__title,
.faqV2__title,
.faqV3__title {
  font-family: var(--font-inter);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 0.5rem;
}
.faqV2__title,
.faqV3__title {
  font-family: var(--font-tinos);
}
.faqV1__subtitle,
.faqV2__subtitle,
.faqV3__subtitle {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  color: rgba(136, 136, 136, 1);
  margin: 0;
}

.faqV1 .faqV1__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.faqV1__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.faqV1__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(209, 213, 220, 1);
  border-radius: 10px;
  background: transparent;
  color: var(--facility-dark);
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faqV1__tab.is-active,
.faqV1__tab:hover  {
  background: var(--facility-dark);
  color: var(--facility-light);
  border-color: var(--facility-dark);
}
.faqV1__tabIcon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  transition: var(--transition);
}
.faqV1__tabIcon svg {
  width: 100%;
  height: 100%;
}

.faqV1__tabIcon svg,
.faqV1__tabIcon svg * {
  fill: transparent !important;
  stroke: var(--facility-dark) !important;
}
.faqV1__tab:hover .faqV1__tabIcon svg,
.faqV1__tab:hover .faqV1__tabIcon svg *,
.faqV1__tab.is-active .faqV1__tabIcon svg,
.faqV1__tab.is-active .faqV1__tabIcon svg * {
  stroke: var(--facility-light) !important;
}
.faqV1__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 1);
  margin-bottom: 2.5rem;
}
.faqV1__item {
  display: none;
  background: transparent;
  padding: 24px 28px;
  text-align: left;
}
.faqV1__item:not(:last-child) {
  border-bottom: 1px solid rgba(229, 231, 235, 1);
}
.faqV1__item.is-visible {
  display: block;
}
.faqV1__q {
  font-family: var(--font-inter);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--facility-dark);
  margin: 0 0 0.5rem;
}
.faqV1__a {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(74, 85, 101, 1);
  margin: 0;
}
.faqV1__cta {
  text-align: center;
  background: var(--facility-tertiary);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  color: white;
}
.faqV1__ctaTitle {
  font-family: var(--font-inter);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: white;
}
.faqV1__ctaText {
  font-family: var(--font-inter);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  color: white;
}
.faqV1__ctaBtn {
  display: inline-block;
  background: var(--facility-dark);
  color:white;
  font-family: var(--font-inter);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
}
.faqV1__ctaBtn:hover {
  background: var(--facility-light);
  color: var(--facility-dark);
}

.faqV2 .faqV2__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.faqV2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faqV2__card {
  display: flex;
  gap: 16px;
  background: white;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 14px;
  padding: 24px;
}

.faqV2__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--facility-dark);
  color: white;
}
.faqV2__icon svg {
  width: 22px;
  height: 22px;
}

.faqV2__icon svg,
.faqV2__icon svg * {
  fill: transparent !important;
  stroke: white !important;
}
.faqV2__card:hover .faqV2__icon {
  background: var(--facility-dark);
}

.faqV2__q {
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--facility-dark);
  margin: 0 0 0.5rem;
}
.faqV2__a {
  font-family: var(--font-inter);
  font-size: 0.98rem;
  line-height: 1.6;
  color:rgba(74, 85, 101, 1);
  margin: 0;
}

.faqV3 .faqV3__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.faqV3__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faqV3__item {
  background: transparent;
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
}

.faqV3__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-inter);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--facility-dark);
}
.faqV3__q .icon {
  flex: 0 0 auto;
  width: 18px;
  transition: transform 0.4s ease;
}

.faqV3__a {
  overflow: hidden;
  max-height: 0;
  transition: ease 0.4s all;
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(74, 85, 101, 1);
  padding-top: 12px;
}

@media (max-width: 768px) {
  .faqV2__card{
    flex-direction: column;
    gap: 12px;
  }
  .faqV1__title,
  .faqV2__title,
  .faqV3__title {
    font-size: 2rem;
  }
  .faqV2__grid {
    grid-template-columns: 1fr;
  }
  .faqV1__item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .faqV1__title,
  .faqV2__title,
  .faqV3__title {
    font-size: 1.6rem;
  }
  .faqV1__tab {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  .faqV2__card {
    padding: 18px;
  }
}

/* ===== Services Variants ===== */

.servicesV1 {
  background-color: #ffffff;
}
.servicesV1__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.servicesV1__row {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  min-height: 500px;
  padding: 48px 4vw 0; 
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.servicesV1__row--reverse {
  justify-content: flex-start;
}
.servicesV1__box {
  width: min(46%, 520px);
  height: stretch;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
}
.servicesV1__head {
  padding-left: 20px;
  border-left: 3px solid var(--facility-dark);
  margin-bottom: 18px;
}
.servicesV1__title {
  font-family: var(--font-inter);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.15;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 6px;
}
.servicesV1__subtitle {
  font-family: var(--font-inter);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0;
}
.servicesV1__desc {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(74, 85, 101, 1);
  margin: 0 0 22px;
  white-space: pre-line;
}
.servicesV1__btn,
.servicesV3__btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--facility-dark);
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}
.servicesV1__btn:hover,
.servicesV3__btn:hover {
  background: var(--facility-tertiary);
}

.servicesV2 {
  background-color: #ffffff;
}
.servicesV2__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.servicesV2__head {
  text-align: center;
  margin-bottom: 48px;
}
.servicesV2__heading {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  font-weight: 600;
  color: rgba(16, 24, 40, 1);
  margin: 0 0 12px;
}
.servicesV2__subtitle {
  font-family: var(--font-inter);
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(74, 85, 101, 1);
  max-width: 620px;
  margin: 0 auto;
}
.servicesV2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.servicesV2__card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.servicesV2__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.servicesV2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.servicesV2__body {
  padding: 26px 28px 32px;
}
.servicesV2__title {
  font-family: var(--font-inter);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(16, 24, 40, 1); 
  margin: 0 0 12px;
}
.servicesV2__desc {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(74, 85, 101, 1);
  margin: 0;
  white-space: pre-line;
}

.servicesV3 {
  background-color: #ffffff;
}
.servicesV3__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.servicesV3__head {
  margin-bottom: 56px;
}
.servicesV3__eyebrow {
  display: block;
  font-family: var(--font-inter);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--facility-tertiary);
  margin-bottom: 10px;
}
.servicesV3__heading {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 1);
  margin: 0 0 12px;
}
.servicesV3__subtitle {
  font-family: var(--font-inter);
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(74, 85, 101, 1);
  max-width: 520px;
  margin: 0;
}
.servicesV3__list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.servicesV3__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.servicesV3__row--reverse .servicesV3__media {
  order: 2;
}
.servicesV3__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
}
.servicesV3__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.servicesV3__title {
  font-family: var(--font-inter);
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(16, 24, 40, 1);
  margin: 0 0 16px;
}
.servicesV3__desc {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(74, 85, 101, 1);
  margin: 0 0 24px;
  white-space: pre-line;
}

@media (max-width: 1024px) {
  .servicesV2__grid {
    gap: 28px;
  }
  .servicesV3__row,
  .servicesV3__row--reverse {
    gap: 36px;
  }
  .servicesV1__box {
    padding: 32px;
    width: min(60%, 480px);
  }
}

@media (max-width: 768px) {
  .servicesV1__row,
  .servicesV1__row--reverse {
    min-height: 0;
    padding: 32px 2vw 0;
  }
  .servicesV1__box {
    width:min(80%, 400px);
    padding: 24px;
  }
  .servicesV1__title {
    font-size: 1.5rem;
  }
  .servicesV1__subtitle{
    font-size: 1rem;
  }
  .servicesV1__desc {
    font-size: 0.8rem;
  }
  .servicesV1__btn,
  .servicesV3__btn {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  .servicesV2__grid {
    grid-template-columns: 1fr;
  }
  .servicesV2__heading,
  .servicesV3__heading {
    font-size: 2rem;
  }
  .servicesV3__row,
  .servicesV3__row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .servicesV3__row--reverse .servicesV3__media {
    order: 0;
  }
}
@media (max-width: 480px){
  .servicesV1__box {
    width: min(90%, 320px);
    padding: 20px;
  }
  .servicesV1__title,  .servicesV3__title ,.servicesV2__title {
    font-size: 1.25rem;
  }
  .servicesV1__subtitle,
  .servicesV2__subtitle{
    font-size: 1rem;
  }
  .servicesV1__desc, .servicesV2__desc {
    font-size: 0.9rem;
  }
  .servicesV3__btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .servicesV2__body {
    padding: 16px;
    text-align: center;
  }

}

/* ===== Service Highlights Variants ===== */
.shl__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.shl__icon svg,
.shl1__icon svg,
.shl2__badge svg,
.shl3__badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.shl1 {
  background-color: var(--facility-light);
}
.shl1__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.shl1__heading {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin: 0 0 14px;
}
.shl1__subtitle {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 1);
  margin: 0;
}
.shl1__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.shl1__card {
  flex: 0 1 calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px 52px;
  position: relative;
}

.shl1__icon {
  display: block;
  width: 28px;
  height: 28px;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 20px;
}
.shl1__title {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  margin: 0 0 10px;
}
.shl1__desc {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 1);
  margin: 0 0 22px;
}
.shl1__link {
  position: absolute;
  bottom: 20px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  transition: var(--transition);
}
.shl1__link:hover .shl1__arrow {
  transform: rotate(-45deg);
}
.shl1__link:hover {
  color: var(--facility-dark);
}
.shl1__arrow,
.shl2__arrow {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.shl1__arrow svg,
.shl2__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.shl2 {
  background-color: rgba(245, 245, 245, 1);
}
.shl2__head {
  margin-bottom: 40px;
}
.shl2__heading {
  font-family: var(--font-tinos);
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 10px;
}
.shl2__subtitle {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(85, 85, 85, 1);
  max-width: 560px;
  margin: 0;
}
.shl2__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.shl2__card {
  flex: 0 1 calc((100% - 56px) / 3);
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
  position: relative;
}

.shl2__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.shl2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shl2__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.72);
  color: #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.shl2__body {
  padding: 24px 24px 69px;
}
.shl2__title {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 600;
  color:rgba(35, 39, 43, 1);
  margin: 0 0 10px;
}
.shl2__desc {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(85, 85, 85, 1);
  margin: 0 0 20px;
}
.shl2__btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--facility-dark);
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}
.shl2__btn:hover {
  background: var(--facility-tertiary);
}

.shl3 {
  background-color: rgba(245, 245, 245, 1);
}
.shl3__head {
  padding-left: 22px;
  border-left: 2px solid var(--facility-dark);
  max-width: 720px;
  margin-bottom: 48px;
}
.shl3__eyebrow {
  display: block;
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--facility-dark);
  margin-bottom: 12px;
}
.shl3__heading {
  font-family: var(--font-tinos);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 14px;
}
.shl3__subtitle {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(35, 39, 43, 1);
  margin: 0;
}
.shl3__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.shl3__card {
  flex: 0 1 calc((100% - 56px) / 3);
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  padding: 26px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}
.shl3__card::before,
.shl3__card::after {
  content: "";
  position: absolute;
  inset: 0;
}
.shl3__card::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0.2) 50%);
  z-index: -2;
}
.shl3__card::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(102, 102, 102, 0.2) 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.shl3__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition);
}
.shl3__card:hover::before {
  opacity: 1;
}
.shl3__card:hover .shl3__badge {
  background: rgba(255, 255, 255, 0.5);
}

.shl3__title {
  font-family: var(--font-inter);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
}
.shl3__desc {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 1024px) {
  .shl1__card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .shl2__card,
  .shl3__card {
    flex-basis: calc((100% - 28px) / 2);
  }
  .shl1__head,
  .shl2__head,
  .shl3__head {
    margin-bottom: 36px;
  }
  .shl1__heading {
    font-size: 2.2rem;
  }
  .shl3__heading {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .shl1__grid,
  .shl2__grid,
  .shl3__grid {
    gap: 20px;
  }
  .shl1__card,
  .shl2__card,
  .shl3__card {
    flex-basis: 100%;
  }
  .shl1__heading,
  .shl2__heading {
    font-size: 2rem;
  }
  .shl3__eyebrow {
    font-size: 1.1rem;
  }
  .shl3__heading {
    font-size: 2.3rem;
  }
  .shl3__card {
    min-height: 320px;
  }

  /* Center all text on tablet/phone */
  .shl1__head,
  .shl2__head,
  .shl3__head,
  .shl1__card,
  .shl2__body,
  .shl3__content {
    text-align: center;
  }
  .shl2__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .shl1__icon {
    margin-left: auto;
    margin-right: auto;
  }
  .shl3__head {
    max-width: none;
    padding-left: 0;
    border-left: none;
  }
  /* Center the absolute-positioned actions */
  .shl1__link {
    position: static;
    justify-content: center;
    margin-top: 18px;
  }
  .shl1__card {
    padding-bottom: 32px;
  }
  .shl2__btn {
    position: static;
    justify-content: center;
  }
  .shl2__body {
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .shl1__head,
  .shl2__head,
  .shl3__head {
    margin-bottom: 28px;
  }
  .shl1__heading,
  .shl2__heading {
    font-size: 1.75rem;
  }
  .shl3__eyebrow {
    font-size: 1rem;
  }
  .shl3__heading {
    font-size: 2rem;
  }
  .shl1__card {
    padding: 26px 22px 30px;
  }
  .shl2__body {
    padding: 20px;
  }
  .shl3__card {
    min-height: 280px;
    padding: 22px;
  }
  .shl3__badge {
    width: 42px;
    height: 42px;
  }
}

/* Events section */
.ev__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.ev1__metaIcon svg,
.ev1__badgeIcon svg,
.ev2__metaIcon svg,
.ev2__icon svg,
.ev3__metaIcon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ev1 {
  background-color: #ffffff;
}
.ev1__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.ev1__heading {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 14px;
}
.ev1__subtitle {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(35, 39, 43, 1);
  margin: 0;
}
.ev1__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.ev1__card {
  flex: 0 1 calc((100% - 56px) / 3);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}
.ev1__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.ev1__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ev1__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(10, 10, 10, 1);
  font-family: var(--font-inter);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ev1__badgeIcon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.ev1__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.ev1__title {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 1);
  margin: 0 0 10px;
}
.ev1__desc {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(85, 85, 85, 1);
  margin: 0 0 16px;
}
.ev1__meta {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.ev1__metaRow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-inter);
  font-size: 0.9rem;
  color: var(--facility-tertiary);
  margin-bottom: 8px;
}
.ev1__metaRow:last-child {
  margin-bottom: 0;
}
.ev1__metaIcon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ev1__btn {
  display: block;
  margin-top: auto;
  padding: 12px 22px;
  background: var(--facility-dark);
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}
.ev1__btn:hover {
  background: var(--facility-tertiary);
}

.ev2 {
  background-color: rgba(255, 255, 255, 1);
}
.ev2__head {
  margin-bottom: 40px;
}
.ev2__heading {
  font-family: var(--font-tinos);
  font-size: 2.2rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 10px;
}
.ev2__subtitle {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(35, 39, 43, 1);
  max-width: 560px;
  margin: 0;
}
.ev2__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.ev2__card {
  flex: 0 1 calc((100% - 28px) / 2);
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}
.ev2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: rgba(10, 10, 10, 1);
}
.ev2__icon svg {
  width: 32px;
  height: 32px;
}
.ev2__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ev2__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--facility-tertiary);
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.ev2__title {
  font-family: var(--font-inter);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 14px;
}
.ev2__meta {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.ev2__metaRow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-inter);
  font-size: 0.9rem;
  color: rgba(85, 85, 85, 1);
  margin-bottom: 8px;
}
.ev2__metaRow:last-child {
  margin-bottom: 0;
}
.ev2__metaIcon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ev2__btn {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 12px 22px;
  background: var(--facility-dark);
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}
.ev2__btn:hover {
  background: var(--facility-tertiary);
}

.ev3 {
  background-color: #ffffff;
}
.ev3__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.ev3__heading {
  font-family: var(--font-tinos);
  font-size: 2.6rem;
  font-weight: 400;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 14px;
}
.ev3__subtitle {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(35, 39, 43, 1);
  margin: 0;
}
.ev3__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.ev3__card {
  flex: 0 1 calc((100% - 56px) / 3);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 228, 231, 1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}
.ev3__top {
  padding: 22px 24px;
}
.ev3__cat {
  display: block;
  font-family: var(--font-inter);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(35, 39, 43, 1);
  margin-bottom: 16px;
}
.ev3__date {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: rgba(35, 39, 43, 1);
}
.ev3__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  background: rgba(245, 245, 245, 1);
}
.ev3__title {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 14px;
}
.ev3__meta {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.ev3__metaRow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-inter);
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 1);
  margin-bottom: 8px;
}
.ev3__metaRow:last-child {
  margin-bottom: 0;
}
.ev3__metaIcon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ev3__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 22px;
  background: var(--facility-dark);
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}
.ev3__btn:hover {
  background: var(--facility-tertiary);
}
.ev3__arrow {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.ev3__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}
.ev3__btn:hover .ev3__arrow {
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .ev1__head,
  .ev2__head,
  .ev3__head {
    margin-bottom: 36px;
  }
  .ev1__heading,
  .ev3__heading {
    font-size: 2.2rem;
  }
  .ev1__card,
  .ev3__card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 768px) {
  .ev1__grid,
  .ev2__grid,
  .ev3__grid {
    gap: 20px;
  }
  .ev1__card,
  .ev2__card,
  .ev3__card {
    flex-basis: 100%;
  }
  .ev1__heading,
  .ev2__heading,
  .ev3__heading {
    font-size: 2rem;
  }

  .ev1__head,
  .ev2__head,
  .ev3__head {
    text-align: center;
  }
  .ev2__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .ev1__head,
  .ev2__head,
  .ev3__head {
    margin-bottom: 28px;
  }
  .ev1__heading,
  .ev2__heading,
  .ev3__heading {
    font-size: 1.75rem;
  }
  .ev1__body,
  .ev3__body {
    padding: 20px;
  }
  .ev2__card {
    flex-direction: column;
    gap: 14px;
    padding: 22px;
  }
  .ev3__top {
    padding: 18px 20px;
  }
}

/* Carousel variants */
.cvr__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cvr1__arrow svg,
.cvr2__arrow svg,
.cvr3__ctrl svg {
  width: 22px;
  height: 22px;
  display: block;
}
.cvr2__icon svg,
.cvr3__tabIcon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cvr__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: var(--transition);
}
.cvr__dot--active {
  background: var(--facility-dark);
}

.cvr1 {
  background-color: var(--facility-light);
}
.cvr1__heading {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(35, 39, 43, 1);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cvr1__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cvr1__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: rgba(35, 39, 43, 1);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: var(--transition);
}
.cvr1__arrow:hover {
  background: var(--facility-dark);
  color: #ffffff;
}
.cvr1__viewport {
  flex: 1;
  overflow: hidden;
}
.cvr1__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.cvr1__card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.cvr1__track:hover > .cvr1__card:not(:hover) {
  opacity: 0.45;
}
.cvr2__track:hover > .cvr2__card:not(:hover) {
  opacity: 0.6;
}
.cvr1__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.cvr1__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cvr1__body {
  padding: 22px 22px 26px;
}
.cvr1__title {
  font-family: var(--font-inter);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 10px;
}
.cvr1__desc {
  font-family: var(--font-inter);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(85, 85, 85, 1);
  margin: 0;
}
.cvr1__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.cvr1__dots .cvr__dot {
  background: rgba(255, 255, 255, 0.85);
}
.cvr1__dots .cvr__dot--active {
  background: var(--facility-dark);
}

.cvr2 {
  background-color: #ffffff;
}
.cvr2__heading {
  font-family: var(--font-tinos);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(35, 39, 43, 1);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cvr2__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cvr2__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--facility-tertiary);
  cursor: pointer;
  transition: var(--transition);
}
.cvr2__arrow:hover {
  color: var(--facility-dark);
}
.cvr2__arrow svg {
  width: 28px;
  height: 28px;
}
.cvr2__viewport {
  flex: 1;
  overflow: hidden;
}
.cvr2__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.cvr2__card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(245, 245, 245, 1);
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.cvr2__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 26px;
  color: rgba(35, 39, 43, 1);
}
.cvr2__title {
  font-family: var(--font-inter);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(35, 39, 43, 1);
  max-width: 240px;
  margin: 0 auto 8px;
}
.cvr2__desc {
  font-family: var(--font-inter);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(85, 85, 85, 1);
  max-width: 260px;
  margin: 0 auto;
}

.cvr3 {
  background-color: #ffffff;
}
.cvr3__heading {
  font-family: var(--font-tinos);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(35, 39, 43, 1);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cvr3__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.cvr3__tab {
  text-align: left;
  padding: 18px 20px;
  border: none;
  border-radius: 12px;
  background: var(--facility-tertiary);
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}
.cvr3__tab--active {
  background: var(--facility-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}
.cvr3__tabIcon {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
}
.cvr3__tabTitle {
  display: block;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
}
.cvr3__stage {
  position: relative;
}
.cvr3__viewport {
  overflow: hidden;
  border-radius: 16px;
}
.cvr3__track {
  display: flex;
  transition: transform 0.4s ease;
}

.cvr3__panel {
  flex: 0 0 100%;
  display: flex;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(245, 245, 245, 1);
}
.cvr3__panelMedia {
  flex: 0 0 45%;
  max-height: 480px;
}
.cvr3__panelImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cvr3__panelBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 110px;
}
.cvr3__eyebrow {
  font-family: var(--font-inter);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(85, 85, 85, 1);
  margin-bottom: 14px;
}
.cvr3__panelTitle {
  font-family: var(--font-inter);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 14px;
}
.cvr3__panelDesc {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(85, 85, 85, 1);
  margin: 0;
}
.cvr3__controls {
  position: absolute;
  left: calc(45% + 48px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cvr3__ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: rgba(35, 39, 43, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: var(--transition);
}
.cvr3__ctrl:hover {
  background: var(--facility-dark);
  color: #ffffff;
}
.cvr3__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cvr3__dots .cvr__dot--active {
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .cvr1__heading,
  .cvr2__heading,
  .cvr3__heading {
    font-size: 2.2rem;
    margin-bottom: 36px;
  }
  .cvr1__card,
  .cvr2__card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .cvr3__tabs {
    gap: 14px;
  }
  .cvr3__panelBody {
    padding: 36px 36px 100px;
  }
  .cvr3__controls {
    left: calc(45% + 36px);
    bottom: 32px;
  }
}

@media (max-width: 768px) {
  .cvr1__heading,
  .cvr2__heading,
  .cvr3__heading {
    font-size: 2rem;
  }
  .cvr1__row,
  .cvr2__row {
    gap: 14px;
  }
  .cvr1__card,
  .cvr2__card {
    flex-basis: 100%;
  }
  .cvr3__tabs {
    grid-template-columns: 1fr;
  }
  .cvr3__tab {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .cvr3__tabIcon {
    margin-bottom: 0;
  }
  .cvr3__panel {
    flex-direction: column;
  }
  .cvr3__panelMedia {
    flex-basis: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .cvr3__panelBody {
    padding: 28px;
  }
  .cvr3__controls {
    position: static;
    justify-content: center;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .cvr1__heading,
  .cvr2__heading,
  .cvr3__heading {
    font-size: 1.75rem;
    margin-bottom: 28px;
  }
  .cvr1__arrow {
    width: 38px;
    height: 38px;
  }
  .cvr1__row, .cvr2__row {
    gap: 8px;
  }
  .cvr2__card {
    padding: 28px 20px;
  }
  .cvr3__panelBody {
    padding: 22px;
  }
}

/* ===== Body Section Variants ===== */

.bodySection {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bodySection__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bodySection__badge svg {
  width: 36px;
  height: 36px;
}

.bodySection__heading {
  font-family: var(--font-inter);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: rgba(35, 39, 43, 1);
  margin: 0 0 18px;
}

.bodyV3 .bodySection__heading,
.bodyV4 .bodySection__heading,
.bodyV5 .bodySection__heading {
  font-family: var(--font-tinos);
}

.bodySection__text {
  font-family: var(--font-inter);
  font-size: 24px;
  max-width: 640px;
  margin: 0;
  color: rgba(35, 39, 43, 1);
}

.bodySection__divider {
  width: 2px;
  background: var(--facility-dark);
  align-self: stretch;
}

.bodySection__media {
  border-radius: 24px;
  overflow: hidden;
}

.bodySection__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* V1, centered slate */
.bodyV1 {
  background: var(--facility-tertiary);
  text-align: center;
}

.bodyV1 .bodySection__badge {
  background: var(--facility-light);
  color: var(--facility-dark);
  margin: 0 auto 28px;
}

.bodyV1 .bodySection__heading {
  color: #ffffff;
}

.bodyV1 .bodySection__text {
  color: #ffffff;
  margin: 0 auto;
}

/* V2, dark */
.bodyV2 {
  background: var(--facility-dark);
}

.bodyV2__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.bodyV2__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.bodyV2 .bodySection__badge {
  background: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.bodyV2 .bodySection__heading {
  color: #ffffff;
  margin: 0;
}

.bodyV2 .bodySection__text {
  color: rgba(255, 255, 255, 1);
  margin-left: calc(88px + 24px);
}

/* V3, light + divider */
.bodyV3 {
  background: #ffffff;
}

.bodyV3__inner {
  display: flex;
  align-items: stretch;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.bodyV3 .bodySection__badge {
  background: var(--facility-tertiary);
  color: #ffffff;
  align-self: flex-start;
}

/* V4, card + image */
.bodyV4 {
  background: #ffffff;
}

.bodyV4__card {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--facility-light);
  border-radius: 24px;
  overflow: hidden;
}

.bodyV4__content {
  flex: 1;
  padding: 56px 48px;
}

.bodyV4 .bodySection__badge {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(35, 39, 43, 1);
  margin-bottom: 24px;
}

.bodyV4 .bodySection__text {
  max-width: 560px;
}

.bodyV4__media {
  flex: 0 0 40%;
}

/* V5, gray + image */
.bodyV5.fhs-section {
  background:rgba(245, 245, 245, 1);
}

.bodyV5__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.bodyV5__left {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex: 1;
}

.bodyV5 .bodySection__badge {
  background: #6f8a96;
  color: #ffffff;
  margin-bottom: 24px;
}

.bodyV5__media {
  flex: 0 0 38%;
  aspect-ratio: 4 / 5;
}

@media (max-width: 1024px) {
  .bodySection__heading {
    font-size: 48px;
  }
  .bodySection__text {
    font-size: 1.15rem;
  }
  .bodyV3__inner,
  .bodyV5__inner {
    gap: 24px;
  }
  .bodyV4__content {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .bodySection {
    min-height: 500px;
  }
  .bodySection__heading {
    font-size: 36px;
  }
  .bodySection__text {
    font-size: 1rem;
  }
  .bodySection__badge {
    width: 72px;
    height: 72px;
  }
  .bodyV2__inner {
    text-align: center;
  }
  .bodyV2__head {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  .bodyV2 .bodySection__text {
    margin-left: 0;
  }
  .bodyV3__inner, .bodyV5__inner {
    gap: 16px;
  }

  .bodyV4 .bodySection__badge {
    margin: 0 auto;
  }

  .bodyV4__card,
  .bodyV5__inner {
    flex-direction: column;
    text-align: center;
  }
  .bodyV5__inner {
    align-items: stretch;
  }
  .bodyV4__media {
    aspect-ratio: 16 / 10;
    max-height: 480px;
  }
  .bodyV5__media {
    flex-basis: auto;
    aspect-ratio: 16 / 10;
  }
  .bodyV5 .bodySection__divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .bodySection {
    min-height: 400px;
  }
  .bodySection__heading {
    font-size: 32px;
  }
  .bodySection__text {
    font-size: 0.95rem;
  }
 .bodyV4 .bodySection__badge {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
  .bodyV3 .bodySection__badge {
    margin : 0 auto;
  } 
  .bodySection__divider {
    display: none;
  }
  .bodyV2__head {
    gap: 16px;
  }
  .bodyV3__inner {
    flex-wrap: wrap;
    text-align: center;
  }

  .bodyV4__content {
    padding: 28px 20px;
    text-align: center;
  }
  .bodyV4__media {
    max-height: 320px;
  }
}

.fhs-section {
  padding: 80px 4vw;
}

@media (max-width: 1024px) {
  .fhs-section {
    padding: 64px 4vw;
  }
}

@media (max-width: 768px) {
  .fhs-section {
    padding: 48px 4vw;
  }
}
