:root {
  --dark: #171313;
  --accent: #d35453;
  --white: #ffffff;
  --black: #0e0e0e;
  --secondary: #382D2D;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: "Philosopher", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

#navbarId,
#navbarId-sq {
  background-color: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar img {
  max-width: 100px;
  height: auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  flex-shrink: 0;
  padding: 10px;
  row-gap: 10px;
  column-gap: 10px;
}

.navbar-brand img {
  max-width: 100px;
  height: auto;
}

.navbar-brand span {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}

.navbar-inner {
  display: flex;
  align-items: center;
  padding: 0 32px;
  min-height: 72px;
  flex-wrap: wrap;
}

.navbar-phone {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  margin-right: 32px;
  flex-shrink: 0;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.navbar-phone i {
  color: var(--accent);
  margin-right: 5px;
}

.navbar-phone:hover {
  color: var(--accent);
}

.navbar-links-left,
.navbar-links-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.navbar-links-left {
  justify-content: flex-end;
  padding-right: 50px;
  display: flex;
  align-items: center;
  row-gap: 28px;
  column-gap: 28px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.navbar-links-right {
  justify-content: flex-start;
  padding-left: 50px;
  display: flex;
  align-items: center;
  row-gap: 28px;
  column-gap: 28px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.navbar-links-left a,
.navbar-links-right a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
  white-space: nowrap;
}

.navbar-links-left a:hover,
.navbar-links-right a:hover {
  color: var(--accent);
}

.navbar-toggler {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
  color: var(--white);
  font-size: 1.3rem;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.lang-dropdown .lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.lang-dropdown .lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-dropdown .dropdown-menu {
  background-color: var(--secondary);
  border: 1px solid rgba(211,84,83,0.3);
  min-width: 110px;
}

.lang-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  padding: 8px 16px;
}

.lang-dropdown .dropdown-item:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--white);
  white-space: nowrap;
  margin-left: 28px;
  transition: background-color 0.25s, border-color 0.25s;
  row-gap: 8px;
  column-gap: 8px;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

#mobileMenu {
  background-color: var(--dark);
  padding: 16px 0;
}

#mobileMenu .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

#mobileMenu .nav-link:hover {
  color: var(--accent);
}

#mobileMenu .dropdown-menu {
  position: static;
  background-color: var(--secondary);
  border: none;
  padding-left: 8px;
}

.hero-section {
  position: relative;
}

.hero-img {
  height: 92vh;
  object-fit: cover;
  object-position: center center;
}

.carousel-item {
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 14, 14, 0.55);
  z-index: 1;
  pointer-events: none;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0px;
  right: 0px;
  transform: translateY(-50%);
  text-align: left;
  padding: 0 80px;
  max-width: 820px;
  margin-left: 100px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 36px;
  text-shadow: none;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 2px solid var(--accent);
  transition: background-color 0.3s, color 0.3s;
  row-gap: 10px;
  column-gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  position: absolute;
  z-index: 10;
}

.carousel-control-prev {
  left: 24px;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  position: absolute;
  z-index: 10;
}

.carousel-control-next {
  right: 24px;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  position: absolute;
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--accent);
  opacity: 1;
}

.about-section {
  background-color: var(--black);
  overflow: hidden;
  padding-top: 80px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.about-text-col {
  padding: 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  background-position-x: right;
  background-position-y: center;
}

.shape {
  background-image: url("https://api.intermedia-web.com/getSavedAsset/SagittariusHotel/sagittarius.al/sagittarius.al_2026-06-08_10-06-07-862/image/shape.png");
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: right 10px bottom 10px;
  background-position-x: right 10px;
  background-position-y: bottom 10px;
}

.about-text-inner {
  padding: 80px 70px 80px 80px;
}

.about-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.about-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  row-gap: 10px;
  column-gap: 10px;
}

.about-img-col {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.about-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.facilities-section {
  background-color: var(--black);
  padding: 150px 0 0 0;
}

.facilities-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 16px;
  row-gap: 16px;
  column-gap: 16px;
}

