@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --font-title: "Playfair Display", serif;
  --font-body: "Open Sans", sans-serif;
  --font-nav: Georgia, serif;
  --color-dark: #161616;
  --color-dark-2: #202020;
  --color-dark-3: #1d1d1d;
  --color-card-dark: #181818;
  --color-card-dark-2: #222222;
  --color-card-dark-3: #1b1b1b;
  --color-green: #52614e;
  --color-green-light: #d9eadb;
  --color-white: #ffffff;
  --color-text: #bdbdbd;
  --color-muted: #9f9f9f;
  --color-border: #333333;
  --color-border-2: #3a3a3a;
  --color-border-3: #444444;
  --color-footer-border: #2c2c2c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-dark);
  font-family: var(--font-body);
}

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

a {
  transition: 0.3s;
}

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

.navbar-brand {
  padding: 10px;
}

.main-navbar {
  background-color: var(--color-dark-2);
  padding: 28px 42px;
}

.nav-container {
  padding: 0;
}

.navbar-content {
  justify-content: center;
}

.nav-links {
  gap: 38px;
  align-items: center;
  margin: 0 auto;
  row-gap: 38px;
  column-gap: 38px;
}

.nav-links .nav-link {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-nav);
  padding: 0;
}

.nav-links .nav-link:hover,
.nav-links .active-link {
  color: var(--color-green-light);
}

.book-btn {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
  color: var(--color-white);
  padding: 14px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-nav);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  row-gap: 8px;
  column-gap: 8px;
}

.book-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}

.menu-toggle {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 8px 12px;
}

.menu-toggle:focus {
  box-shadow: none;
}

.language-dropdown {
  position: relative;
  padding-bottom: 8px;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 7px;
  row-gap: 7px;
  column-gap: 7px;
}

.language-current img,
.language-menu img {
  width: 20px;
  height: auto;
}

.language-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0px;
  background-color: var(--color-dark-2);
  min-width: 170px;
  padding: 12px 0;
  display: none;
  z-index: 9999;
  border: 1px solid var(--color-border);
}

.language-dropdown {
  position: relative;
  padding-bottom: 8px;
}

.language-menu a {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-family: var(--font-nav);
  row-gap: 8px;
  column-gap: 8px;
}

.language-menu a:hover {
  background-color: rgb(43, 43, 43);
}

.language-dropdown:hover .language-menu {
  display: block;
}

.hero-green-section {
  position: relative;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/maessa/maessa-suites.al/maessa-suites.al_2026-07-06_12-38-17-749/image/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 105px 0 100px;
  background-position-x: center;
  background-position-y: center;
}

.hero-content-row {
  padding-bottom: 70px;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  row-gap: 12px;
  column-gap: 12px;
}

.hero-badge i {
  background-color: var(--color-white);
  color: var(--color-green);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-left-content h1 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 55px;
  line-height: 1.15;
  font-weight: 700;
  max-width: 680px;
  margin: 0;
}

.hero-right-content p {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  padding: 18px 32px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  column-gap: 10px;
}

.hero-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}

.hero-overlap-area {
  position: relative;
  z-index: 5;
  margin-bottom: -230px;
}

.carousel-item {
  position: relative;
  height: 460px;
  overflow: hidden;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
}

.carousel-inner {
  height: 460px;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
}

.booking-box {
  background-color: var(--color-card-dark);
  padding: 44px 40px;
  height: 460px;
}

.booking-box h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 34px;
}

.booking-field {
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 12px;
}

.booking-field i {
  color: var(--color-white);
  width: 58px;
  height: 100%;
  border-right: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-field span {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  padding-left: 20px;
}

.booking-btn {
  background-color: var(--color-green);
  color: var(--color-white);
  width: 100%;
  height: 54px;
  margin-top: 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  row-gap: 10px;
  column-gap: 10px;
}

.booking-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}

.about-section {
  position: relative;
  background-color: var(--color-dark);
  padding: 260px 0 140px;
  overflow: hidden;
  font-family: var(--font-body);
  overflow-x: hidden;
  overflow-y: hidden;
}

.about-section .container {
  position: relative;
  z-index: 5;
}

