@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
    --bg: #181716;
    --surface: #211f1d;
    --surface-light: #292522;
    --text: #f5f1ea;
    --muted: #b8b0a5;
    --border: #35312d;
    --gold: #b08d57;
    --gold-light: #d2b27a;
    --shadow: rgba(0, 0, 0, 0.35);
    --container-width: 1200px;
    --section-padding: 90px;
    --transition-fast: 0.3s ease;
    --transition-normal: 0.45s ease;
    --transition-slow: 0.8s ease;
    --luxury-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html {
    scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}
p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* GLOBAL CONTAINER */
.container {
  width: min(var(--container-width), 90%);
  margin-inline: auto;
}

/* SECTION SPACING */
.section {
    padding: var(--section-padding) 0;
}

/* GOLD BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: var(--gold);
    color: #181716;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}
.btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #181716;
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(176, 141, 87, 0.18);
}
/* OUTLINE BUTTON */
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #181716;
}

/* SECTION TITLE */
.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}
.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-heading span {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.section-heading h2 {
    margin: 20px 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
}
.section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

/* CARD STYLE */
.card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px var(--shadow);
}

/* IMAGE OVERLAY */
.image-wrap {
    position: relative;
    overflow: hidden;
}
.image-wrap img {
    transition:
        transform var(--transition-slow);
}
.image-wrap:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}

/* GLOBAL FADE ANIMATIONS */
.fade-up,
.fade-down,
.fade-left,
.fade-right,
.fade-in,
.zoom-in {
    opacity: 0;
    transition:
        opacity 1.15s var(--luxury-ease),
        transform 1.15s var(--luxury-ease);
    will-change: opacity, transform;
}
.fade-up {
    transform: translate3d(0, 45px, 0);
}
.fade-down {
    transform: translate3d(0, -45px, 0);
}
.fade-left {
    transform: translate3d(-55px, 0, 0);
}
.fade-right {
    transform: translate3d(55px, 0, 0);
}
.fade-in {
    transform: translate3d(0, 0, 0);
}
.zoom-in {
    transform: scale(0.94);
}
.fade-up.show,
.fade-down.show,
.fade-left.show,
.fade-right.show,
.fade-in.show,
.zoom-in.show {
    opacity: 1;
    transform:
        translate3d(0, 0, 0)
        scale(1);
}
.delay-1 {
    transition-delay: 0.12s;
}
.delay-2 {
    transition-delay: 0.24s;
}
.delay-3 {
    transition-delay: 0.36s;
}
.delay-4 {
    transition-delay: 0.48s;
}
.delay-5 {
    transition-delay: 0.60s;
}
.delay-6 {
    transition-delay: 0.72s;
}
.animate-fast {
    transition-duration: 0.85s;
}
.animate-slow {
    transition-duration: 1.4s;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .fade-up,
    .fade-down,
    .fade-left,
    .fade-right,
    .fade-in,
    .zoom-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* NAVBAR */
.navbar {
    padding: 25px 0;
    background: transparent;
    transition:
        background var(--transition-normal),
        padding var(--transition-normal),
        border-color var(--transition-normal);
    z-index: 999;
    animation: navbarFade 0.8s ease forwards;
}
@keyframes navbarFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar.scrolled {
    padding: 15px 0;
    background: rgba(24, 23, 22, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(176, 141, 87, 0.25);
}
.navbar-brand img {
    width: 140px;
    transition:
        width var(--transition-normal),
        transform var(--transition-normal);
}
.navbar-brand:hover img {
    transform: scale(1.03);
}
.navbar.scrolled .navbar-brand img {
    width: 120px;
}
.navbar-nav {
    gap: 35px;
    flex-wrap: nowrap;
}
.nav-link {
    position: relative;
    padding: 10px 0 !important;
    color: var(--text) !important;
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
}
.nav-link:focus-visible,
.language-btn:focus-visible,
.btn-book:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.language-btn {
    padding: 11px 18px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(245, 241, 234, 0.25);
    border-radius: 0;
    font-size: 12px;
    letter-spacing: 0.15em;
    transition:
        background var(--transition-fast),
        color var(--transition-fast);
}
.language-btn:hover {
    background: var(--text);
    color: #181716;
}
.dropdown-menu {
    background: var(--surface);
    border: 1px solid rgba(245, 241, 234, 0.12);
    border-radius: 0;
}
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text);
}
.dropdown-item img {
    width: 22px;
}
.dropdown-item:hover {
    background: var(--gold);
    color: #181716;
}
.btn-book {
    background: var(--gold);
    color: #181716;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.btn-book:hover {
    background: var(--gold-light);
    color: #181716;
    transform: translateY(-2px);
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* HERO CAROUSEL */
.hero-carousel {
  height: 100vh;
  min-height: 750px;
}
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomImage 8s ease;
}
.carousel-item img {
  animation: zoomImage 8s ease;
}
@keyframes zoomImage {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(24, 23, 22, 0.35), rgba(24, 23, 22, 0.75));
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  width: 90%;
  max-width: 850px;
  color: #f5f1ea;
}
.hero-subtitle {
    margin-bottom: 30px;
    color: var(--gold-light);
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.hero-content h1 {
    margin-bottom: 30px;
    font-family: "DM Serif Display", serif;
    font-size: clamp(50px, 6vw, 85px);
    font-weight: 400;
    line-height: 1.05;
}
.hero-text {
    max-width: 560px;
    margin: 0 auto 40px;
    color: rgba(245, 241, 234, 0.85);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}
.hero-content .btn {
  padding: 16px 38px;
  border-radius: 0;
  background: #b08d57;
  color: #181716;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* ABOUT SECTION */
.about-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-gallery {
  position: relative;
  height: 650px;
  width: 100%;
}
.about-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 560px;
    overflow: hidden;
}
.about-main-image img,
.about-small-image img,
.about-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.about-main-image:hover img {
    transform: scale(1.05);
}
.about-small-image {
    position: absolute;
    top: 45px;
    right: 0;
    width: 42%;
    height: 260px;
    overflow: hidden;
    border: 12px solid var(--bg);
    z-index: 2;
}
.about-small-image:hover img,
.about-detail-image:hover img {
    transform: scale(1.08);
}
.about-detail-image {
    position: absolute;
    right: 35px;
    bottom: 40px;
    width: 38%;
    height: 190px;
    overflow: hidden;
    border: 12px solid var(--bg);
    z-index: 3;
}
.about-experience {
  position: absolute;
  left: 35px;
  bottom: 55px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 38px;
  display: flex;
  flex-direction: column;
  z-index: 4;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}
.about-experience span {
  color: var(--muted);
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-experience strong {
  font-family: "DM Serif Display", serif;
  color: var(--gold);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.about-experience small {
  color: var(--text);
  font-size: 13px;
  margin-top: 10px;
  letter-spacing: 0.1em;
}
.about-content {
  padding-left: 30px;
}
.about-section .section-heading {
  margin-bottom: 35px;
}
.about-section .section-heading span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-section h2 {
  font-family: "DM Serif Display", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
.about-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: 560px;
}
.about-section .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 15px 38px;
  border: 1px solid var(--border);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  transition: 0.35s ease;
}
.about-section .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #181716;
}

/* ROOMS */
.rooms-section {
  background: var(--surface);
}
.rooms-section .section-heading {
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-heading span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.section-heading h2 {
  font-size: 52px;
  margin: 20px 0;
}
.section-heading p {
  color: var(--muted);
}
.room-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.4s ease;
}
.room-card:hover {
  transform: translateY(-10px);
}
.room-image {
  height: 360px;
  overflow: hidden;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}
.room-card:hover img {
  transform: scale(1.08);
}
.room-content {
  padding: 30px;
}
.room-content h3 {
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 25px;
}
.room-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.room-info i {
  color: var(--gold);
  margin-right: 8px;
}
.room-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}
.rooms-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background: var(--gold) !important;
  color: #181716 !important;
  font-size: 25px !important;
}
.rooms-carousel .owl-dots {
  margin-top: 35px;
}
.rooms-carousel .owl-dot span {
  background: #555 !important;
}
.rooms-carousel .owl-dot.active span {
  background: var(--gold) !important;
}