.facility-card {
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 36px 32px 36px;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.3s;
}

.facility-icon {
  font-size: 3rem;
  color: var(--accent);
}

.facility-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.rooms-section {
  background-color: var(--black);
  padding: 180px 0;
}

.rooms-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 16px;
  row-gap: 16px;
  column-gap: 16px;
}

.room-card {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.room-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.room-badge {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 10px 28px 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0px 0px, 92% 0px, 100% 50%, 92% 100%, 0px 100%);
  row-gap: 8px;
  column-gap: 8px;
}

.room-badge-arrow {
  font-size: 0.65rem;
}

.room-details {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(to top, rgba(14,14,14,0.85) 0%, transparent 100%);
  display: flex;
  gap: 20px;
  padding: 28px 18px 16px 18px;
  background-image: linear-gradient(to top, rgba(14, 14, 14, 0.85) 0%, transparent 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  row-gap: 20px;
  column-gap: 20px;
}

.room-detail-item {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  row-gap: 6px;
  column-gap: 6px;
}

.room-detail-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

.rooms-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.btn-rooms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--accent);
  row-gap: 10px;
  column-gap: 10px;
}

.stats-section {
  background-color: var(--black);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 16px;
}

.stat-card {
  background-color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px 28px 32px;
  min-height: 200px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.testimonials-section {
  background-color: var(--black);
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.testimonials-bg-deco {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 500px;
  height: 500px;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/SagittariusHotel/sagittarius.al/sagittarius.al_2026-06-08_10-06-07-862/image/shape.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  pointer-events: none;
  background-position-x: right;
  background-position-y: bottom;
}

.testimonials-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-inner {
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-head);
  font-size: 10rem;
  line-height: 0.6;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.testimonials-carousel .owl-nav {
  display: none;
}

.gallery-section {
  background-color: var(--secondary);
  padding: 80px 0;
}

.gallery-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.gallery-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white) !important;
  color: var(--black) !important;
  width: 52px;
  height: 52px;
  border-radius: 50% !important;
  font-size: 1.1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 16px;
}

.gallery-carousel .owl-nav button.owl-prev {
  left: 24px;
}

.gallery-carousel .owl-nav button.owl-next {
  right: 24px;
}

.gallery-carousel .owl-nav button:hover {
  background-color: var(--accent) !important;
  color: var(--white) !important;
}

.gallery-grid-section {
  background-color: var(--black);
  padding: 80px 0 100px 0;
}

.gallery-row-3,
.gallery-row-4 {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid-item {
  overflow: hidden;
}

.gallery-grid-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.cover-main {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%,  rgba(0, 0, 0, 0.417) 50%, rgba(0,0,0,0.90) 100%);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding-top: 200px;
  padding-bottom: 200px;
  z-index: 2;
  position: relative;
}

.cover-main img {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

.cover-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%,  rgba(0, 0, 0, 0.417) 50%, rgba(0,0,0,0.90) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero-breadcrumb a {
  color: var(--accent);
  transition: opacity 0.2s;
}

.page-hero-breadcrumb a:hover {
  opacity: 0.8;
}

.page-hero-breadcrumb i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.rooms-page-section {
  background-color: var(--black);
  padding: 80px 0 100px 0;
}

.rooms-page-header {
  text-align: center;
  margin-bottom: 56px;
}

.rooms-page-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.rooms-page-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
}

.room-page-card {
  background-color: var(--secondary);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-page-img-wrap {
  position: relative;
  overflow: hidden;
}

.room-page-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.room-page-card:hover .room-page-img {
  transform: scale(1.04);
}

.room-page-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 8px 20px;
}

.room-page-body {
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-page-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.room-page-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.room-page-facilities {
  list-style: none;
  padding: 16px 0;
  margin: 0 0 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.room-page-facilities li {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  row-gap: 8px;
  column-gap: 8px;
}

.room-page-facilities li i {
  color: var(--accent);
  font-size: 0.8rem;
  width: 14px;
}

.room-page-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
}

.room-meta-item {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 7px;
}

.room-meta-item i {
  color: var(--accent);
}

.btn-room-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  margin-left: auto;
  transition: background-color 0.3s, border-color 0.3s;
}