.booking-line-shape {
  position: absolute;
  top: -200px;
  right: 40px;
  width: 520px;
  opacity: 0.7;
  z-index: 1;
}

.triangle-shape {
  position: absolute;
  left: 120px;
  bottom: 70px;
  width: 190px;
  opacity: 0.7;
}

.dots-shape {
  position: absolute;
  left: 600px;
  bottom: 75px;
  width: 95px;
  opacity: 0.7;
}

.section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 5;
  row-gap: 10px;
  column-gap: 10px;
}

.section-subtitle span {
  color: var(--color-green-light);
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-content {
  padding-top: 0px;
  position: relative;
  z-index: 6;
}

.about-content h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  row-gap: 12px;
  column-gap: 12px;
}

.about-feature i {
  color: var(--color-green-light);
}

.about-btn {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 18px 32px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  column-gap: 10px;
}

.about-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}

.about-image-box {
  position: relative;
  padding-left: 35px;
  margin-top: 20px;
  z-index: 6;
}

.about-image-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.customers-box {
  position: absolute;
  left: -50px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/maessa/maessa-suites.al/maessa-suites.al_2026-07-06_12-38-17-749/image/background.jpg");
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position-x: center;
  background-position-y: center;
}

.customers-box i {
  font-size: 42px;
  margin-bottom: 16px;
}

.customers-box h3 {
  font-family: var(--font-title);
  font-size: 52px;
  line-height: 1;
  margin: 0 0 8px;
}

.customers-box p {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 18px;
  margin: 0;
}

.rooms-section {
  background-color: var(--color-dark);
  padding: 120px 0 100px;
  font-family: var(--font-body);
}

.rooms-container {
  padding-left: 100px;
  padding-right: 100px;
}

.rooms-heading {
  margin-bottom: 55px;
}

.rooms-subtitle {
  color: var(--color-green-light);
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.rooms-heading h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.rooms-carousel {
  width: 100%;
}

.rooms-carousel .item {
  padding: 0 !important;
  margin: 0 !important;
}

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

.room-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.room-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: rgba(82, 97, 78, 0.92);
  padding: 20px 24px;
}

.room-info h3 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.rooms-carousel .owl-nav,
.rooms-carousel .owl-dots {
  display: none;
}

.room-price {
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 9px 22px;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.chooseus-section {
  position: relative;
  background-color: var(--color-dark-2);
  padding: 130px 0;
  overflow: hidden;
  font-family: var(--font-title);
  overflow-x: hidden;
  overflow-y: hidden;
}

.chooseus-bg-shape {
  position: absolute;
  top: -120px;
  left: 0px;
  width: 620px;
  opacity: 0.7;
  z-index: 1;
}

.chooseus-corner-shape {
  position: absolute;
  top: 55px;
  right: 95px;
  width: 180px;
  opacity: 0.7;
  z-index: 3;
}

.chooseus-section .container {
  position: relative;
  z-index: 5;
}

.chooseus-content {
  max-width: 650px;
}

.chooseus-subtitle {
  color: var(--color-green-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  row-gap: 10px;
  column-gap: 10px;
}

.chooseus-content h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 25px;
}

.chooseus-content p {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.chooseus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 45px;
  padding-bottom: 30px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border-3);
  row-gap: 22px;
  column-gap: 45px;
}

.chooseus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  row-gap: 14px;
  column-gap: 14px;
}

.chooseus-item i,
.chooseus-note i {
  color: var(--color-green-light);
}

.chooseus-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  margin-bottom: 45px;
  row-gap: 12px;
  column-gap: 12px;
}

.chooseus-btn {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 18px 32px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  justify-content: center;
  row-gap: 12px;
  column-gap: 12px;
}

.chooseus-btn:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}

.chooseus-image-box {
  position: relative;
  padding-left: 60px;
}

.chooseus-image-box > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.chooseus-counter {
  position: absolute;
  left: -40px;
  bottom: -65px;
  width: 270px;
  height: 290px;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/maessa/maessa-suites.al/maessa-suites.al_2026-07-06_12-38-17-749/image/background.jpg");
  background-size: cover;
  background-position: center;
  padding: 42px 38px;
  color: var(--color-white);
  background-position-x: center;
  background-position-y: center;
}