/* AMENITIES */
.amenities-section {
    background: var(--bg);
}
.amenities-section .section-heading {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}
.amenities-section .section-heading span {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.amenities-section .section-heading h2 {
    margin: 20px 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
}
.amenities-section .section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
.amenities-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.amenities-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.amenities-image:hover img {
    transform: scale(1.05);
}
.amenities-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(24, 23, 22, 0) 45%,
            rgba(24, 23, 22, 0.25) 100%
        );
    pointer-events: none;
}
.amenity-card {
    height: 100%;
    padding: 35px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}
.amenity-card:hover {
    transform: translateY(-7px);
    background: var(--surface-light);
    border-color: rgba(176, 141, 87, 0.65);
    box-shadow:
        0 20px 45px var(--shadow);
}
.amenity-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--gold);
    background: rgba(176, 141, 87, 0.08);
    border: 1px solid rgba(176, 141, 87, 0.3);
    border-radius: 50%;
    font-size: 23px;
    transition:
        color 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}
.amenity-card:hover .amenity-icon {
    color: #181716;
    background: var(--gold);
    border-color: var(--gold);
    transform:
        translateY(-2px)
        rotate(3deg);
}
.amenity-card h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
}
.amenity-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* GALLERY SECTION */
.gallery-section {
    background: var(--surface);
}
.gallery-section .section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}
.gallery-section .section-heading span {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.gallery-section .section-heading h2 {
    margin: 20px 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
}
.gallery-section .section-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
.gallery-carousel {
    position: relative;
}
.gallery-item {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.82);
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(24, 23, 22, 0) 45%,
            rgba(24, 23, 22, 0.3) 100%
        );
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-carousel .owl-stage {
    display: flex;
}
.gallery-carousel .owl-item {
    display: flex;
}
.gallery-carousel .gallery-item {
    width: 100%;
}
.gallery-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.gallery-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50%;
    font-size: 24px !important;
    line-height: 1;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}
.gallery-carousel .owl-nav button:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #181716 !important;
    transform: translateY(-2px);
}
.gallery-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
}
.gallery-carousel .owl-dot {
    margin: 0 4px !important;
}
.gallery-carousel .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    background: #555 !important;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}
.gallery-carousel .owl-dot.active span {
    width: 24px !important;
    background: var(--gold) !important;
}

