* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --turquoise: #4FB0C6;
  --sand: #F2C38F;
  --slate: #1A2930;
  --nav-h: 72px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--slate);
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: #f8fbfc !important;
}

.section-sand {
  background: rgba(242,195,143,.15) !important;
}

.badge-soft {
  background: rgba(79,176,198,.15) !important;
  color: var(--turquoise) !important;
}

.btn-primary {
  background: var(--turquoise) !important;
  border-color: var(--turquoise) !important;
}

.btn-primary:hover {
  background: #3a9fb4 !important;
  border-color: #3a9fb4 !important;
}

.text-primary {
  color: var(--turquoise) !important;
}

.hero-pano {
  position: relative;
  width: 100vw;
  height: 95vh;
  min-height: 95vh;
  background: #000;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-pano #slides,
.hero-pano .slide,
.hero-pano .pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.6)
  );
  pointer-events: none;
}

.hero-overlay .container,
.hero-overlay .btn {
  pointer-events: auto;
}

.hero-content {
  color: #fff;
}

.loader {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.loader img {
  width: 60px;
  height: 60px;
}


.loader.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.pano {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pnlm-container,
.pnlm-render-container {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.pnlm-render-container canvas {
  width: 100% !important;
  height: 100% !important;
}

.pnlm-controls-container,
.pnlm-hot-spot-debug-indicator,
.pnlm-about-msg {
  display: none !important;
}

.pnlm-container * {
  box-sizing: border-box;
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(79,176,198,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquoise);
  font-size: 22px;
}

.card {
  border: 0;
  border-radius: 22px;
  background: rgba(10,48,73,.06) !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(79,176,198,.1);
  color: var(--slate);
}

.custom-navbar.health {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
}

.custom-nav .nav-link {
  font-weight: bold;
  font-size: 14px;
  color: var(--text-main) !important;
  padding: 0 30px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
}

body.white .custom-nav .nav-link:hover {
  color: var(--turquoise) !important;
}

.nav-item.is-active a.nav-link {
  color: var(--turquoise) !important;
}

.navbar-brand img {
  height: 25px;
}

.logo {
  height: 25px;
  transition: opacity .25s ease;
}

.logo-dark {
  display: none;
}

.logo-white {
  display: block;
}

.custom-navbar.is-scrolled .logo-white {
  display: none;
}

.custom-navbar.is-scrolled .logo-dark {
  display: block;
}

.custom-nav .nav-link:hover {
  color: rgba(255,255,255,.7) !important;
}

.home-dd,
.nav-new-dd {
  position: relative;
}

.home-dd-menu,
.nav-new-menu {
  position: absolute;
  top: 47px;
  left: 100%;
  transform: translateX(-50%);
  background: rgba(11,15,15,.88) !important;
  border: 1px solid rgba(255,255,255,.05) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 99;
}

.home-dd-menu {
  display: flex;
  gap: 20px;
  padding: 30px;
}

.nav-new-menu {
  min-width: 200px;
}

.home-dd:hover .home-dd-menu,
.nav-new-dd:hover .nav-new-menu {
  opacity: 1;
  visibility: visible;
}

body.white .custom-navbar.health {
  background: transparent !important;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  backdrop-filter: blur(0) saturate(100%);
  transition: all .3s ease;
}

.custom-navbar.health .nav-link {
  color: #fff !important;
}

.custom-navbar.health .burger-menu span {
  background: #fff;
}

.navbar.navbar-expand-lg.fixed-top.shadow-sm.custom-navbar.health.is-scrolled {
  background: #fff !important;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: all .6s ease;
}

.navbar.navbar-expand-lg.fixed-top.shadow-sm.custom-navbar.health.is-scrolled .nav-link {
  color: #333 !important;
  transition: all .6s ease;
}

.navbar.navbar-expand-lg.fixed-top.shadow-sm.custom-navbar.health.is-scrolled .nav-item.is-active a.nav-link {
  color: var(--turquoise) !important;
}

body:has(.custom-navbar.health.fixed-top):not(:has(:target)) 
.custom-navbar.health .burger-menu span {
  background: #fff;
}

.custom-navbar.health .nav-link:hover {
  opacity: .7;
}

.home-dd-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  width: 150px;
  flex-shrink: 0;
}

.home-dd-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: .25s ease;
}

.home-dd-item:hover img {
  opacity: .7;
}

.home-dd-item span {
  opacity: .9;
}

.nav-new-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: .15s ease;
}

.nav-new-item:hover {
  color: rgba(255,255,255,.7);
  background: #2c3032 !important;
}

footer {
  background: var(--slate);
  color: #fff !important;
}

footer p {
  color: #fff !important;
}

.footer-social a {
  color: var(--turquoise) !important;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: .5rem 1.25rem;
  background: #fff;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--turquoise);
  color: #fff;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: #fff;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: #666;
  line-height: 1.6;
}

body.white .faq-item.active .faq-answer p {
  color: #666;
}

.back-to-top,
.back-to-top::before {
  background: #4FB0C6;
}

#form-message,
.text-success {
  color: var(--turquoise) !important;
}

.date-picker-popup td:hover {
  background: var(--turquoise) !important;
}

.slide {
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 992px) {
  body.white .custom-navbar {
    background: #fff !important;
    backdrop-filter: blur(100px) saturate(120%);
  }

  .navbar.navbar-expand-lg.fixed-top.shadow-sm.custom-navbar.health.is-scrolled{
    background: rgba(11,15,14,1) !important;
  }

  .navbar-brand.fw-bold{
    z-index: 9999;
  }

  .custom-navbar.is-scrolled .logo-dark {
    display: none;
  }

  .navbar.navbar-expand-lg.fixed-top.shadow-sm.custom-navbar.health.is-scrolled .nav-link{
    color: #fff !important;
  }

  .navbar.navbar-expand-lg.fixed-top.shadow-sm.custom-navbar.health .nav-link{
    color: #fff !important;
    text-align: center;
    font-size: 1.3rem;
  }

  .custom-navbar.is-scrolled .logo-white {
    display: block;
  }

  .hero-pano {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .hero-pano {
    min-height: 500px;
  }
}
