@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background-color: #000;
  color: #fff;
}

:root {
  --panel-color: #b9b9b9b0;
}

a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
  color: inherit;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#titleBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  text-align: center;
  background-color: rgba(197, 165, 78, 0);
  background-color: rgba(58, 68, 84, 0.096);
  z-index: 100;
}

.mobile #titleBar {
  height: 50px;
}

/* title bar */
#titleBar .sceneName {
  width: 100%;
  height: 100%;
  line-height: 40px;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-family: Montserrat;
  text-shadow: 0px 0px 5.8px #000000;
}

.mobile #titleBar .sceneName {
  line-height: 50px;
  font-size: 14px;
}

body.fullscreen-enabled #fullscreenToggle {
  display: block;
}

#fullscreenToggle .icon.on {
  display: none;
}

#fullscreenToggle .icon.off {
  display: block;
}

#fullscreenToggle.enabled .icon.on {
  display: block;
}

#fullscreenToggle.enabled .icon.off {
  display: none;
}

#autorotateToggle .icon.on {
  display: none;
}

#autorotateToggle .icon.off {
  display: block;
}

#autorotateToggle.enabled .icon.on {
  display: block;
}

#autorotateToggle.enabled .icon.off {
  display: none;
}

.scenes {
  width: 100%;
  background-color: rgb(58, 68, 84);
  background-color: rgba(58, 68, 84, 0.8);
}

.scenes {
  height: 100%;
}

.scene {
  display: block;
  width: 100%;
  height: 30px;
}

.mobile .scene {
  height: 40px;
}