/* DISCOVER KSAMIL */
.location-section {
  background: var(--bg);
}
.location-image {
  height: 600px;
  overflow: hidden;
}
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}
.location-image:hover img {
  transform: scale(1.06);
}
.location-content h2 {
  font-size: 52px;
  line-height: 1.15;
  margin: 20px 0 30px;
}
.location-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.place-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 25px;
  transition: 0.35s ease;
}
.place-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.place-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.place-card span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* REVIEWS SECTION */
.reviews-section {
    background: var(--surface);
}
.reviews-section .section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}
.reviews-section .section-heading span {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.reviews-section .section-heading h2 {
    margin: 20px 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 52px;
    font-weight: 400;

    line-height: 1.15;
}
.reviews-section .section-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}
.reviews-carousel {
    position: relative;
}
.reviews-carousel .owl-stage {
    display: flex;
}
.reviews-carousel .owl-item {
    display: flex;
}
.review-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 35px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}
.review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(176, 141, 87, 0.6);
    box-shadow:
        0 22px 50px var(--shadow);
}
.review-card::before {
    content: "“";
    position: absolute;
    top: 18px;
    right: 30px;
    color: rgba(176, 141, 87, 0.12);
    font-family: "DM Serif Display", serif;
    font-size: 90px;
    line-height: 1;
    pointer-events: none;
}
.review-stars {
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 4px;
    line-height: 1;
}
.review-card .p {
    margin: 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 21px;
    line-height: 1.6;
    font-style: italic;
}
.guest-info {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.guest-info h3 {
    margin: 0 0 5px;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    font-weight: 400;
}
.guest-info span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.reviews-carousel .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}
.reviews-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50%;
    font-size: 21px !important;
    line-height: 1;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}
.reviews-carousel .owl-nav button:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #181716 !important;
    transform: translateY(-2px);
}
.reviews-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
}
.reviews-carousel .owl-dot {
    margin: 0 4px !important;
}
.reviews-carousel .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    background: #555 !important;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}
.reviews-carousel .owl-dot.active span {
    width: 24px !important;
    background: var(--gold) !important;
}

/* BOOKING CTA SECTION */
.booking-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        url("image/cta-bg.jpg")
        center center / cover
        no-repeat;
    isolation: isolate;
}
.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(24, 23, 22, 0.88) 0%,
            rgba(24, 23, 22, 0.72) 45%,
            rgba(24, 23, 22, 0.78) 100%
        );
}
.booking-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(176, 141, 87, 0.14) 0%,
            rgba(176, 141, 87, 0.05) 35%,
            transparent 70%
        );
    pointer-events: none;
}
.booking-content {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 0;
}
.booking-content > span {
    display: block;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.booking-content h2 {
    max-width: 800px;
    margin: 0 auto 25px;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
}
.booking-content > p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(245, 241, 234, 0.78);
    font-size: 17px;
    line-height: 1.8;
}
.booking-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}
.booking-buttons .btn-book {
    padding: 15px 34px;
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-weight: 600;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.booking-buttons .btn-book:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(176, 141, 87, 0.25);
}
.booking-buttons .btn-outline-light {
    padding: 15px 34px;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(245, 241, 234, 0.35);
    border-radius: 999px;
    font-weight: 500;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}
.booking-buttons .btn-outline-light:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
    transform: translateY(-3px);
}
.booking-content::before {
    content: "";
    width: 70px;
    height: 1px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
}

/* FOOTER */
.footer {
    position: relative;
    padding: 70px 0 0;
    background: #141312;
    color: var(--text);
    border-top: 1px solid var(--border);
}
.footer-column {
    height: 100%;
}
.footer-column h3 {
    position: relative;
    margin: 0 0 28px;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}
.footer-column h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 1px;
    margin-top: 12px;
    background: var(--gold);
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
}
.footer-logo img {
    width: auto;
    max-width: 190px;
    height: auto;
    display: block;
}
.footer-column .p {
    max-width: 340px;
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}
.footer-column .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.footer-column .btn-book:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #181716;
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(176, 141, 87, 0.2);
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 16px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}
.footer-social a:hover {
    color: #181716;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li:last-child {
    margin-bottom: 0;
}
.footer-links a {
    position: relative;
    display: inline-block;
    color: var(--muted);
    font-size: 14px;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}