.chooseus-counter h3 {
  font-family: var(--font-body);
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 28px;
}

.chooseus-counter span {
  width: 70px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-bottom: 28px;
}

.chooseus-counter p {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.facilities-section {
  background-color: var(--color-dark-3);
  padding: 130px 0;
}

.facilities-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  row-gap: 10px;
  column-gap: 10px;
}

.facilities-subtitle i {
  color: var(--color-green-light);
}

.facilities-subtitle span {
  color: var(--color-green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-title);
}

.facilities-content h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 55px;
}

.facilities-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  row-gap: 18px;
  column-gap: 18px;
}

.facilities-contact-info span {
  color: var(--color-muted);
  font-size: 17px;
  display: block;
  margin-bottom: 5px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  row-gap: 30px;
  column-gap: 30px;
}

.facility-card {
  background-image: url("https://api.intermedia-web.com/getSavedAsset/maessa/maessa-suites.al/maessa-suites.al_2026-07-06_12-38-17-749/image/background.jpg");
  background-size: cover;
  background-position: center;
  padding: 34px 35px 18px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  min-height: 150px;
  background-position-x: center;
  background-position-y: center;
  row-gap: 25px;
  column-gap: 25px;
}

.facility-icon {
  color: var(--color-white);
  font-size: 42px;
  margin-top: 8px;
  min-width: 60px;
}

.facility-info h3 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.facility-info p {
  color: rgb(229, 229, 229);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.parallax-section {
  min-height: 480px;
  background-image: url("https://api.intermedia-web.com/getSavedAsset/maessa/maessa-suites.al/maessa-suites.al_2026-07-06_12-38-17-749/img/20260626_121212_WhatsApp_Image_2026-06-25_at_161749_1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position-x: center;
  background-position-y: center;
}

.parallax-content h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 900px;
  margin: 0;
}

.testimonials-section {
  background-color: var(--color-dark-2);
  padding: 110px 0 100px;
  font-family: var(--font-body);
}

.testimonials-container {
  max-width: 1280px;
}

.testimonials-heading {
  max-width: 650px;
  margin-bottom: 50px;
}

.testimonials-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green-light);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  row-gap: 10px;
  column-gap: 10px;
}

.testimonials-heading h2 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.testimonials-carousel .item {
  padding: 0 !important;
  margin: 0 !important;
}

.testimonial-card {
  background-color: var(--color-dark);
  padding: 42px 36px;
  min-height: 395px;
}

.testimonial-stars {
  color: var(--color-green-light);
  font-size: 20px;
  margin-bottom: 30px;
}

.quote-icon {
  color: var(--color-green-light);
  font-family: var(--font-title);
  font-size: 70px;
  line-height: 0.8;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 38px;
}

.testimonial-line {
  height: 1px;
  width: 100%;
  background-color: var(--color-border-2);
  margin-bottom: 26px;
}

.testimonial-card h3 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonial-card span {
  color: var(--color-muted);
  font-size: 16px;
}

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

.page-hero-section {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

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

.page-hero-content h1 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 18px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  row-gap: 14px;
  column-gap: 14px;
}

.page-breadcrumb a,
.page-breadcrumb p,
.page-breadcrumb span {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}

.page-breadcrumb i {
  color: var(--color-green-light);
  font-size: 14px;
}

.rooms-list-section {
  background-color: var(--color-dark);
  padding: 100px 0;
  font-family: var(--font-body);
}