.scene .text {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile .scene .text {
  line-height: 40px;
}

.no-touch .scene:hover {
  background-color: rgba(197, 165, 78, 0);
  background-color: rgba(58, 68, 84, 0.096);
}

.scene.current {
  background-color: rgba(197, 165, 78, 0);
  background-color: rgba(58, 68, 84, 0.096);
}

/* Hide scene list when only a single scene exists */
body.single-scene,
body.single-scene {
  display: none;
}

/* Link hotspot */

.link-hotspot {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.no-touch .link-hotspot:hover {
  opacity: 1;
}

.mobile .link-hotspot {
  width: 70px;
  height: 70px;
}

.link-hotspot-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.link-hotspot-tooltip {
  position: absolute;
  left: 100%;
  top: 14px;
  /* ( 60 - (16 + 2*8) ) / 2 */

  margin-left: 3px;

  font-size: 16px;

  max-width: 300px;

  padding: 8px 10px;

  border-radius: 5px;

  background: var(--panel-color);

  color: #fff;

  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;

  cursor: pointer;

  opacity: 0;

  -ms-transform: translateX(-8px);
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);

  -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s,
    opacity 0.3s;
  transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s,
    opacity 0.3s;

  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0px 0px 5.8px #000000;
  line-height: 100%;
}

.mobile .link-hotspot {
  top: 19px;
  /* ( 70 - (16 + 2*8) ) / 2 */
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip {
  opacity: 1;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Prevent tooltip from triggering */
.link-hotspot-tooltip {
  pointer-events: none;
}

.no-touch .link-hotspot:hover .link-hotspot-tooltip {
  pointer-events: all;
}

/* Fallback mode without pointer-events (IE8-10) */
.tooltip-fallback .link-hotspot-tooltip {
  display: none;
}

.no-touch .tooltip-fallback .link-hotspot:hover .link-hotspot-tooltip {
  display: block;
}

/* Info hotspot */

.info-hotspot {
  line-height: 1.2em;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}

.no-touch .info-hotspot:hover {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.info-hotspot.visible {
  opacity: 1;
}

.info-hotspot .info-hotspot-header {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: rgba(197, 165, 78, 0);
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out 0.5s,
    border-radius 0.3s ease-in-out 0.5s;
  transition: width 0.3s ease-in-out 0.5s, border-radius 0.3s ease-in-out 0.5s;
}

.mobile .info-hotspot .info-hotspot-header {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.desktop.no-touch .info-hotspot .info-hotspot-header:hover {
  width: 260px;
  border-radius: 5px;
  -webkit-transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.desktop .info-hotspot.visible .info-hotspot-header,
.desktop.no-touch .info-hotspot.visible .info-hotspot-header:hover {
  width: 260px;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.info-hotspot .info-hotspot-icon-wrapper {
  width: 40px;
  height: 40px;
}

.mobile .info-hotspot .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.info-hotspot .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot .info-hotspot-title-wrapper {
  position: absolute;
  left: 40px;
  top: 0;
  width: 0;
  height: 40px;
  padding: 0;
  overflow: hidden;
  -webkit-transition: width 0s 0.4s, padding 0s 0.4s;
  transition: width 0s 0.4s, padding 0s 0.4s;
}

.desktop .info-hotspot.visible .info-hotspot-title-wrapper,
.desktop.no-touch
  .info-hotspot
  .info-hotspot-header:hover
  .info-hotspot-title-wrapper {
  width: 220px;
  padding: 0 5px;
  -webkit-transition: width 0s 0.4s, padding 0s 0.4s;
  transition: width 0s 0.4s, padding 0s 0.4s;
}

.info-hotspot .info-hotspot-title-wrapper:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.info-hotspot .info-hotspot-title {
  display: inline-block;
  vertical-align: middle;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot .info-hotspot-close-wrapper {
  position: absolute;
  left: 260px;
  top: 0;
  height: 40px;
  width: 40px;
  border-top-right-radius: 5px;
  background-color: rgb(78, 88, 104);
  visibility: hidden;
  -ms-transform: perspective(200px) rotateY(90deg);
  -webkit-transform: perspective(200px) rotateY(90deg);
  transform: perspective(200px) rotateY(90deg);
  -ms-transform-origin: 0 50% 0;
  -webkit-transform-origin: 0 50% 0;
  transform-origin: 0 50% 0;
  -webkit-transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s,
    transform 0.3s 0.3s, visibility 0s 0.6s;
  transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s,
    transform 0.3s 0.3s, visibility 0s 0.6s;
}

.desktop .info-hotspot.visible .info-hotspot-close-wrapper {
  visibility: visible;
  -ms-transform: perspective(200px) rotateY(0deg);
  -webkit-transform: perspective(200px) rotateY(0deg);
  transform: perspective(200px) rotateY(0deg);
  -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s,
    visibility 0s 0s;
  transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s,
    visibility 0s 0s;
}

.info-hotspot .info-hotspot-close-icon {
  width: 70%;
  height: 70%;
  margin: 15%;
}

.info-hotspot .info-hotspot-text {
  position: absolute;
  width: 300px;
  height: auto;
  max-height: 200px;
  top: 40px;
  left: 0;
  padding: 10px;
  background-color: rgb(58, 68, 84);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow-y: auto;
  visibility: hidden;
  /* rotate(90deg) causes transition flicker on Firefox 58 */
  -ms-transform: perspective(200px) rotateX(-89.999deg);
  -webkit-transform: perspective(200px) rotateX(-89.999deg);
  transform: perspective(200px) rotateX(-89.999deg);
  -ms-transform-origin: 50% 0 0;
  -webkit-transform-origin: 50% 0 0;
  transform-origin: 50% 0 0;
  -webkit-transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s,
    visibility 0s 0.3s;
  transition: -ms-transform 0.3s, -webkit-transform 0.3s, transform 0.3s,
    visibility 0s 0.3s;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.desktop .info-hotspot.visible .info-hotspot-text {
  visibility: visible;
  -ms-transform: perspective(200px) rotateX(0deg);
  -webkit-transform: perspective(200px) rotateX(0deg);
  transform: perspective(200px) rotateX(0deg);
  -webkit-transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s,
    transform 0.3s 0.3s, visibility 0s 0s;
  transition: -ms-transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s,
    transform 0.3s 0.3s, visibility 0s 0s;
}

/* Info hotspot modal */

.desktop .info-hotspot-modal {
  display: none;
}

.info-hotspot-modal {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 11000 !important;
  background-color: rgba(0, 0, 0, 0.5);
  line-height: 1.2em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out 0.5s, visibility 0s 0.7s;
  transition: opacity 0.2s ease-in-out 0.5s, visibility 0s 0.7s;
}

.info-hotspot-modal.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0s 0s;
  transition: opacity 0.2s ease-in-out, visibility 0s 0s;
}

.info-hotspot-modal .info-hotspot-header {
  position: absolute;
  top: 60px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 50px;
  background-color: rgba(197, 165, 78, 0);
  background-color: rgba(58, 68, 84, 0.096);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out 0.2s;
  transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal.visible .info-hotspot-header {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out 0.2s;
  transition: opacity 0.3s ease-in-out 0.2s;
}

.info-hotspot-modal .info-hotspot-icon-wrapper {
  width: 50px;
  height: 50px;
}

.info-hotspot-modal .info-hotspot-icon {
  width: 90%;
  height: 90%;
  margin: 5%;
}

.info-hotspot-modal .info-hotspot-title-wrapper {
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  width: auto;
  height: 50px;
  padding: 0 10px;
}

.info-hotspot-modal .info-hotspot-title-wrapper:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.info-hotspot-modal .info-hotspot-title {
  display: inline-block;
  vertical-align: middle;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal .info-hotspot-close-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(78, 88, 104);
  background-color: rgba(78, 88, 104, 0.8);
  cursor: pointer;
}

.info-hotspot-modal .info-hotspot-close-icon {
  width: 70%;
  height: 70%;
  margin: 15%;
}

.info-hotspot-modal .info-hotspot-text {
  position: absolute;
  top: 110px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 10px;
  background-color: rgb(58, 68, 84);
  background-color: rgba(58, 68, 84, 0.8);
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;

  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.info-hotspot-modal.visible .info-hotspot-text {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out 0.4s;
  transition: opacity 0.3s ease-in-out 0.4s;
}

/* View control buttons */

.viewControlButton {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  background-color: rgba(197, 165, 78, 0);
  background-color: rgba(58, 68, 84, 0.096);
}

body.view-control-buttons .viewControlButton {
  display: block;
}

/* Hide controls when width is too small */
@media (max-width: 600px) {
  body.view-control-buttons .viewControlButton {
    display: none;
  }
}

.viewControlButton .icon {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

/* Center is at margin-left: -20px */
.viewControlButton-1 {
  margin-left: -145px;
}

.viewControlButton-2 {
  margin-left: -95px;
}

.viewControlButton-3 {
  margin-left: -45px;
}

.viewControlButton-4 {
  margin-left: 5px;
}

.viewControlButton-5 {
  margin-left: 55px;
}

.viewControlButton-6 {
  margin-left: 105px;
}

/* better styles */
/* Navigation Menu */
.nav-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--panel-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 8px;
  border: 2px solid #f4f4f4;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* given styles from figma */
/* .nav-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  -webkit-backdrop-filter: blur(5.599999904632568px);
  padding: 8px 24px;
  border-radius: 8px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: #D2D2D273;
  backdrop-filter: blur(5.599999904632568px);
  border: 1px solid;
} */

.nav-item {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: relative;
}

/* Tooltip styles */
.nav-item::after {
  content: attr(tool-tip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  padding: 6px 12px;
  /* background: #D2D2D273; */
  background: var(--panel-color);
  color: white;
  font-size: 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1002;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  /* border: 1px solid; */
}

/* Tooltip arrow */

/* Show tooltip on hover */
.nav-item:hover::after {
  opacity: 1;
  visibility: visible;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0px 0px 5.8px #000000;
  line-height: 100%;
}

/* Mobile styles for tooltips */
@media (max-width: 768px) {
  .nav-item::after {
    font-size: 12px;
    padding: 4px 10px;
  }

  .nav-item::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(58, 68, 84, 0.9);
  }
}

/* Small mobile devices */
@media (max-width: 320px) {
  .nav-item::after {
    font-size: 11px;
    padding: 3px 8px;
  }
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-item img {
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-item:hover img {
  opacity: 1;
}

.nav-item .icon.on,
.nav-item .icon.off {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

.nav-item .icon.on {
  display: none;
}

.nav-item .icon.off {
  display: block;
}

#autorotateToggle.enabled .icon.on,
#fullscreenToggle.enabled .icon.on {
  display: block;
}

#autorotateToggle.enabled .icon.off,
#fullscreenToggle.enabled .icon.off {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    gap: 12px;
    width: auto;
    min-width: 280px;
    justify-content: space-between;
  }

  .nav-item {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .nav-item img,
  .nav-item .icon.on,
  .nav-item .icon.off {
    width: 22px;
    height: 22px;
  }
}

/* Small mobile devices */
@media (max-width: 320px) {
  .nav-menu {
    min-width: 240px;
    padding: 8px 12px;
    gap: 8px;
  }

  .nav-item {
    width: 38px;
    height: 38px;
  }

  .nav-item img,
  .nav-item .icon.on,
  .nav-item .icon.off {
    width: 20px;
    height: 20px;
  }
}

#floorsList {
  position: fixed;
  bottom: 5.6rem;
  right: 10.5rem;
  background: var(--panel-color);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 2px solid #f4f4f4;
  padding: 10px 0;
  min-width: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 70px) scale(0.1);
  /* Start small and lower */
  transform-origin: bottom right;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 1001;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  pointer-events: none;
  /* Prevent interaction when hidden */
}

#roomsList {
  position: fixed;
  bottom: 90px;
  bottom: 5.6rem;
  right: 11.8rem;
  background: var(--panel-color);
  backdrop-filter: blur(10px);
  border: 2px solid #f4f4f4;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 70px) scale(0.1);
  /* Start small and lower */
  transform-origin: bottom right;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 1001;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  pointer-events: none;
  /* Prevent interaction when hidden */
}

#roomsList.visible,
#floorsList.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) scale(1);
  /* Full size at final position */
  pointer-events: auto;
  /* Allow interaction when visible */
}

.room-item,
.floor-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  font-weight: bolder;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: "Montserrat", sans-serif;
}

.room-item:last-child,
.floor-item:last-child {
  border-bottom: none;
}

.room-item:hover,
.floor-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.room-item.active,
.floor-item.active {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

span.text-span {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0px 0px 5.8px #000000;
  line-height: 100%;
}

/* Contact block styles */
.contact-card {
  display: none;
  position: fixed;
  bottom: 120px;
  left: 27px;
  text-shadow: 0px 0px 6.17px #000000;
  background: var(--panel-color);
  border: 3px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  backdrop-filter: blur(2.5px);
  padding: 36px 26px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 1px;
  z-index: 9999;
}

.agentContainer,
.phoneContainer,
.mail {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.agentContainer {
  margin-bottom: 34px;
}

.agentContainer img {
  margin-right: 8px;
}

.contact-info h2 {
  font-size: 23.2px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 7px;
  border-bottom: 2px solid #fefefe;
  margin-bottom: 34px;
  letter-spacing: 0.4px;
}

.mail img {
  width: 64px;
  height: 64px;
}

.agentDetails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agentDetails h5 {
  font-size: 34px;
  font-weight: 600;
}

.agentDetails p {
  font-size: 21px;
}

.phoneNumbers {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.phoneContainer {
  margin-bottom: 12px;
}

.phoneNumbers p,
.mail {
  font-size: 18px;
  font-weight: 500;
}

.mail p {
  letter-spacing: 0px;
}

.phoneContainer img,
.mail img {
  width: 35px;
  height: 35px;
  margin-right: 14px;
  object-fit: cover;
}

.contact-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 25px;
  left: 27px;
  height: 64px;
  width: 64px;
  background: var(--panel-color);
  border: 2px solid #f4f4f4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 9px;
  backdrop-filter: blur(10px);
  /* padding: 36px 26px; */
  cursor: pointer;
  z-index: 9999;
}

.contact-icon-container img {
  height: 32px;
  width: 32px;
  object-fit: cover;
}

.closeBtnWrapper {
  display: none;
  margin-top: -18px;
  margin-bottom: 23px;
  text-align: right;
}

.closeBtnWrapper button {
  font-size: 12px;
  font-weight: 500;
  color: white;
  text-shadow: 0px 0px 6.17px #000000;
  background: var(--panel-color);
  padding: 8px 19px;
  border: 2px;
  border-radius: 4px;
  backdrop-filter: blur(6.73px);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

.closeBtnWrapper button::before {
  content: "";
  position: absolute;
  inset: 0; /* covers the whole card */
  border-radius: inherit;
  padding: 2px; /* border thickness */
  background: linear-gradient(to right, #F5F5F5 0%, #DCDCDC 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; /* so clicks pass through */
}

/* Mobile styles */
@media (max-width: 768px) {
  #roomsList,
  #floorsList {
    position: fixed;
    bottom: 90px;
    left: 20px;
    right: 20px;
    width: auto;
    max-height: 50vh;
  }

  .room-item,
  .floor-item {
    padding: 15px 20px;
  }
 
  
  
}

.swiper {
  background: var(--panel-color);
  width: 90% !important;
  max-width: 800px;
  border-radius: 12px;
  border: 2px solid #f4f4f4;
  padding: 20px;
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(8.5px);
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.swiper-img {
  width: 60%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  margin: 0 30px;
}

.swiper-floor {
  text-align: center;
  color: #fff;
  padding: 30px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
}

@media (max-width: 768px) {
  .swiper {
    width: 95% !important;
    padding: 10px;
  }

  .swiper-img {
    max-height: 70vh;
    width: 80%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 0px;
  }

  .swiper-floor {
    font-size: 1.2em;
    padding: 10px 0 20px 0;
  }

  .close-swiper {
    padding: 30px !important;
  }

  #fullscreenToggle, #contactToggleDesktop {
    display: none;
  }

  .contact-card {
  position: fixed;
  height: fit-content;
  top: 50%;     /* center vertically */
  left: 50%;    /* center horizontally */
  transform: translate(-50%, -50%); /* adjust for own width & height */
}


  .closeBtnWrapper {
  display: block;
  }

}

@media (min-width: 768px) {
  #contactToggleMobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .swiper {
    width: 100% !important;
    padding: 5px;
  }

  .swiper-img {
    max-height: 60vh;
  }
}

span#closeSwiper {
  position: absolute;
  z-index: 10000;
  cursor: pointer;
  top: 15px;
}

.close-swiper {
  display: flex;
  justify-content: flex-end;
  padding: 15px;
}