.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    padding-left: 17px;
    color: var(--gold-light);
}
.footer-links a:hover::before {
    width: 9px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.footer-contact li > i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--gold);
    font-size: 16px;
}
.footer-contact a {
    color: var(--muted);
    transition:
        color 0.3s ease;
}
.footer-contact a:hover {
    color: var(--gold-light);
}
.footer-map {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    transition:
        filter 0.4s ease,
        transform 0.5s ease;
}
.footer-map:hover iframe {
    filter:
        grayscale(0.25)
        contrast(0.95);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding: 15px 0 5px;
    border-top: 1px solid var(--border);
}
.footer-bottom p {
    margin: 0;
    color: #817b73;
    font-size: 12px;
    line-height: 1.5;
}
.footer-bottom .designer {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-bottom .designer a {
    display: inline-flex;
    align-items: center;
}
.footer-bottom .designer img {
    width: auto;
    max-width: 100px;
    height: 24px;
    display: block;
    object-fit: contain;
    opacity: 0.7;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.footer-bottom .designer a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}


/* PAGE HERO / BREADCRUMB */
.page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}
.page-hero-about {
    background-image: url("image/about-bg.jpg");
}
.page-hero-rooms {
    background-image: url("image/rooms-bg.jpg");
}
.page-hero-gallery {
    background-image: url("image/gallery-bg.jpg");
}
.page-hero-contact {
    background-image: url("image/contact-bg.jpg");
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient( 90deg, rgba(24, 23, 22, 0.82) 0%, rgba(24, 23, 22, 0.55) 50%, rgba(24, 23, 22, 0.72) 100%);
}
.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient( to top, rgba(24, 23, 22, 0.45), transparent);
    pointer-events: none;
    z-index: -1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 100px 0 75px;
    text-align: center;
}
.page-hero-subtitle {
    display: block;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-family: "Instrument Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    line-height: 1.5;
    text-transform: uppercase;
}
.page-hero-content h1 {
    margin: 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    color: rgba(245, 241, 234, 0.7);
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.breadcrumb-wrapper a {
    color: var(--text);
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}
.breadcrumb-wrapper a:hover {
    color: var(--gold-light);
}
.breadcrumb-wrapper > span:nth-child(2) {
    color: var(--gold);
    opacity: 0.8;
}
.breadcrumb-wrapper > span:last-child {
    color: var(--gold-light);
}
.page-hero-content::before {
    content: "";
    display: block;
    width: 55px;
    height: 1px;
    margin: 0 auto 25px;
    background: var(--gold);
}
.page-hero {
    background-attachment: scroll;
    transition: background-position 0.8s ease;
}
.page-hero:hover {
    background-position: center 48%;
}

/* ROOMS HTML */
.rooms-page-section {
  padding: 70px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.rooms-page-heading {
  margin-bottom: 35px;
}
.rooms-page-heading h1 {
  margin: 20px 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.15;
  color: var(--text);
}
.rooms-row {
  padding: 70px 0;
  position: relative;
}
.rooms-row + .rooms-row {
  border-top: 1px solid var(--border);
}
.rooms-row [class*="col-lg-"] {
  padding-left: 24px;
  padding-right: 24px;
}
.rooms-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 25px 60px var(--shadow);
}
.rooms-image .room-carousel {
  position: relative;
  width: 100%;
  margin: 0;
}
.rooms-image .room-carousel .item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.rooms-image .room-carousel .item img {
  display: block;
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
  transition:
    transform var(--transition-slow),
    filter var(--transition-normal);
}
.rooms-image:hover .room-carousel .item img {
  transform: scale(1.05);
}
.rooms-image .room-carousel .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.12) 100%
    );
  pointer-events: none;
  z-index: 1;
}
.rooms-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  z-index: 10;
}
.rooms-image:hover::after {
  opacity: 0.65;
}
.room-carousel .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}
.room-carousel .owl-nav button.owl-prev,
.room-carousel .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(24, 23, 22, 0.55);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
  pointer-events: auto;
}
.room-carousel .owl-nav button.owl-prev:hover,
.room-carousel .owl-nav button.owl-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #181716;
}
.room-carousel .owl-nav button.owl-prev:active,
.room-carousel .owl-nav button.owl-next:active {
  transform: scale(0.94);
}
.room-carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
  z-index: 5;
}
.room-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  transition:
    width var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}
.room-carousel .owl-dots .owl-dot span {
  display: none;
}
.room-carousel .owl-dots .owl-dot.active {
  width: 25px;
  border-color: var(--gold);
  border-radius: 999px;
  background: var(--gold);
}
.rooms-detail {
  max-width: 480px;
  padding: 12px 0;
}
.room-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: "DM Serif Display", serif;
  font-size: 15px;
  color: var(--gold-light);
  transition:
    background var(--transition-normal),
    color var(--transition-normal),
    transform var(--transition-normal);
}
.rooms-detail:hover .room-number {
  background: var(--gold);
  color: #181716;
  transform: rotate(8deg);
}
.room-category {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.rooms-detail h2 {
  margin: 0 0 18px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 2.4vw, 2.4rem);
  line-height: 1.18;
  color: var(--text);
}
.room-description {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.rooms-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.room-feature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}
.room-feature i {
  font-size: 16px;
  color: var(--gold);
  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}
.room-feature:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.room-feature:hover i {
  transform: scale(1.12);
  color: var(--gold-light);
}
.page-room-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--gold);
  color: #181716;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.page-room-button i {
  transition: transform var(--transition-fast);
}
.page-room-button:hover,
.page-room-button:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #181716;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 141, 87, 0.18);
}
.page-room-button:hover i,
.page-room-button:focus-visible i {
  transform: translateX(4px);
}
.page-room-button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* GALLERY PAGE GRID */
.gallery-page-section {
    background: var(--bg);
    padding: var(--section-padding) 0;
}
.gallery-page-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}
.gallery-page-heading span {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: "Instrument Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.gallery-page-heading h2 {
    margin: 20px 0;
    color: var(--text);
    font-family: "DM Serif Display", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
}
.gallery-page-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}
.gallery-page-section .row {
    margin-left: -10px;
    margin-right: -10px;
}
.gallery-page-section .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}
.gallery-page-section .item {
    position: relative;
    height: 330px;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.gallery-page-section .item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-page-section .item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.9s var(--luxury-ease),
        filter 0.6s ease;
}
.gallery-page-section .item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(24, 23, 22, 0) 45%,
            rgba(24, 23, 22, 0.45) 100%
        );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.gallery-page-section .item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid var(--gold);
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.gallery-page-section .item:hover img {
    transform: scale(1.07);
    filter: brightness(0.78);
}
.gallery-page-section .item:hover a::after {
    opacity: 1;
}
.gallery-page-section .item:hover::before {
    opacity: 0.65;
}

/* CONTACT SECTION  */
.contact-section {
    padding: 100px 0;
    background: #f8f7f3;
    overflow: hidden;
}
.contact-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}
.contact-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #b08a4a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-heading h2 {
    margin-bottom: 18px;
    color: #172b2d;
    font-size: 42px;
    font-weight: 500;
}
.contact-heading p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}
.contact-info {
    height: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}