.contact-section {
  background-color: var(--black);
  padding: 100px 0;
}

.contact-info-wrap {
  padding: 60px 50px 60px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 420px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.contact-item-value {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.contact-map-wrap {
  height: 100%;
  min-height: 500px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
  filter: grayscale(20%);
}

#footer,
#footer-sq {
  background-color: var(--dark);
}

.footer-main {
  padding: 70px 0 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.footer-col {
  padding: 0 24px;
  margin-bottom: 40px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-map {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  display: block;
}

.footer-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}

.footer-links li a:hover {
  color: var(--accent);
}

.footer-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}

.footer-social-btn:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--white);
}

.footer-right-col {
  text-align: left;
}

.footer-contact-item {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer-contact-label {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 6px;
}

.footer-contact-value {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 238, 238, 0.745);
  margin: 0;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.74);
  row-gap: 8px;
  column-gap: 8px;
}

.footer-powered-logo {
  max-width: 100px;
  height: auto;
}

.footer-powered-logo:hover {
  opacity: 1;
}

*, ::before, ::after {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}

#navbarId {
  background-color: var(--black);
  position: sticky;
  top: 0px;
  z-index: 1000;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.navbar-links-left a, .navbar-links-right a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.navbar-links-left a:hover, .navbar-links-right a:hover {
  color: var(--accent);
}

.carousel-control-prev:hover {
  background-color: var(--accent);
  opacity: 1;
}

.carousel-control-next:hover {
  background-color: var(--accent);
  opacity: 1;
}

#footer {
  background-color: var(--dark);
}

.cropped-image {
  object-fit: cover !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
}

.cropped-image-parent,
*:has(.cropped-image) {
  overflow: hidden !important;
  position: relative !important;
}

.cropped-image-parent, :has(.cropped-image) {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  position: relative !important;
}

#navbarId-sq {
  background-color: var(--black);
  position: sticky;
  top: 0px;
  z-index: 1000;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

#footer-sq {
  background-color: var(--dark);
}

@media (max-width: 991.98px) {
  #navbarId,
    #navbarId-sq {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar-inner {
    padding: 0 20px;
    height: 64px;
    flex-wrap: nowrap;
  }
  .about-text-inner {
    padding: 60px 30px;
  }
  .about-img {
    height: 420px;
  }
  .footer-center-col {
    order: -1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    row-gap: 10px;
    column-gap: 10px;
  }
  .contact-info-wrap {
    padding: 50px 0 40px 0;
  }
  .contact-map-wrap,
    .contact-map-wrap iframe {
    min-height: 360px;
  }
  #navbarId {
    position: sticky;
    top: 0px;
    z-index: 1000;
  }
  .contact-map-wrap, .contact-map-wrap iframe {
    min-height: 360px;
  }
  #navbarId-sq {
    position: sticky;
    top: 0px;
    z-index: 1000;
  }
}

@media (max-width: 767.98px) {
  .hero-img {
    height: 70vh;
  }
  .hero-content {
    margin-left: 0px;
    padding: 0 24px;
    text-align: center;
    max-width: 100%;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-page-img {
    height: 220px;
  }
  .room-page-facilities {
    grid-template-columns: 1fr;
  }
  .btn-room-book {
    margin-left: 0;
    margin-top: 12px;
  }
  .gallery-row-3,
    .gallery-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .about-text-inner {
    padding: 50px 20px;
  }
  .about-img {
    height: 300px;
  }
  .contact-map-wrap,
    .contact-map-wrap iframe {
    min-height: 280px;
  }
  .contact-map-wrap, .contact-map-wrap iframe {
    min-height: 280px;
  }
}

@media (max-width: 479.98px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .facility-card {
    min-height: 180px;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-img {
    height: 260px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .gallery-row-3,
    .gallery-row-4 {
    grid-template-columns: 1fr;
  }
  .gallery-grid-item img {
    height: 220px;
  }
}