.room-list-card {
  background-color: var(--color-card-dark-2);
  height: 100%;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.room-list-card > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.room-list-info {
  padding: 28px;
}

.room-list-info h3 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

.room-list-features {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.room-list-features span {
  color: var(--color-white);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  row-gap: 8px;
  column-gap: 8px;
}

.room-list-features i {
  color: var(--color-green);
}

.room-list-info p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.room-list-btn {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 13px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  row-gap: 10px;
  column-gap: 10px;
}

.room-list-btn:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.gallery-section {
  background-color: var(--color-card-dark-3);
  padding: 100px 0;
}

.gallery-section .container {
  max-width: 1500px;
}

.gallery-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
  row-gap: 24px;
  column-gap: 24px;
}

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

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

.gallery-item {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.gallery-row-three .gallery-item img {
  height: 330px;
}

.contact-info-section {
  background-color: var(--color-dark-3);
  padding: 110px 0;
  font-family: var(--font-body);
}

.contact-info-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 55px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 45px;
  margin-bottom: 40px;
  overflow-x: hidden;
  overflow-y: hidden;
  row-gap: 45px;
  column-gap: 45px;
}

.contact-bg {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 1;
  max-width: none;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.contact-info-card,
  .contact-divider {
  position: relative;
  z-index: 2;
}

.contact-icon {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

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

.contact-info-card h3 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-info-card p {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.contact-divider {
  width: 1px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 2;
}

.contact-map {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-section {
  position: relative;
  background-color: var(--color-dark);
  padding: 95px 0 0;
  font-family: var(--font-body);
}

.footer-main {
  padding-bottom: 70px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 28px;
}

.footer-logo img {
  max-width: 170px;
  height: auto;
}

.footer-box p {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 50px;
}

.footer-box h3 {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-center {
  padding-left: 60px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

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

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover {
  color: rgb(120, 134, 116);
}

.footer-contact p {
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-map {
  margin-top: 22px;
  width: 100%;
  height: 190px;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.footer-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--color-footer-border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-muted);
  margin: 0;
  font-size: 15px;
}

.footer-bottom img {
  max-width: 120px;
  height: auto;
  margin-left: 6px;
}

:root {
  --font-title: "Playfair Display", serif;
  --font-body: "Open Sans", sans-serif;
  --font-nav: Georgia, serif;
  --color-dark: #161616;
  --color-dark-2: #202020;
  --color-dark-3: #1d1d1d;
  --color-card-dark: #181818;
  --color-card-dark-2: #222222;
  --color-card-dark-3: #1b1b1b;
  --color-green: #52614e;
  --color-green-light: #d9eadb;
  --color-white: #ffffff;
  --color-text: #bdbdbd;
  --color-muted: #9f9f9f;
  --color-border: #333333;
  --color-border-2: #3a3a3a;
  --color-border-3: #444444;
  --color-footer-border: #2c2c2c;
}

.nav-links .nav-link:hover, .nav-links .active-link {
  color: var(--color-green-light);
}

.language-current img, .language-menu img {
  width: 20px;
  height: auto;
}

.carousel-control-prev {
  width: 70px;
}

.carousel-control-next {
  width: 70px;
}

.rooms-carousel .owl-nav, .rooms-carousel .owl-dots {
  display: none;
}

.chooseus-item i, .chooseus-note i {
  color: var(--color-green-light);
}

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

.page-breadcrumb a, .page-breadcrumb p, .page-breadcrumb span {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.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;
}

.c26848 {
  color: rgb(255, 255, 255);
  font-family: "Playfair Display", serif;
}

.c41584 {
  color: rgb(255, 255, 255);
  font-family: "Playfair Display", serif;
}

.c41710 {
  color: rgb(255, 255, 255);
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 1399px) {
  .rooms-container {
    padding-left: 70px;
    padding-right: 70px;
  }
  .gallery-section .container {
    max-width: 1320px;
  }
}

@media (max-width: 1199px) {
  .main-navbar {
    padding: 24px 28px;
  }
  .nav-links {
    gap: 24px;
    row-gap: 24px;
    column-gap: 24px;
  }
  .hero-left-content h1 {
    font-size: 48px;
  }
  .hero-right-content p {
    font-size: 17px;
  }
  .booking-box,
  .carousel-item,
  .carousel-inner {
    height: 430px;
  }
  .about-content h2,
  .chooseus-content h2,
  .rooms-heading h2,
  .testimonials-heading h2 {
    font-size: 42px;
  }
  .about-image-box img,
  .chooseus-image-box > img {
    height: 520px;
  }
  .rooms-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .room-card img {
    height: 410px;
  }
  .facilities-content h2 {
    font-size: 36px;
  }
  .facility-card {
    padding: 30px 26px;
  }
  .gallery-row-four {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-row-three {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content h2, .chooseus-content h2, .rooms-heading h2, .testimonials-heading h2 {
    font-size: 42px;
  }
  .about-image-box img, .chooseus-image-box > img {
    height: 520px;
  }
}

@media (max-width: 991px) {
  .main-navbar {
    padding: 18px 20px;
  }
  .navbar-content {
    justify-content: flex-start;
  }
  .nav-links {
    gap: 18px;
    align-items: flex-start;
    margin: 0;
    padding-top: 25px;
    padding-bottom: 20px;
    row-gap: 18px;
    column-gap: 18px;
  }
  .book-btn {
    margin-bottom: 10px;
  }
  .language-menu {
    position: static;
    margin-top: 10px;
  }
  .hero-green-section {
    padding: 80px 0 0;
  }
  .hero-content-row {
    padding-bottom: 55px;
  }
  .hero-left-content h1 {
    font-size: 44px;
  }
  .hero-right-content {
    margin-top: 35px;
  }
  .hero-overlap-area {
    margin-bottom: -200px;
  }
  .carousel-item,
  .carousel-inner {
    height: 380px;
  }
  .booking-box {
    height: auto;
    margin-top: 25px;
  }
  .about-section {
    padding: 620px 0 100px;
  }
  .about-image-box {
    padding-left: 0px;
    margin-top: 45px;
  }
  .about-image-box img {
    height: 430px;
  }
  .customers-box {
    left: 30px;
    bottom: -60px;
  }
  .triangle-shape,
  .dots-shape,
  .booking-line-shape,
  .chooseus-bg-shape,
  .chooseus-corner-shape {
    display: none;
  }
  .rooms-section,
  .chooseus-section,
  .facilities-section,
  .testimonials-section,
  .rooms-list-section,
  .gallery-section,
  .contact-info-section {
    padding: 85px 0;
  }
  .rooms-container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .chooseus-image-box {
    padding-left: 0px;
    margin-top: 50px;
  }
  .chooseus-image-box > img {
    height: 460px;
  }
  .chooseus-counter {
    left: 20px;
    bottom: -70px;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .parallax-section {
    min-height: 380px;
    background-attachment: scroll;
  }
  .parallax-content h2 {
    font-size: 34px;
    padding: 0 24px;
  }
  .page-hero-section {
    min-height: 320px;
  }
  .page-hero-content h1 {
    font-size: 46px;
  }
  .room-list-card > img {
    height: 320px;
  }
  .gallery-row-four,
  .gallery-row-three {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 30px;
    row-gap: 30px;
    column-gap: 30px;
  }
  .contact-divider {
    width: 100%;
    height: 1px;
  }
  .footer-center {
    padding-left: 0px;
  }
  .footer-box {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-left-content h1 {
    font-size: 38px;
  }
  .hero-right-content p {
    font-size: 16px;
  }
  .about-content h2,
  .chooseus-content h2,
  .rooms-heading h2,
  .testimonials-heading h2 {
    font-size: 34px;
  }
  .about-features,
  .room-list-features {
    gap: 18px;
  }
  .chooseus-list {
    grid-template-columns: 1fr;
  }
  .room-card img {
    height: 360px;
  }
  .room-list-info h3 {
    font-size: 25px;
  }
  .gallery-row-four,
  .gallery-row-three {
    grid-template-columns: 1fr;
  }
  .gallery-item img,
  .gallery-row-three .gallery-item img {
    height: 300px;
  }
  .contact-map {
    height: 300px;
  }
  .about-content h2, .chooseus-content h2, .rooms-heading h2, .testimonials-heading h2 {
    font-size: 34px;
  }
  .gallery-item img, .gallery-row-three .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .main-navbar {
    padding: 14px 14px;
  }
  .navbar img {
    max-width: 90px;
  }
  .hero-green-section {
    padding: 60px 0 0;
  }
  .hero-left-content h1 {
    font-size: 34px;
  }
  .hero-badge {
    font-size: 14px;
    padding: 10px 14px;
  }
  .hero-btn,
  .about-btn,
  .chooseus-btn,
  .room-list-btn {
    padding: 13px 22px;
    font-size: 14px;
  }
  .hero-overlap-area {
    margin-bottom: -160px;
  }
  .carousel-item,
  .carousel-inner {
    height: 280px;
  }
  .booking-box {
    padding: 32px 22px;
  }
  .booking-field {
    height: 48px;
  }
  .about-section {
    padding: 300px 0 70px;
  }
  .about-content h2,
  .chooseus-content h2,
  .rooms-heading h2,
  .testimonials-heading h2,
  .page-hero-content h1 {
    font-size: 30px;
  }
  .about-content p,
  .chooseus-content p,
  .facility-info p,
  .testimonial-card p,
  .room-list-info p {
    font-size: 15px;
  }
  .about-image-box img,
  .chooseus-image-box > img {
    height: 320px;
  }
  .customers-box {
    width: 155px;
    height: 155px;
    left: 15px;
    bottom: -45px;
  }
  .customers-box i {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .customers-box h3 {
    font-size: 36px;
  }
  .customers-box p {
    font-size: 14px;
  }
  .rooms-section,
  .chooseus-section,
  .facilities-section,
  .testimonials-section,
  .rooms-list-section,
  .gallery-section,
  .contact-info-section {
    padding: 70px 0;
  }
  .rooms-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .room-info {
    padding: 18px;
  }
  .room-info h3 {
    font-size: 22px;
  }
  .chooseus-counter {
    width: 200px;
    height: 210px;
    padding: 28px;
  }
  .chooseus-counter h3 {
    font-size: 38px;
  }
  .chooseus-counter p {
    font-size: 16px;
  }
  .facility-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 22px;
  }
  .facility-icon {
    min-width: auto;
    margin-top: 0px;
  }
  .testimonial-card {
    padding: 34px 24px;
    min-height: auto;
  }
  .page-hero-section {
    min-height: 280px;
  }
  .page-breadcrumb a,
  .page-breadcrumb p,
  .page-breadcrumb span {
    font-size: 14px;
  }
  .room-list-card > img {
    height: 260px;
  }
  .room-list-info {
    padding: 24px;
  }
  .room-list-features {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-item img,
  .gallery-row-three .gallery-item img {
    height: 260px;
  }
  .contact-info-wrapper {
    padding: 40px 22px;
  }
  .contact-icon {
    width: 78px;
    height: 78px;
  }
  .contact-info-card h3 {
    font-size: 24px;
  }
  .contact-map {
    height: 260px;
  }
  .footer-section {
    padding-top: 70px;
  }
  .footer-main {
    padding-bottom: 35px;
  }
  .footer-box p {
    margin-bottom: 30px;
  }
  .footer-bottom p {
    font-size: 13px;
    line-height: 1.7;
  }
  .footer-bottom img {
    max-width: 90px;
  }
  .about-content h2, .chooseus-content h2, .rooms-heading h2, .testimonials-heading h2, .page-hero-content h1 {
    font-size: 30px;
  }
  .about-content p, .chooseus-content p, .facility-info p, .testimonial-card p, .room-list-info p {
    font-size: 15px;
  }
  .about-image-box img, .chooseus-image-box > img {
    height: 320px;
  }
  .page-breadcrumb a, .page-breadcrumb p, .page-breadcrumb span {
    font-size: 14px;
  }
  .gallery-item img, .gallery-row-three .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 380px) {
  .hero-left-content h1,
  .about-content h2,
  .chooseus-content h2,
  .rooms-heading h2,
  .testimonials-heading h2,
  .page-hero-content h1 {
    font-size: 27px;
  }
  .carousel-item,
  .carousel-inner {
    height: 250px;
  }
  .booking-field span {
    font-size: 14px;
    padding-left: 12px;
  }
  .room-card img {
    height: 320px;
  }
  .gallery-item img,
  .gallery-row-three .gallery-item img {
    height: 230px;
  }
  .hero-left-content h1, .about-content h2, .chooseus-content h2, .rooms-heading h2, .testimonials-heading h2, .page-hero-content h1 {
    font-size: 27px;
  }
  .gallery-item img, .gallery-row-three .gallery-item img {
    height: 230px;
  }
}