.contact-item:first-child {
    padding-top: 0;
}
.contact-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.contact-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #b08a4a;
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.35s ease;
}
.contact-item:hover .contact-icon {
    color: #fff;
    background: #172b2d;
    transform: translateY(-4px);
}
.contact-content {
    min-width: 0;
}
.contact-content span {
    display: block;
    margin-bottom: 6px;
    color: #999;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.contact-content a {
    display: block;
    color: #172b2d;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-content a:hover {
    color: #b08a4a;
}
.contact-map {
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    background: #ddd;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
}
.contact-heading.fade-up {
    animation-delay: 0.1s;
}
.contact-info.fade-up {
    animation-delay: 0.2s;
}
.contact-map.fade-up {
    animation-delay: 0.35s;
}









/* MEDIA QUERIES */
@media (max-width: 991px) {
  .navbar {
    background: rgba(24, 23, 22, 0.95);
    padding: 18px 0;
  }
  .navbar-collapse {
    background: #181716;
    margin-top: 20px;
    padding: 25px;
  }
  .navbar-nav {
    gap: 15px;
    text-align: center;
  }
  .nav-link::after {
    display: none;
  }
  .navbar .d-flex {
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 1399px) {
    .hero-carousel {
        min-height: 700px;
    }
    .hero-content {
        max-width: 800px;
    }
    .hero-content h1 {
        font-size: clamp(48px, 6vw, 76px);
    }
    .hero-text {
        max-width: 540px;
        font-size: 15px;
    }
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 0.3em;
    }
}
@media (max-width: 1199px) {
    .hero-carousel {
        height: 90vh;
        min-height: 650px;
    }
    .hero-content {
        width: 85%;
        max-width: 760px;
    }
    .hero-content h1 {
        font-size: 64px;
        line-height: 1.08;
        margin-bottom: 25px;
    }
    .hero-subtitle {
        margin-bottom: 22px;
        font-size: 11px;
        letter-spacing: 0.28em;
    }
    .hero-text {
        max-width: 520px;
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 1.75;
    }
    .hero-content .btn {
        padding: 15px 34px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 7%;
    }
}
@media (max-width: 991px) {
    .hero-carousel {
        height: 80vh;
        min-height: 600px;
    }
    .hero-content {
        width: 88%;
        max-width: 700px;
    }
    .hero-content h1 {
        font-size: 52px;
        line-height: 1.08;
        margin-bottom: 22px;
    }
    .hero-subtitle {
        margin-bottom: 20px;
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .hero-text {
        max-width: 500px;
        margin-bottom: 30px;
        font-size: 15px;
        line-height: 1.7;
    }
    .hero-content .btn {
        padding: 14px 32px;
        font-size: 11px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}
@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 560px;
    }
    .carousel-item img {
        object-position: center center;
    }
    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(24, 23, 22, 0.35) 0%,
                rgba(24, 23, 22, 0.72) 100%
            );
    }
    .hero-content {
        width: 88%;
        max-width: 620px;
    }
    .hero-subtitle {
        margin-bottom: 18px;
        font-size: 9px;
        letter-spacing: 0.22em;
    }
    .hero-content h1 {
        font-size: 43px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    .hero-text {
        max-width: 480px;
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.7;
    }
    .hero-content .btn {
        padding: 14px 30px;
        font-size: 10px;
        letter-spacing: 0.16em;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}
@media (max-width: 576px) {
    .hero-carousel {
        height: 60vh;
        min-height: 540px;
        max-height: 720px;
    }
    .carousel-item img {
        object-position: center center;
    }
    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(24, 23, 22, 0.42) 0%,
                rgba(24, 23, 22, 0.78) 100%
            );
    }
    .hero-content {
        width: 90%;
        max-width: 420px;
    }
    .hero-subtitle {
        margin-bottom: 16px;
        font-size: 8px;
        letter-spacing: 0.2em;
    }
    .hero-content h1 {
        font-size: 35px;
        line-height: 1.1;
        margin-bottom: 18px;
    }
    .hero-text {
        max-width: 360px;
        margin-bottom: 25px;
        font-size: 13px;
        line-height: 1.65;
    }
    .hero-content .btn {
        padding: 13px 27px;
        font-size: 9px;
        letter-spacing: 0.15em;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }
}
@media (max-width: 400px) {
    .hero-carousel {
        height: 50vh;
        min-height: 500px;
    }
    .hero-content {
        width: 88%;
    }
    .hero-subtitle {
        font-size: 7px;
        letter-spacing: 0.17em;
        margin-bottom: 14px;
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 1.08;
        margin-bottom: 16px;
    }
    .hero-text {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 22px;
    }
    .hero-content .btn {
        padding: 12px 24px;
        font-size: 8px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 7%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 0.85rem;
        height: 0.85rem;
    }
}
@media (max-width: 350px) {
    .hero-carousel {
        min-height: 480px;
    }
    .hero-content h1 {
        font-size: 27px;
    }
    .hero-text {
        font-size: 11px;
    }
    .hero-content .btn {
        padding: 11px 21px;
    }
}
@media (max-width: 991px) and (orientation: landscape) {
    .hero-carousel {
        height: 100vh;
        min-height: 520px;
    }
    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        margin-bottom: 12px;
    }
    .hero-text {
        margin-bottom: 18px;
        font-size: 13px;
    }
    .hero-content .btn {
        padding: 11px 25px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item img {
        animation: none;
    }
    .hero-animate {
        transition: none !important;
        animation: none !important;
    }
}
@media (max-width: 1199px) {
  .about-gallery {
    height: 600px;
  }
  .about-section h2 {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .about-gallery {
    height: 520px;
    margin-bottom: 40px;
  }
  .about-main-image {
    width: 78%;
    height: 430px;
  }
  .about-small-image {
    width: 45%;
    height: 200px;
    border-width: 8px;
  }
  .about-detail-image {
    width: 40%;
    height: 150px;
    right: 20px;
    border-width: 8px;
  }
  .about-experience {
    left: 20px;
    bottom: 30px;
    padding: 22px 28px;
  }
  .about-experience strong {
    font-size: 34px;
  }
  .about-content {
    padding-left: 0;
  }
  .about-section h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .about-gallery {
    height: 420px;
  }
  .about-main-image {
    width: 100%;
    height: 360px;
  }
  .about-small-image {
    width: 45%;
    height: 140px;
    border-width: 6px;
    top: 20px;
  }
  .about-detail-image {
    display: none;
  }
  .about-experience {
    bottom: 15px;
    left: 15px;
    padding: 18px 22px;
  }
  .about-experience strong {
    font-size: 30px;
  }
  .about-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
    .amenities-section .section-heading {
        margin-bottom: 45px;
    }
    .amenities-section .section-heading h2 {
        font-size: 44px;
    }
    .amenities-image {
        height: 500px;
    }
    .amenity-card {
        padding: 30px 25px;
    }
}
@media (max-width: 768px) {
    .amenities-section .section-heading {
        margin-bottom: 40px;
    }
    .amenities-section .section-heading span {
        font-size: 11px;
        letter-spacing: 0.25em;
    }
    .amenities-section .section-heading h2 {
        font-size: 38px;
    }
    .amenities-section .section-heading p {
        font-size: 15px;
    }
    .amenities-image {
        height: 420px;
        border-radius: 16px;
    }
    .amenity-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .amenity-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        font-size: 21px;
    }
    .amenity-card h3 {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .amenities-section .section-heading h2 {
        font-size: 32px;
    }
    .amenities-section .section-heading p {
        font-size: 14px;
    }
    .amenities-image {
        height: 350px;
    }
    .amenity-card {
        padding: 25px 22px;
    }
    .amenity-icon {
        width: 50px;
        height: 50px;

        font-size: 20px;
    }
    .amenity-card h3 {
        font-size: 23px;
    }
}
@media (max-width: 991px) {
    .gallery-section .section-heading {
        margin-bottom: 45px;
    }
    .gallery-section .section-heading h2 {
        font-size: 44px;
    }
    .gallery-item {
        height: 430px;
    }
}
@media (max-width: 768px) {
    .gallery-section .section-heading {
        margin-bottom: 40px;
    }
    .gallery-section .section-heading h2 {
        font-size: 38px;
    }
    .gallery-section .section-heading p {
        font-size: 15px;
    }
    .gallery-item {
        height: 420px;

        border-radius: 16px;
    }
    .gallery-carousel .owl-nav {
        margin-top: 25px;
    }
    .gallery-carousel .owl-nav button {
        width: 46px;
        height: 46px;
    }
}
@media (max-width: 576px) {
    .gallery-section .section-heading h2 {
        font-size: 32px;
    }
    .gallery-section .section-heading p {
        font-size: 14px;
    }
    .gallery-item {
        height: 380px;
        border-radius: 14px;
    }
    .gallery-carousel .owl-dots {
        margin-top: 20px;
    }
}
@media (max-width: 991px) {
  .location-image {
    height: 450px;
  }
  .location-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
    .reviews-section .section-heading {
        margin-bottom: 45px;
    }
    .reviews-section .section-heading h2 {
        font-size: 44px;
    }
    .review-card {
        padding: 35px 30px;
    }
    .review-card > p {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .reviews-section .section-heading {
        margin-bottom: 40px;
    }
    .reviews-section .section-heading h2 {
        font-size: 38px;
    }
    .reviews-section .section-heading p {
        font-size: 15px;
    }
    .review-card {
        padding: 32px 27px;
        border-radius: 16px;
    }
    .review-card > p {
        font-size: 19px;
    }
    .reviews-carousel .owl-nav {
        margin-top: 25px;
    }
    .reviews-carousel .owl-nav button {
        width: 46px;
        height: 46px;
    }
}
@media (max-width: 576px) {
    .reviews-section .section-heading h2 {
        font-size: 32px;
    }
    .reviews-section .section-heading p {
        font-size: 14px;
    }
    .review-card {
        padding: 30px 24px;
    }
    .review-card > p {
        font-size: 18px;
        line-height: 1.55;
    }
    .review-stars {
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .booking-section {
        min-height: 560px;
    }
    .booking-content {
        padding: 70px 0;
    }
    .booking-content h2 {
        font-size: 48px;
    }
    .booking-content > p {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .booking-section {
        min-height: 540px;
        background-position: center;
    }
    .booking-content {
        padding: 65px 0;
    }
    .booking-content > span {
        font-size: 10px;
        letter-spacing: 0.28em;
    }
    .booking-content h2 {
        font-size: 40px;
        line-height: 1.12;
    }
    .booking-content > p {
        font-size: 15px;
        line-height: 1.7;
    }
    .booking-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 30px;
    }
    .booking-buttons .btn-book,
    .booking-buttons .btn-outline-light {
        width: min(280px, 100%);
    }
}
@media (max-width: 576px) {
    .booking-section {
        min-height: 520px;
    }
    .booking-content {
        padding: 60px 0;
    }
    .booking-content h2 {
        font-size: 34px;
    }
    .booking-content > p {
        font-size: 14px;
    }
    .booking-content::before {
        top: 20px;
        width: 55px;
    }
}

@media (max-width: 1199px) {
    .footer {
        padding-top: 65px;
    }
    .footer-column h3 {
        font-size: 23px;
    }
    .footer-logo img {
        max-width: 175px;
    }
    .footer-column > p {
        max-width: 300px;
    }
    .footer-map {
        height: 200px;
    }
}
@media (max-width: 991px) {
    .footer {
        padding-top: 60px;
    }
    .footer-column {
        height: auto;
    }
    .footer-column > p {
        max-width: 450px;
    }
    .footer-map {
        height: 240px;
    }
    .footer-bottom {
        margin-top: 35px;
        padding: 18px 0 8px;
    }
}
@media (max-width: 767px) {
    .footer {
        padding-top: 55px;
    }
    .footer-column {
        margin-bottom: 15px;
    }
    .footer-column h3 {
        margin-bottom: 22px;
        font-size: 23px;
    }
    .footer-logo {
        margin-bottom: 20px;
    }
    .footer-logo img {
        max-width: 175px;
    }
    .footer-column > p {
        max-width: 100%;
        font-size: 14px;
    }
    .footer-social {
        margin-top: 25px;
    }
    .footer-links li {
        margin-bottom: 10px;
    }
    .footer-contact {
        gap: 15px;
    }
    .footer-contact li {
        font-size: 14px;
    }
    .footer-map {
        height: 280px;
        border-radius: 12px;
    }
    .footer-bottom {
        margin-top: 35px;
        padding: 18px 0 8px;
    }
}
@media (max-width: 576px) {
    .footer {
        padding-top: 50px;
    }
    .footer-logo {
        margin-bottom: 18px;
    }
    .footer-logo img {
        max-width: 165px;
    }
    .footer-column > p {
        margin-bottom: 22px;
        font-size: 13px;
        line-height: 1.75;
    }
    .footer-column .btn-book {
        padding: 12px 25px;
        font-size: 13px;
    }
    .footer-column h3 {
        margin-bottom: 20px;
        font-size: 22px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-links li {
        margin-bottom: 9px;
    }
    .footer-contact {
        gap: 14px;
    }
    .footer-contact li {
        gap: 10px;
        font-size: 13px;
        line-height: 1.6;
    }
    .footer-contact li > i {
        margin-top: 3px;
        font-size: 15px;
    }
    .footer-social {
        gap: 9px;
        margin-top: 23px;
    }
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    .footer-map {
        height: 250px;
        border-radius: 11px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 30px;
        padding: 18px 0 8px;
        text-align: center;
    }
    .footer-bottom p {
        font-size: 11px;
    }
    .footer-bottom .designer {
        justify-content: center;
    }
    .footer-bottom .designer img {
        max-width: 90px;
        height: 22px;
    }
}
@media (max-width: 380px) {
    .footer {
        padding-top: 45px;
    }
    .footer-logo img {
        max-width: 150px;
    }
    .footer-column h3 {
        font-size: 21px;
    }
    .footer-column > p {
        font-size: 13px;
    }
    .footer-map {
        height: 220px;
    }
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .footer-bottom p {
        font-size: 10px;
    }
}
@media (max-width: 1199px) {
    .page-hero {
        min-height: 400px;
    }
    .page-hero-content {
        padding: 95px 0 65px;
    }
    .page-hero-content h1 {
        font-size: 58px;
    }
}
@media (max-width: 991px) {
    .page-hero {
        min-height: 370px;
    }
    .page-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(24, 23, 22, 0.58) 0%,
                rgba(24, 23, 22, 0.78) 100%
            );
    }
    .page-hero-content {
        padding: 90px 0 60px;
    }
    .page-hero-content h1 {
        font-size: 50px;
    }
    .page-hero-subtitle {
        font-size: 10px;
        letter-spacing: 0.3em;
    }
}
@media (max-width: 767px) {
    .page-hero {
        min-height: 330px;
    }
    .page-hero-content {
        padding: 85px 0 55px;
    }
    .page-hero-content::before {
        width: 45px;
        margin-bottom: 20px;
    }
    .page-hero-subtitle {
        margin-bottom: 15px;
        font-size: 9px;
        letter-spacing: 0.25em;
    }
    .page-hero-content h1 {
        font-size: 42px;
        line-height: 1.1;
    }
    .breadcrumb-wrapper {
        gap: 9px;
        margin-top: 20px;
        font-size: 11px;
    }
}
@media (max-width: 576px) {
    .page-hero {
        min-height: 290px;
    }
    .page-hero-content {
        padding: 80px 15px 45px;
    }
    .page-hero-content::before {
        width: 40px;
        margin-bottom: 18px;
    }
    .page-hero-subtitle {
        font-size: 8px;
        letter-spacing: 0.22em;
    }
    .page-hero-content h1 {
        font-size: 36px;
    }
    .breadcrumb-wrapper {
        margin-top: 17px;
        font-size: 10px;
        gap: 8px;
    }
    .page-hero::after {
        height: 100px;
    }
}
@media (max-width: 380px) {
    .page-hero {
        min-height: 270px;
    }
    .page-hero-content {
        padding: 75px 12px 40px;
    }
    .page-hero-content h1 {
        font-size: 32px;
    }
    .page-hero-subtitle {
        font-size: 8px;
        letter-spacing: 0.18em;
    }
    .breadcrumb-wrapper {
        font-size: 9px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .page-hero {
        transition: none;
    }
    .page-hero:hover {
        background-position: center;
    }
}
@media (max-width: 991.98px) {
  .rooms-page-section {
    padding: 55px 0;
  }
  .rooms-page-heading h1 {
    font-size: 44px;
  }
  .rooms-row {
    padding: 55px 0;
  }
  .rooms-row [class*="col-lg-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .rooms-image {
    margin-bottom: 35px;
    border-radius: 18px;
  }
  .rooms-image::after {
    border-radius: 18px;
  }
  .rooms-image .room-carousel .item img {
    height: 420px;
  }
  .rooms-detail {
    max-width: 100%;
    padding: 0;
  }
  .rooms-row .rooms-detail {
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .rooms-page-section {
    padding: 45px 0;
  }
  .rooms-page-heading {
    margin-bottom: 20px;
  }
  .rooms-page-heading h1 {
    margin: 15px 0;
    font-size: 38px;
  }
  .rooms-row {
    padding: 45px 0;
  }
  .rooms-row [class*="col-lg-"] {
    padding-left: 12px;
    padding-right: 12px;
  }
  .rooms-image {
    margin-bottom: 30px;
    border-radius: 16px;
  }
  .rooms-image::after {
    border-radius: 16px;
  }
  .rooms-image .room-carousel .item img {
    height: 320px;
  }
  .room-carousel .owl-nav {
    padding: 0 12px;
  }
  .room-carousel .owl-nav button.owl-prev,
  .room-carousel .owl-nav button.owl-next {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .room-carousel .owl-dots {
    bottom: 13px;
  }
  .rooms-detail {
    padding: 0;
  }
  .room-number {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }
  .room-category {
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .rooms-detail h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .room-description {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 25px;
  }
  .rooms-features {
    gap: 13px 18px;
    margin-bottom: 28px;
    padding-top: 20px;
  }
  .room-feature {
    font-size: 13px;
  }
  .room-feature i {
    font-size: 15px;
  }
  .page-room-button {
    width: 100%;
    justify-content: center;
    padding: 14px 25px;
  }
  .fade-left {
    transform: translateX(-35px);
  }
  .fade-right {
    transform: translateX(35px);
  }
  .fade-up {
    transform: translateY(35px);
  }
  .fade-down {
    transform: translateY(-35px);
  }
}
@media (max-width: 480px) {
  .rooms-page-heading h1 {
    font-size: 34px;
  }
  .rooms-row {
    padding: 38px 0;
  }

  .rooms-image .room-carousel .item img {
    height: 280px;
  }
  .room-carousel .owl-nav button.owl-prev,
  .room-carousel .owl-nav button.owl-next {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .rooms-detail h2 {
    font-size: 1.7rem;
  }
  .rooms-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }
  .room-feature {
    white-space: normal;
    line-height: 1.4;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-left,
  .fade-right,
  .fade-up,
  .fade-down {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .rooms-image .room-carousel .item img,
  .rooms-image:hover .room-carousel .item img,
  .page-room-button,
  .room-feature,
  .room-number {
    transition: none;
  }
  .room-carousel .owl-item.active .item img {
    animation: none;
  }
}
@media (max-width: 1199px) {
    .gallery-page-heading h2 {
        font-size: 46px;
    }
    .gallery-page-section .item {
        height: 300px;
    }
}
@media (max-width: 991px) {
    .gallery-page-heading {
        margin-bottom: 45px;
    }
    .gallery-page-heading h2 {
        font-size: 42px;
    }
    .gallery-page-heading p {
        font-size: 15px;
    }
    .gallery-page-section .item {
        height: 300px;
        border-radius: 14px;
    }
    .gallery-page-section .item::before {
        border-radius: 14px;
    }
}
@media (max-width: 767px) {
    .gallery-page-section {
        padding: 70px 0;
    }
    .gallery-page-heading {
        margin-bottom: 35px;
    }
    .gallery-page-heading span {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .gallery-page-heading h2 {
        margin: 16px 0;
        font-size: 38px;
    }
    .gallery-page-heading p {
        font-size: 14px;
        line-height: 1.7;
    }
    .gallery-page-section .row {
        margin-left: -7px;
        margin-right: -7px;
    }
    .gallery-page-section .row > [class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
    }
    .gallery-page-section .item {
        height: 260px;
        margin-top: 7px !important;
        margin-bottom: 7px !important;
        border-radius: 12px;
    }
    .gallery-page-section .item::before {
        border-radius: 12px;
    }
}
@media (max-width: 575px) {
    .gallery-page-section {
        padding: 60px 0;
    }
    .gallery-page-heading h2 {
        font-size: 32px;
    }
    .gallery-page-heading p {
        font-size: 13px;
    }
    .gallery-page-section .item {
        height: 230px;
        border-radius: 10px;
    }
    .gallery-page-section .item::before {
        border-radius: 10px;
    }
}
@media (max-width: 400px) {
    .gallery-page-heading h2 {
        font-size: 29px;
    }
    .gallery-page-section .item {
        height: 210px;
    }
}
.gallery-page-section .item a:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
    .gallery-page-section .item img,
    .gallery-page-section .item::before,
    .gallery-page-section .item a::after,
    .lb-close,
    .lb-prev,
    .lb-next {
        transition: none;
    }
    .gallery-page-section .item:hover img {
        transform: none;
        filter: none;
    }
}
@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-heading h2 {
        font-size: 36px;
    }
    .contact-map {
        min-height: 450px;
    }
    .contact-map iframe {
        min-height: 450px;
    }
}
@media (max-width: 575px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-heading {
        margin-bottom: 40px;
    }
    .contact-heading h2 {
        font-size: 30px;
    }
    .contact-heading p {
        font-size: 15px;
    }
    .contact-info {
        padding: 25px;
    }
    .contact-item {
        gap: 15px;
        padding: 20px 0;
    }
    .contact-icon {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
        font-size: 17px;
    }
    .contact-content a {
        font-size: 14px;
    }
    .contact-map,
    .contact-map iframe {
        min-height: 350px;
    }
}